61 def getVisibilities(self): |
61 def getVisibilities(self): |
62 """ |
62 """ |
63 Public method to retrieve the visibilities configuration. |
63 Public method to retrieve the visibilities configuration. |
64 |
64 |
65 @return tuple of two lists giving the visibilities of the |
65 @return tuple of two lists giving the visibilities of the |
66 various parts ( two lists of boolean) |
66 various parts (two lists of boolean) |
67 """ |
67 """ |
68 if self.__layout in ["Toolboxes", "Sidebars"]: |
68 if self.__layout in ["Toolboxes", "Sidebars"]: |
69 return ( |
69 return ( |
70 # edit profile |
70 # edit profile |
71 [ |
71 [ |
78 self.ui.dpltCheckBox.isChecked(), |
78 self.ui.dpltCheckBox.isChecked(), |
79 self.ui.dphtCheckBox.isChecked(), |
79 self.ui.dphtCheckBox.isChecked(), |
80 self.ui.dprtCheckBox.isChecked(), |
80 self.ui.dprtCheckBox.isChecked(), |
81 ] |
81 ] |
82 ) |
82 ) |
|
83 |
|
84 return ( |
|
85 [True, True, True], # edit profile |
|
86 [True, True, True], # debug profile |
|
87 ) |