I’m trying to subclass DrawableButton, to override paintButton. I’d like to be able to access the drawable images held by the parent class, but out of 8 images, there are only 4 accessors.
Access to the ButtonStyle and edgeIndent members would also be great. Is there a way to get these values, or is DrawableButton not designed to be subclassed?
I know that there are some design philosophies at work here, but I wish
member variables were protected, not private, so subclasses could get them directly, or that there were accessor functions for all private member variables as a rule.