[gnue] r10240 - in trunk/gnue-forms: . src/uidrivers/wx/widgets
[email protected] Sun, 14 Nov 2010 15:04:11 -0600 (CST)
| Newsgroups | gmane.comp.cms.gnue.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: reinhard Date: 2010-11-14 15:04:10 -0600 (Sun, 14 Nov 2010) New Revision: 10240 Modified: trunk/gnue-forms/ trunk/gnue-forms/src/uidrivers/wx/widgets/_base.py trunk/gnue-forms/src/uidrivers/wx/widgets/entry.py Log: Workaround for a bug in wxMSW. Property changes on: trunk/gnue-forms ___________________________________________________________________ Name: bzr:revision-info - timestamp: 2010-11-12 16:59:54.292999983 +0100 committer: Reinhard M=C3=BCller <[email protected]> properties:=20 branch-nick: forms + timestamp: 2010-11-14 22:03:45.615000010 +0100 committer: Reinhard M=C3=BCller <[email protected]> properties:=20 branch-nick: forms Name: bzr:file-ids - src/GFParser.py 106@3a364389-8fce-0310-8f11-cc363fde16c7:trunk%2Fgnu= e-forms:src%2FGFParser.py src/uidrivers/wx/widgets/button.py 10053@3a364389-8fce-0310-8f11-cc363fde= 16c7:trunk%2Fgnue-forms:src%2Fuidrivers%2Fwx%2Fwidgets%2Fbutton.py + src/uidrivers/wx/widgets/_base.py 10053@3a364389-8fce-0310-8f11-cc36= 3fde16c7:trunk%2Fgnue-forms:src%2Fuidrivers%2Fwx%2Fwidgets%2F_base.py src/uidrivers/wx/widgets/entry.py 10053@3a364389-8fce-0310-8f11-cc363fde1= 6c7:trunk%2Fgnue-forms:src%2Fuidrivers%2Fwx%2Fwidgets%2Fentry.py Name: bzr:revision-id:v4 - 3116 [email protected] 3117 [email protected] 3118 [email protected] 3119 [email protected] 3120 [email protected] 3121 [email protected] 3122 [email protected] 3123 [email protected] 3124 [email protected] 3125 [email protected] 3126 [email protected] 3127 [email protected] 3128 [email protected] 3129 [email protected] 3130 [email protected] 3131 [email protected] 3132 [email protected] 3133 [email protected] 3134 [email protected] 3135 [email protected] 3136 [email protected] 3137 [email protected] 3138 [email protected] 3139 [email protected] 3140 [email protected] 3141 [email protected] 3142 [email protected] 3143 [email protected] 3144 [email protected] 3145 [email protected] 3146 [email protected] 3147 [email protected] 3148 [email protected] 3149 [email protected] 3150 [email protected] 3151 [email protected] + 3116 [email protected] 3117 [email protected] 3118 [email protected] 3119 [email protected] 3120 [email protected] 3121 [email protected] 3122 [email protected] 3123 [email protected] 3124 [email protected] 3125 [email protected] 3126 [email protected] 3127 [email protected] 3128 [email protected] 3129 [email protected] 3130 [email protected] 3131 [email protected] 3132 [email protected] 3133 [email protected] 3134 [email protected] 3135 [email protected] 3136 [email protected] 3137 [email protected] 3138 [email protected] 3139 [email protected] 3140 [email protected] 3141 [email protected] 3142 [email protected] 3143 [email protected] 3144 [email protected] 3145 [email protected] 3146 [email protected] 3147 [email protected] 3148 [email protected] 3149 [email protected] 3150 [email protected] 3151 [email protected] 3152 [email protected] Name: bzr:text-parents - src/GFParser.py [email protected]= 9c1h630f src/uidrivers/wx/widgets/button.py [email protected]= 11256-o7pi879h2x1ceri2 + src/uidrivers/wx/widgets/_base.py [email protected]= 020152139-rlllh9m2qn45atcz src/uidrivers/wx/widgets/entry.py [email protected]= 4024-57tv8mf0wbiycuw1 Modified: trunk/gnue-forms/src/uidrivers/wx/widgets/_base.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/gnue-forms/src/uidrivers/wx/widgets/_base.py 2010-11-14 18:36:3= 4 UTC (rev 10239) +++ trunk/gnue-forms/src/uidrivers/wx/widgets/_base.py 2010-11-14 21:04:1= 0 UTC (rev 10240) @@ -191,33 +191,6 @@ =20 =20 # ------------------------------------------------------------------= ------- - # Update the choices of a ComboBox or a Listbox - # ------------------------------------------------------------------= ------- - - def _ui_set_choices_(self, index, choices): - """ - Update the choices of a combo- or listbox widget with the allowe= d - values from the associated GFEntry. The values are alphabetical= ly - sorted. - - @param index: index of the widget to set the values for - @param choices: alphabetically sorted list of values - """ - - widget =3D self.widgets[index] - - if not (isinstance(widget, wx.ComboBox) \ - or isinstance(widget, wx.ListBox)): - return - widget.Freeze() - try: - widget.Clear() - widget.AppendItems(choices) - finally: - widget.Thaw() - - - # ------------------------------------------------------------------= ------- # Widget creation # ------------------------------------------------------------------= ------- =20 Modified: trunk/gnue-forms/src/uidrivers/wx/widgets/entry.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/gnue-forms/src/uidrivers/wx/widgets/entry.py 2010-11-14 18:36:3= 4 UTC (rev 10239) +++ trunk/gnue-forms/src/uidrivers/wx/widgets/entry.py 2010-11-14 21:04:1= 0 UTC (rev 10240) @@ -520,17 +520,14 @@ widget.SetLabel(value) =20 elif isinstance(widget, wx.ListBox): - # TODO: We must allow setting the value to None, too, to= be - # able to move the cursor to the empty position at the s= tart. - # Must be tested under windows and Mac OS X. - # - # On wxMSW SetStringSelection() does not work properly w= ith - # empty values. - index =3D widget.FindString(value) - if index =3D=3D -1: + # On wxMSW neither SetStringSelection() nor FindString()= works + # with the empty string (the first item in the listbox),= so we + # have to find out the index ourselves. + try: + index =3D widget.GetStrings().index(value) + widget.SetSelection(index) + except ValueError: widget.SetSelection(wx.NOT_FOUND) - else: - widget.SetSelection(index) =20 elif isinstance(widget, wx.CheckBox): if value is None: @@ -660,6 +657,25 @@ =20 =20 # ------------------------------------------------------------------= ------- + # Update the choices of a ComboBox or a Listbox + # ------------------------------------------------------------------= ------- + + def _ui_set_choices_(self, index, choices): + + widget =3D self.widgets[index] + + if not (isinstance(widget, wx.ComboBox) \ + or isinstance(widget, wx.ListBox)): + return + widget.Freeze() + try: + widget.Clear() + widget.AppendItems(choices) + finally: + widget.Thaw() + + + # ------------------------------------------------------------------= ------- # Mark the current row for label style entries # ------------------------------------------------------------------= ------- =20