Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-09 Thread Martin Schreiber
On Saturday 08 September 2012 19:06:48 wahono sri wrote: In tprocmonitor functions : - Is listentoprocess similiar with SDL_AddEventWatch? - Is unlistentoprocess similiar with SDL_DelEventWatch? I don't think so. Martin

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-09 Thread Martin Schreiber
On Saturday 08 September 2012 18:52:08 wahono sri wrote: Try to find out where GetRawInputData() is used and how it can be replaced with older Windows functions. Sometimes it is also possible to use an upgrade dll to support new Windows functions. I usually try to link problematic

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-09 Thread wahono sri
You could use the existing code in msesysintf1 for now. Are you still in doubt to use SDL? If yes, in drawing (GDI) or in GUI? Most of GUI porting is exist in SDL except folder management, than I still use msesysintf.pas and separate for each OS from your old code. But for threading and event

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-09 Thread wahono sri
For text drawing, we could use freetype (not sdl_ttf), because SDL_ttf is only wrapping freetype to SDL_Surface. And I think if GUI porting is fixed, continue to GDI feel more easy if region management from msegenericgdi works fine. Please visit

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread Martin Schreiber
On 07.09.2012 23:32, wahono sri wrote: I'm sure I do wrong in SDL event implementation for mseevent. mouse click event sent to mseevent but it does not fire procedure in widget event. Martin, will you check it? Seems not to work on Windows 2000: testsdl.exe - Einsprungpunkt nicht gefunden Der

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread Ivanko B
runs on all platforms Win-9x Win-2000 don't belong to these anymore :) -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread wahono sri
I think it's enough we start from WinXP. Remember, new software product is for present and future hardware/OS, not for old hardware/OS. I try win98 on new PC and got some trouble in drivers and if it runs, it run slowly. Microsoft didn't support again for their product below winxp, why we should

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread wahono sri
http://windows.microsoft.com/en-US/windows/help/end-support http://support.microsoft.com/ph/1131 -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread wahono sri
Official and unofficial OS supported by SDL 2 http://hg.libsdl.org/SDL/file/default/README.Platforms -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread wahono sri
Try to find out where GetRawInputData() is used and how it can be replaced with older Windows functions. Sometimes it is also possible to use an upgrade dll to support new Windows functions. I usually try to link problematic functions with getprocedureadress(). Why you don't upgrade to

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread Ivanko B
Why you don't upgrade to WIndows 8 preview, === It's easy for us - illoyal pirates :) Not for europeans :) -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread wahono sri
In tprocmonitor functions : - Is listentoprocess similiar with SDL_AddEventWatch? - Is unlistentoprocess similiar with SDL_DelEventWatch? -- Live Security Virtual Conference Exclusive live event will cover all the ways

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread Graeme Geldenhuys
On 08/09/12 10:54, wahono sri wrote: it run slowly. Microsoft didn't support again for their product below winxp, why we should support it? We have lots of clients still using Win200. I even use Win2000 for all my windows development work - though I always run it in a VM now, and not on real

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-08 Thread Graeme Geldenhuys
On 08/09/12 11:33, wahono sri wrote: Official and unofficial OS supported by SDL 2 http://hg.libsdl.org/SDL/file/default/README.Platforms Oh no, OS/2 is not in that list - it was for SDL 1.2 ;-) Also FreeBSD and Solaris being in the unofficial support list is a bit worrying. Regards, -

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-07 Thread wahono sri
+ implement mouse button and wheel event Button effect when mouse over and mouse click work but draw widget in window still broken. Need hard work to fix some imlementation of drawing area. -- Live Security Virtual

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-07 Thread wahono sri
I'm sure I do wrong in SDL event implementation for mseevent. mouse click event sent to mseevent but it does not fire procedure in widget event. Martin, will you check it? -- Live Security Virtual Conference Exclusive

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-06 Thread wahono sri
IMO, the similiar function from SDL to copyarea is http://wiki.libsdl.org/moin.cgi/SDL_UpperBlit?highlight=%28%5CbCategorySurface%5Cb%29%7C%28CategoryStruct%29%7C%28CategoryEnum%29%7C%28SGFunctions%29 -- Live Security

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-06 Thread Julio Jiménez
Wahono, I like your effort in porting MSE to SDL, but I have a doubt. When finished... will Martin integrate it in MSE or will keep it as a separated project to be maintained in paralell to MSE development? Thank you! 2012/9/6 wahono sri wahon...@gmail.com Hi Martin I updated to

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-06 Thread wahono sri
On 6 September 2012 17:00, Julio Jiménez juj...@gmail.com wrote: Wahono, I like your effort in porting MSE to SDL, but I have a doubt. When finished... will Martin integrate it in MSE or will keep it as a separated project to be maintained in paralell to MSE development? I think Martin just

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-06 Thread wahono sri
I think less than 10 pieces of function of MSEgui has description what's for it, and to know the functionality I just make trial and error. he he -- Live Security Virtual Conference Exclusive live event will cover all the

Re: [MSEide-MSEgui-talk] About double buffer strategy and SDL

2012-09-06 Thread Martin Schreiber
On Thursday 06 September 2012 11:28:00 wahono sri wrote: Hi Martin I updated to https://gitorious.org/mseuniverse/mseuniverse SDL convertion to MSEgui : drawinfo.paintdevice = pixmapty = SDL_Surface drawinfo.gc.handle = SDL_Renderer (software renderer for bitmap and hardware renderer for