33 """ |
33 """ |
34 Public method to get the data from the dialog. |
34 Public method to get the data from the dialog. |
35 |
35 |
36 @return flags indicating which data to clear |
36 @return flags indicating which data to clear |
37 (recent files, recent projects, recent multi projects, |
37 (recent files, recent projects, recent multi projects, |
38 debug histories, shell histories, unittest histories, |
38 debug histories, shell histories, test histories, |
39 VCS histories, private data of plugins) |
39 VCS histories, private data of plugins) |
40 @rtype tuple of bool |
40 @rtype tuple of bool |
41 """ |
41 """ |
42 return ( |
42 return ( |
43 self.filesCheckBox.isChecked(), |
43 self.filesCheckBox.isChecked(), |
44 self.projectsCheckBox.isChecked(), |
44 self.projectsCheckBox.isChecked(), |
45 self.multiProjectsCheckBox.isChecked(), |
45 self.multiProjectsCheckBox.isChecked(), |
46 self.debugCheckBox.isChecked(), |
46 self.debugCheckBox.isChecked(), |
47 self.shellCheckBox.isChecked(), |
47 self.shellCheckBox.isChecked(), |
48 self.unittestCheckBox.isChecked(), |
48 self.testCheckBox.isChecked(), |
49 self.vcsCheckBox.isChecked(), |
49 self.vcsCheckBox.isChecked(), |
50 self.pluginsCheckBox.isChecked(), |
50 self.pluginsCheckBox.isChecked(), |
51 ) |
51 ) |