Paul, Are you guys adding support for Tkinter?
Malcolm ----- Original message ----- From: "Paul McNett" <[email protected]> To: [email protected] Date: Mon, 8 Aug 2011 11:51:26 -0700 (PDT) Subject: [dabo-dev] dabo Commit 6758 dabo Commit Revision 6758 Date: 2011-08-08 11:51:25 -0700 (Mon, 08 Aug 2011) Author: Paul Trac: http://trac.dabodev.com/changeset/6758 Changed: U trunk/dabo/ui/uitk/__init__.py U trunk/dabo/ui/uitk/test.py U trunk/dabo/ui/uitk/uiApp.py Log: Got at least the basic funcionality of the TK working again. Diff: Modified: trunk/dabo/ui/uitk/__init__.py =================================================================== --- trunk/dabo/ui/uitk/__init__.py 2011-08-08 18:40:41 UTC (rev 6757) +++ trunk/dabo/ui/uitk/__init__.py 2011-08-08 18:51:25 UTC (rev 6758) @@ -107,7 +107,7 @@ return ed -def getUiApp(app, callback=None): +def getUiApp(app, uiAppClass=None, callback=None, forceNew=None): """This returns an instance of uiApp. If one is already running, that instance is returned. Otherwise, a new instance is created. """ Modified: trunk/dabo/ui/uitk/test.py =================================================================== --- trunk/dabo/ui/uitk/test.py 2011-08-08 18:40:41 UTC (rev 6757) +++ trunk/dabo/ui/uitk/test.py 2011-08-08 18:51:25 UTC (rev 6758) @@ -35,6 +35,7 @@ """ self.app.setup() frame = self.app.MainForm + frame.Size = (340, 120) frame.Caption = "Test of all the dControls" frame.debug = True frame.LogEvents = ["All"] Modified: trunk/dabo/ui/uitk/uiApp.py =================================================================== --- trunk/dabo/ui/uitk/uiApp.py 2011-08-08 18:40:41 UTC (rev 6757) +++ trunk/dabo/ui/uitk/uiApp.py 2011-08-08 18:51:25 UTC (rev 6758) @@ -24,7 +24,7 @@ if self.dApp.MainFormClass is not None: self.dApp.MainForm = self.dApp.MainFormClass() - def start(self, dApp): + def start(self): self.raiseEvent(dEvents.Activate) Tkinter.mainloop() [excessive quoting removed by server] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[email protected]
