27 |
27 |
28 def getData(self): |
28 def getData(self): |
29 """ |
29 """ |
30 Public method to get the selected options. |
30 Public method to get the selected options. |
31 |
31 |
32 @return tuple of three flags indicating ascending order, alphanumeric sort |
32 @return tuple of three flags indicating ascending order, alphanumeric |
33 and case sensitivity (tuple of three boolean) |
33 sort and case sensitivity (tuple of three boolean) |
34 """ |
34 """ |
35 return ( |
35 return ( |
36 self.ascendingButton.isChecked(), |
36 self.ascendingButton.isChecked(), |
37 self.alnumButton.isChecked(), |
37 self.alnumButton.isChecked(), |
38 self.respectCaseButton.isChecked() |
38 self.respectCaseButton.isChecked() |