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