Preferences/ConfigurationPages/GraphicsPage.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3010
befeff46ec0f
child 3145
a9de05d4a22f
equal deleted inserted replaced
3056:9986ec0e559a 3057:10516539f238
42 @pyqtSlot() 42 @pyqtSlot()
43 def on_graphicsFontButton_clicked(self): 43 def on_graphicsFontButton_clicked(self):
44 """ 44 """
45 Private method used to select the font for the graphics items. 45 Private method used to select the font for the graphics items.
46 """ 46 """
47 self.graphicsFont = self.selectFont(self.graphicsFontSample, self.graphicsFont) 47 self.graphicsFont = self.selectFont(self.graphicsFontSample,
48 self.graphicsFont)
48 49
49 def polishPage(self): 50 def polishPage(self):
50 """ 51 """
51 Public slot to perform some polishing actions. 52 Public slot to perform some polishing actions.
52 """ 53 """
56 def create(dlg): 57 def create(dlg):
57 """ 58 """
58 Module function to create the configuration page. 59 Module function to create the configuration page.
59 60
60 @param dlg reference to the configuration dialog 61 @param dlg reference to the configuration dialog
62 @return reference to the instantiated page (ConfigurationPageBase)
61 """ 63 """
62 page = GraphicsPage() 64 page = GraphicsPage()
63 return page 65 return page

eric ide

mercurial