Ed Leafe wrote:
It's generated from the docstrings in the framework files. Looking through the files, though, it seems odd that while Top, Left, Width and Height are defined in ui.uiwx.dPemMixin, Bottom and Right are defined in ui.dPemMixinBase. I've improved the docstrings there, but I'm wondering why they are kept separately. Paul?
The split between dPemMixin and dPemMixinBase hasn't been adequately maintained. The purpose of the split was to abstract things that weren't wx-specific so they could be used as-is with other toolkits, eg Tkinter. Because setting Left calls wx.SetPosition(), it is in ui/wx/dPemMixin.py. Because Right simply uses self.Left+self.Width (no wx calls), it is in ui/dPemMixinBase.py.
-- Paul McNett http://paulmcnett.com http://dabodev.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
