35 """ |
35 """ |
36 Public method to get the data from the dialog. |
36 Public method to get the data from the dialog. |
37 |
37 |
38 @return tuple with flags indicating which data to clear |
38 @return tuple with flags indicating which data to clear |
39 (browsing history, search history, favicons, disk cache, cookies, |
39 (browsing history, search history, favicons, disk cache, cookies, |
40 passwords, web databases, downloads, flash, zoom values, SSL |
40 passwords, web databases, downloads, zoom values, SSL |
41 certificate error exceptions) and the selected history period in |
41 certificate error exceptions) and the selected history period in |
42 milliseconds (tuple of booleans and integer) |
42 milliseconds (tuple of booleans and integer) |
43 """ |
43 """ |
44 index = self.historyCombo.currentIndex() |
44 index = self.historyCombo.currentIndex() |
45 if index == 0: |
45 if index == 0: |
64 self.cacheCheckBox.isChecked(), |
64 self.cacheCheckBox.isChecked(), |
65 self.cookiesCheckBox.isChecked(), |
65 self.cookiesCheckBox.isChecked(), |
66 self.passwordsCheckBox.isChecked(), |
66 self.passwordsCheckBox.isChecked(), |
67 self.databasesCheckBox.isChecked(), |
67 self.databasesCheckBox.isChecked(), |
68 self.downloadsCheckBox.isChecked(), |
68 self.downloadsCheckBox.isChecked(), |
69 self.flashCookiesCheckBox.isChecked(), |
|
70 self.zoomCheckBox.isChecked(), |
69 self.zoomCheckBox.isChecked(), |
71 self.sslExceptionsCheckBox.isChecked(), |
70 self.sslExceptionsCheckBox.isChecked(), |
72 historyPeriod) |
71 historyPeriod) |