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


Python base.Container類代碼示例

本文整理匯總了Python中miro.plat.frontends.widgets.base.Container的典型用法代碼示例。如果您正苦於以下問題:Python Container類的具體用法?Python Container怎麽用?Python Container使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: __init__

    def __init__(self):
        Container.__init__(self)

        self.view = RBSplitView.alloc().initWithFrame_(NSRect((0,0), (800,600)))
        self.view.setVertical_(YES)

        self.delegate = SplitterDelegate.alloc().initWithSplitter_(self)
        self.view.setDelegate_(self.delegate)

        self.left = None
        self.left_view = MiroSplitSubview.alloc().init()
        self.left_view.setIdentifier_('left')
        self.view.addSubview_atPosition_(self.left_view, 0)

        self.right = None
        self.right_view = MiroSplitSubview.alloc().init()
        self.right_view.setIdentifier_('right')
        self.view.addSubview_atPosition_(self.right_view, 1)
        
        divider = NSImage.alloc().initWithSize_(NSSize(1.0, 1.0))
        divider.lockFocus()
        NSColor.clearColor().set()
        NSRectFill(NSRect((0.0, 0.0), (1.0, 1.0)))
        divider.unlockFocus()
        divider.setFlipped_(YES)
        self.view.setDivider_(divider)
開發者ID:jcooley,項目名稱:miro,代碼行數:26,代碼來源:layout.py

示例2: disable

 def disable(self, row=None, column=None):
     Container.disable(self)
     if row != None and column != None:
         if self._cells[column, row]: 
             self._cells[column, row].disable()
     elif row != None:
         for mem in self._cells.row(row):
             if mem: mem.disable()
     elif column != None:
         for mem in self._cells.column(column):
             if mem: mem.disable()
     else:
         for mem in self._cells:
             if mem: mem.disable()
開發者ID:jcooley,項目名稱:miro,代碼行數:14,代碼來源:layout.py

示例3: enable

 def enable(self):
     Container.enable(self)
     for mem in self.children:
         mem.enable()
開發者ID:jcooley,項目名稱:miro,代碼行數:4,代碼來源:layout.py


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