OSX quantiles [Re: [Thuban-list] Some errors on version 1.0.1]
Lorenzo Moretti
lorenzo.moretti at bologna.enea.it
Thu Jan 20 10:55:43 CET 2005
Daniel Calvelo Aros wrote
>Hi
>
>The problem with quantiles under OSX comes from these handlers:
>
>[UI/classgen.py, lines 857-858]
>...
> EVT_TEXT(self, ID_QUANTILES_RANGE, self.OnRangeText)
> EVT_BUTTON(self, ID_QUANTILES_RETRIEVE, self.OnRetrieve)
>...
>
>OnRetrieve is triggered by the "Retrieve" button. It retrieves the range and
>does write it in the text field, but that does not trigger EVT_TEXT. I'd say
>it does in the other platforms since all this works.
>
>User workaround: If you *edit* the retrieved range (e.g. by deleting and
>retyping one digit), OnRangeText is called and everything's fine.
>
>Code workaround: I'd suggest force-calling OnRangeText within OnRetrieve,
>(insert 'self.OnRangeText(0)' in line 906 before the 'finally'; what do you
>think? I tried and it works, but is ugly. The real problem is inconsistency
>between wx platforms; should this be submitted to the wx people?
>
>Daniel.
Hi Daniel
Your tip works... GOOD
The bug is resolved
UI/classgen.py 904-907
try:
min, max = table.ValueRange(self.fieldName)
self.text_range.SetValue("[" + str(min) + ";" + str(max) + "]")
+ self.OnRangeText(0)
finally:
Why you say "is ugly"?
Is this workaround good for CVS only for OS X with IF platform?
Thanx
--
________________________________________________________________________
|| Lorenzo Moretti e-mail: lorenzo.moretti at bologna.enea.it
||/|/| ENEA prot/idr Web: http://wwwamb.bologna.enea.it/
|| | via Don Fiammelli, 2 FTP: ftp://ftpamb.bologna.enea.it/ (ris.)
~~~~~~ 40128 BOLOGNA - ITALY Ph: +39-0516098086 Fax: +39-0516098131
________________________________________________________________________
More information about the Thuban-list
mailing list
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)