I was thinking (it is March 1, 2002 for those of you that want to write this date down) about convertion asd generic classes. You would need something like: ...
226
David Broadfoot
david@...
Mar 2, 2002 12:16 pm
... Actually, it's March 2 here. But why would I want to write it down? It'll be different tomorrow. DB...
227
Gary Smithrud
smithrud
Mar 2, 2002 3:40 pm
It's a sarcastic (slightly insulting) statement used on people that don't have a thought very often thus the other person wants to remember this amazing event....
228
Emmanuel STAPF [ISE]
manus_eiffel
Mar 3, 2002 12:50 am
... This is only new proposal and have not been adopted. In the meantime, you have to write your own conversion function for different types of VECTOR or...
229
smithrud
Mar 3, 2002 7:14 pm
That's too bad...I was hoping (or hopping) that it was further along than that. Oh well. Thanks for the info, Gary. ... been ... conforms ... EiffelOpenGL ......
230
Hubert Cater
eiffelzone
Mar 6, 2002 5:42 pm
Hi, I am using the WEL library to get input from a user via 'on_virtual_key' routine. I am trying to convert the ASCII input to this routine to either a...
231
Emmanuel STAPF [ISE]
manus_eiffel
Mar 6, 2002 6:50 pm
Dear Hubert, You must be referring to the `on_key_up39; and `on_key_down39; feature that takes a `virtual_key39; argument. To get the associated character from an...
232
jonathan_ostroff
jonathan_ost...
Mar 6, 2002 11:11 pm
Richard Paige, Jason Lancaric and I are in the process of developing a BON Tool (written in Java :-) currently available at: ...
233
geldridg@...
Mar 7, 2002 4:24 am
Just a quick question on the status of the above .. Has the ETL3 [1] external clause [2] been implemented into the ISE Eiffel compiler ? Thanks .. Geoff --...
234
Jacques Silberstein
abstractionfr
Mar 7, 2002 4:39 am
I ( still ) want to draw something in a DRAWABLE_AREA of vision2. Julian wrote my : In order to draw a pixmap on an EV_DRAWING_AREA, you need to call ...
235
bmeyer@...
Mar 7, 2002 4:43 am
Most of the `external' clause as described in the latest ETL draft that you cite is in the current ISE compiler. Exceptions include inline C, currently not...
236
Berend de Boer
berenddeboer
Mar 7, 2002 7:12 am
... I think it's a very bad sign if an Eiffel project is written in Java... -- Groetjes, Berend. (-:...
237
Berend de Boer
berenddeboer
Mar 7, 2002 7:20 am
... According to my experiments, none is. I'm using ISE Eiffel 5.1 for Linux. I've no idea what current compiler Bertrand is referring to. -- Groetjes, Berend....
238
Snoeck, Monique
mmsnoeck
Mar 7, 2002 8:49 am
Hello, In our program (CASE-tool) we have the following situation: There is an area on which the user can draw diagrams, these can then be dragged around and...
239
Berend de Boer
berenddeboer
Mar 7, 2002 9:00 am
Hello ISE, How can I get access to a struct item which is an array in ISE Eiffel 5.1 for Linux? For example with SmallEiffel I can write: exml_XML_cp_children...
240
Hubert Cater
eiffelzone
Mar 7, 2002 10:00 am
Hi Manu, ... Yeah my mistake. ... That's great thanks, forgot about the INTEGER class! Hubert...
241
Emmanuel STAPF [ISE]
manus_eiffel
Mar 7, 2002 5:48 pm
Dear Berend, if your struct is defined as: struct MY_STRUCT { struct OTHER other; } Then in Eiffel you can write to access other (cp: POINTER): POINTER is ...
242
Jonathan S. Ostroff
jonathan_ost...
Mar 7, 2002 6:36 pm
... Well, the BON diagrams in the BON-CASE tool can also be used to forward engineer to Java or JML, so it is not purely an Eiffel project. In, fact, I have...
243
Berend de Boer
berenddeboer
Mar 7, 2002 7:10 pm
... That was exactly the thing I looked for. Didn't know it was that simple. Thanks! -- Groetjes, Berend. (-:...
244
bmeyer@...
Mar 7, 2002 11:02 pm
... From ISE customer support exchanges, it seems that Berend is referring to a specific discrepancy: instead of two C_structure_operation variants, `get' and...
245
Peter Horan
peter7723
Mar 7, 2002 11:52 pm
... Widget size is controlled by the containing object. Widgets are expanded to fit the space available. ... Rather than trying to adjust what has been...
246
Peter Horan
peter7723
Mar 8, 2002 1:49 am
Precisely, what is intended by the use of the word "original" in the follwoing pairs of exceptions? class_name: STRING -- Name of the class that includes the...
247
Raphaël Simon
raphaels_eiffel
Mar 8, 2002 2:15 am
You guessed right, the "original" exception is the first that was raised. An exception handler can in turn raise an exception and in some cases you want to...
248
bmeyer@...
Mar 8, 2002 2:24 am
... Apparently copy and paste struck again. This should be fixed. -- BM...
249
Hubert Cater
eiffelzone
Mar 8, 2002 4:36 am
Hi, OK this one might be a bit confusing... I sometimes encounter a small problem when using the following bit of code: other_window.show Current.hide What...
250
Peter Horan
peter7723
Mar 8, 2002 7:03 am
... I suggest (subject to understanding correctly): class_name: STRING -- Name of the class that includes the recipient -- of the current exception ...
251
Berend de Boer
berenddeboer
Mar 8, 2002 7:43 am
... I didn't know there was just a single discrepancy, because I had no idea what the correct syntax, I just got a compiler warning :-) For others, this was in...
252
CRISMER Paul-Georges
paul-georges.crismer@...
Mar 8, 2002 8:44 am
Did you try to "invalidate" the other_window before calling update ? Windows tries to do the least work possible. Invalidating the window force the client...
253
bakhond
Mar 8, 2002 2:17 pm
Hi, I'm working on a filter for xml. Is it possible to define own "construct" keywords. For instance, if the word "post" is found in an Eiffel class it has to...
254
Hubert Cater
eiffelzone
Mar 8, 2002 4:02 pm
Thanks Paul, I'll try it out. Just a quick question if you know, what exactly is the difference between update and invalidate, and do I run the risk of...