On 3/23/10 8:05 AM, John wrote: > It's easy to get confused - evidence my earlier mistake with Hide().
We made a design decision early on to mix-in Dabo's interface with the underlying wxPython object. So it does get confusing because Dabo+wxPython equals a ton of names in the namespace. By keeping the naming conventions separate from wxPython's, we avoid overwriting wxPython's interface allowing the developer to call the wxPython-level methods. This is why there are sometimes two spellings of things: Hide() and hide(), for example. The former capitalized version is the wxPython function, while the latter is the Dabo function. Calling hide() will allow Dabo-level framework code to run in addition to the wxPython-level Hide() code. Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
