commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

r6667 - in trunk/gnue-forms: . src src/GFObjects


From: johannes
Subject: r6667 - in trunk/gnue-forms: . src src/GFObjects
Date: Tue, 9 Nov 2004 13:24:05 -0600 (CST)

Author: johannes
Date: 2004-11-09 13:24:04 -0600 (Tue, 09 Nov 2004)
New Revision: 6667

Modified:
   trunk/gnue-forms/BUGS
   trunk/gnue-forms/src/GFForm.py
   trunk/gnue-forms/src/GFInstance.py
   trunk/gnue-forms/src/GFObjects/GFButton.py
Log:
abort() messages in buttons are now displayed


Modified: trunk/gnue-forms/BUGS
===================================================================
--- trunk/gnue-forms/BUGS       2004-11-09 19:00:46 UTC (rev 6666)
+++ trunk/gnue-forms/BUGS       2004-11-09 19:24:04 UTC (rev 6667)
@@ -8,7 +8,7 @@
   get out of order, the number of lines is still as if no deletion occured.
 
 
-select text with mouse and cut doesn't work
+select text with mouse and cut doesn't work with wx driver
 
 tab key presses in dropdowns on Win32 are not correct with wx driver
 
@@ -18,9 +18,6 @@
 
 it is not possible to dynamically disable a button
 
-messages given in abort() in a trigger are not output anywhere (true at least
-for ON-ACTION triggers of buttons)
-
 Dropdown problems:
 * when a block is connected to the same datasource as the dropdown, the current
   record in the block doesn't follow the selection in the dropdown; this makes

Modified: trunk/gnue-forms/src/GFForm.py
===================================================================
--- trunk/gnue-forms/src/GFForm.py      2004-11-09 19:00:46 UTC (rev 6666)
+++ trunk/gnue-forms/src/GFForm.py      2004-11-09 19:24:04 UTC (rev 6667)
@@ -1139,4 +1139,4 @@
     self._parameters[param]=value
 
   def triggerActivateTrigger(self,name):
-    self.processTrigger(name)
+    self.processTrigger (name, False)

Modified: trunk/gnue-forms/src/GFInstance.py
===================================================================
--- trunk/gnue-forms/src/GFInstance.py  2004-11-09 19:00:46 UTC (rev 6666)
+++ trunk/gnue-forms/src/GFInstance.py  2004-11-09 19:24:04 UTC (rev 6667)
@@ -1296,4 +1296,4 @@
 
   def fireButton (self, event):
 
-    event.data.processTrigger ('On-Action')
+    event.data.processTrigger ('On-Action', False)

Modified: trunk/gnue-forms/src/GFObjects/GFButton.py
===================================================================
--- trunk/gnue-forms/src/GFObjects/GFButton.py  2004-11-09 19:00:46 UTC (rev 
6666)
+++ trunk/gnue-forms/src/GFObjects/GFButton.py  2004-11-09 19:24:04 UTC (rev 
6667)
@@ -66,7 +66,7 @@
 
   # Helper method for user events: fire button
   def __fire(self):
-    self.processTrigger('On-Action')
+    self.processTrigger('On-Action', False)
 
 
   # Event handlers





reply via email to

[Prev in Thread] Current Thread [Next in Thread]