MCPcopy Create free account
hub / github.com/PlayOnLinux/POL-POM-4 / _createAppNavigation

Method _createAppNavigation

python/install/InstallWindow.py:175–190  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

173 filterSizer.AddSpacer(10)
174
175 def _createAppNavigation(self):
176 self.appNavigationPanel = wx.Panel(self.installWindowCategoryContentPanel, -1)
177 self.installWindowCategoryContentSizer.Add(self.appNavigationPanel, 10, wx.EXPAND)
178 self.appNavigationSizer = wx.BoxSizer(wx.HORIZONTAL)
179 #
180 self.appNavigationPanel.SetSizer(self.appNavigationSizer)
181
182 self.imagesapps = wx.ImageList(22, 22)
183 self.appsList = wx.TreeCtrl(self.appNavigationPanel, 106,
184 style=wx.TR_HIDE_ROOT | wx.TR_FULL_ROW_HIGHLIGHT | Variables.widget_borders)
185 self.appsList.SetImageList(self.imagesapps)
186 self.appsList.SetSpacing(0)
187
188 self.appNavigationSizer.AddSpacer(10)
189 self.appNavigationSizer.Add(self.appsList, 4, wx.EXPAND, 5)
190 self.appNavigationSizer.AddSpacer(10)
191
192 def _createAppDescription(self):
193 appDescriptionPanel = wx.Panel(self.appNavigationPanel, -1)

Callers 1

__init__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected