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


Python QTabBar.__init__方法代碼示例

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


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

示例1: __init__

# 需要導入模塊: from PyQt4.QtGui import QTabBar [as 別名]
# 或者: from PyQt4.QtGui.QTabBar import __init__ [as 別名]
 def __init__(self, parent, ancestor):
     QTabBar.__init__(self, parent)
     self.ancestor = ancestor
         
     # Dragging tabs
     self.__drag_start_pos = QPoint()
     self.setAcceptDrops(True)
開發者ID:Brainsciences,項目名稱:luminoso,代碼行數:9,代碼來源:tabs.py

示例2: __init__

# 需要導入模塊: from PyQt4.QtGui import QTabBar [as 別名]
# 或者: from PyQt4.QtGui.QTabBar import __init__ [as 別名]
        def __init__( self, parent = None ):
            QTabBar.__init__( self, parent )

            self.lineEdit = self.FramelessLineEdit( self )
            self.currentTab = -1

            self.connect( self.lineEdit, SIGNAL( 'returnPressed()' ), self.slotReturnPressed )
開發者ID:Siddhant,項目名稱:revkit-copy,代碼行數:9,代碼來源:RenamableTabWidget.py

示例3: __init__

# 需要導入模塊: from PyQt4.QtGui import QTabBar [as 別名]
# 或者: from PyQt4.QtGui.QTabBar import __init__ [as 別名]
 def __init__(self, parent = None):
     """
     Constructor
     
     @param parent reference to the parent widget (QWidget)
     """
     QTabBar.__init__(self, parent)
     self._tabWidget = parent
開發者ID:usc-bbdl,項目名稱:R01_HSC_cadaver_system,代碼行數:10,代碼來源:E4TabWidget.py

示例4: __init__

# 需要導入模塊: from PyQt4.QtGui import QTabBar [as 別名]
# 或者: from PyQt4.QtGui.QTabBar import __init__ [as 別名]
 def __init__(self, parent):
     " init class custom tab bar "
     QTabBar.__init__(self, parent)
     self._editor = QLineEdit(self)
     self._editor.setToolTip(" Type a Tab Name ")
     self._editor.setWindowFlags(Qt.Popup)
     self._editor.setFocusProxy(self)
     self._editor.editingFinished.connect(self.handleEditingFinished)
     self._editor.installEventFilter(self)
開發者ID:juancarlospaco,項目名稱:pyqt_app_template,代碼行數:11,代碼來源:pyqt_app_template.py

示例5: __init__

# 需要導入模塊: from PyQt4.QtGui import QTabBar [as 別名]
# 或者: from PyQt4.QtGui.QTabBar import __init__ [as 別名]
    def __init__(self, parent=None, *args, **kwargs):
        """
        Reset tab text orientation on initialization

        :param width: Remove default width parameter in kwargs
        :param height: Remove default height parameter in kwargs
        """
        self.tabSize = QSize(kwargs.pop('width', 100), kwargs.pop('height', 25))
        QTabBar.__init__(self, parent, *args, **kwargs)
開發者ID:crossroadchurch,項目名稱:paul,代碼行數:11,代碼來源:sourceselectform.py

示例6: __init__

# 需要導入模塊: from PyQt4.QtGui import QTabBar [as 別名]
# 或者: from PyQt4.QtGui.QTabBar import __init__ [as 別名]
 def __init__(self,parent):
     QTabBar.__init__(self,parent)
     self.setAcceptDrops(True)
     self.setMouseTracking(True)
開發者ID:teddBroiler,項目名稱:Sabel,代碼行數:6,代碼來源:tab.py

示例7: __init__

# 需要導入模塊: from PyQt4.QtGui import QTabBar [as 別名]
# 或者: from PyQt4.QtGui.QTabBar import __init__ [as 別名]
	def __init__(self, parent=None):
		QTabBar.__init__(self,parent)
開發者ID:LJavierG,項目名稱:thesis-cyphers-block-construction,代碼行數:4,代碼來源:central_widget.py

示例8: __init__

# 需要導入模塊: from PyQt4.QtGui import QTabBar [as 別名]
# 或者: from PyQt4.QtGui.QTabBar import __init__ [as 別名]
 def __init__(self):
     QTabBar.__init__(self)
     self.tabTimer = QTimer()
     self.connect(self.tabTimer, SIGNAL('timeout()'), self.__selectTab)
     self.setAcceptDrops(True)
開發者ID:renemilk,項目名稱:Pythagora,代碼行數:7,代碼來源:MainWindow.py

示例9: __init__

# 需要導入模塊: from PyQt4.QtGui import QTabBar [as 別名]
# 或者: from PyQt4.QtGui.QTabBar import __init__ [as 別名]
 def __init__(self,parent):
     QTabBar.__init__(self,parent)
     self.setAcceptDrops(True)
開發者ID:dreadpiratepj,項目名稱:Sabel,代碼行數:5,代碼來源:tab.py


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