コード例 #1
0
 def PrepareHorizontal_(self):
     self.handleCont = uicls.Container(name='handleCont',
                                       parent=self,
                                       align=uiconst.TOALL)
     self.scrollHandle = uicls._ScrollHandle(name='scrollhandle',
                                             parent=self.handleCont,
                                             align=uiconst.TOLEFT_PROP,
                                             state=uiconst.UI_NORMAL,
                                             width=self.handleSize)
コード例 #2
0
ファイル: scrollContainer.py プロジェクト: Reve/eve
 def PrepareHorizontal_(self):
     self.handleCont = uicls.Container(name="handleCont", parent=self, align=uiconst.TOALL)
     self.scrollHandle = uicls._ScrollHandle(
         name="scrollhandle",
         parent=self.handleCont,
         align=uiconst.TOLEFT_PROP,
         state=uiconst.UI_NORMAL,
         width=self.handleSize,
     )
コード例 #3
0
 def PrepareVertical_(self):
     self.handleCont = uicls.Container(name='handleCont',
                                       parent=self,
                                       align=uiconst.TOALL)
     self.scrollHandle = uicls._ScrollHandle(name='scrollhandle',
                                             parent=self.handleCont,
                                             align=uiconst.TOTOP_PROP,
                                             state=uiconst.UI_NORMAL,
                                             height=self.handleSize)
コード例 #4
0
ファイル: scrollContainer.py プロジェクト: Reve/eve
 def PrepareVertical_(self):
     self.handleCont = uicls.Container(name="handleCont", parent=self, align=uiconst.TOALL)
     self.scrollHandle = uicls._ScrollHandle(
         name="scrollhandle",
         parent=self.handleCont,
         align=uiconst.TOTOP_PROP,
         state=uiconst.UI_NORMAL,
         height=self.handleSize,
     )