當前位置: 首頁>>代碼示例>>Python>>正文


Python JScrollPane.setRowHeaderView方法代碼示例

本文整理匯總了Python中javax.swing.JScrollPane.setRowHeaderView方法的典型用法代碼示例。如果您正苦於以下問題:Python JScrollPane.setRowHeaderView方法的具體用法?Python JScrollPane.setRowHeaderView怎麽用?Python JScrollPane.setRowHeaderView使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.swing.JScrollPane的用法示例。


在下文中一共展示了JScrollPane.setRowHeaderView方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: setup_edit_area

# 需要導入模塊: from javax.swing import JScrollPane [as 別名]
# 或者: from javax.swing.JScrollPane import setRowHeaderView [as 別名]
 def setup_edit_area(self, split_orientation=None):
     '''
     Check if the ATF text area is being displayed in a split editor.
     If so, resets to normal JScrollPane. If not, splits the screen.
     '''
     if isinstance(self.container, JSplitPane):
         # If Nammu is already displaying a split pane, reset to original
         # setup
         self.container = JScrollPane(self.edit_area)
         self.container.setRowHeaderView(self.line_numbers_area)
         self.container.setVisible(True)
         self.add(self.container, BorderLayout.CENTER)
     else:
         # If there is not a split pane, create both panels and setup view
         main_editor = JScrollPane(self.edit_area)
         main_editor.setRowHeaderView(self.line_numbers_area)
         secondary_editor = JScrollPane(self.secondary_area)
         secondary_editor.setRowHeaderView(self.secondary_line_numbers)
         self.container = JSplitPane(split_orientation,
                                     main_editor,
                                     secondary_editor)
         self.container.setDividerSize(5)
         self.container.setVisible(True)
         self.container.setDividerLocation(0.5)
         self.container.setResizeWeight(0.5)
         self.add(self.container, BorderLayout.CENTER)
開發者ID:oracc,項目名稱:nammu,代碼行數:28,代碼來源:AtfAreaView.py


注:本文中的javax.swing.JScrollPane.setRowHeaderView方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。