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