31 |
31 |
32 def polishPage(self): |
32 def polishPage(self): |
33 """ |
33 """ |
34 Public slot to perform some polishing actions. |
34 Public slot to perform some polishing actions. |
35 """ |
35 """ |
36 return |
36 pass |
37 |
37 |
38 def saveState(self): |
38 def saveState(self): |
39 """ |
39 """ |
40 Public method to save the current state of the widget. |
40 Public method to save the current state of the widget. |
41 """ |
41 """ |
42 return |
42 pass |
43 |
43 |
44 def setState(self, state): |
44 def setState(self, state): |
45 """ |
45 """ |
46 Public method to set the state of the widget. |
46 Public method to set the state of the widget. |
47 |
47 |
48 @param state state data generated by saveState |
48 @param state state data generated by saveState |
49 """ |
49 """ |
50 return |
50 pass |
51 |
51 |
52 def initColour(self, colourKey, button, prefMethod, byName=False, hasAlpha=False): |
52 def initColour(self, colourKey, button, prefMethod, byName=False, hasAlpha=False): |
53 """ |
53 """ |
54 Public method to initialize a colour selection button. |
54 Public method to initialize a colour selection button. |
55 |
55 |