示例#1
0
 def createWidgets(self):
     self.staticBox = wx.StaticBox(
         self, wx.ID_ANY,
         _extstr(u"tagsitesprefpage.Tag_Sites"))  #$NON-NLS-1$
     self.contentProvider = ZTagspaceListContentProvider()
     self.tagSites = ZCheckBoxListViewWithButtons(self.contentProvider,
                                                  self, wx.ID_ANY)
示例#2
0
    def _createWidgets(self):
        self.overrideCB = wx.CheckBox(self, wx.ID_ANY,
                                      self._getOverrideTagSitesLabel())
        self.panel = ZTransparentPanel(self, wx.ID_ANY)

        self.staticBox = wx.StaticBox(
            self.panel, wx.ID_ANY,
            _extstr(u"tagsubpage.TagSites"))  #$NON-NLS-1$
        self.contentProvider = ZTagspaceListContentProvider()
        self.tagSites = ZCheckBoxListViewWithButtons(self.contentProvider,
                                                     self.panel, wx.ID_ANY)
示例#3
0
 def _createTagsPage(self):
     self.tagspacePanel = ZSmartTransparentPanel(self.notebook, wx.ID_ANY)
     self.tagspaceListProvider = ZTagspaceListContentProvider()
     self.tagspaceListCtrl = ZTagspaceListView(self.tagspacePanel, self.tagspaceListProvider)
     return self.tagspacePanel