Re: [E-devel] e16 and gnome2

2003-05-31 Thread Kim Woelders
The multiplying epplets thing may be fixed in current e16 CVS version. It works for me :-) /Kim --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5

Re: [E-devel] mouse wheel z-value

2003-05-31 Thread Ibukun Olumuyiwa
On Fri 30 May 2003, Yuri wrote: > >> > >>I'd like to know why 4th button means z=1 and 5th z=-1 and not otherwise > >>:) It seems to me a little bit alogic. > > > > > >1 = up, -1 = down... :) i guess :) it's a bit arbitary :) > > > > piece of my code: > > if (ee->z < 0){ > h++; > if(

Re: [E-devel] E16 & XCursor

2003-05-31 Thread Vallimar
On Thu, 29 May 2003, Marcus Harnisch wrote: > Carsten Haitzler (The Rasterman) writes: > > you create a cursor definition (class). you call it something like > > MYCURSOR or whatever then the theme says "when over this part of > > the window border use MYCURSOR as a cursor. when moving use MYMO

Re: [E-devel] mouse wheel z-value

2003-05-31 Thread Yuri
I'd like to know why 4th button means z=1 and 5th z=-1 and not otherwise :) It seems to me a little bit alogic. 1 = up, -1 = down... :) i guess :) it's a bit arbitary :) piece of my code: if (ee->z < 0){ h++; if(h == 24) h = 0; } else { h--; if(h == -1) h = 23; } Oh, i just