Is it possible to set the label for PyGTK’s checkbutton on the left side instead of the default right side as the example below ?
Apple: [x]
Orange: [ ]
Pear: [x]
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. You could do it by creating a new class that inherits from
gtk.CheckButton, but then the checkboxes wouldn’t be lined up like in your example.I would suggest making your check buttons with blank labels, and then adding separate
gtk.Labels to label them. Line them up in agtk.Tableorgtk.Grid.