From: Jose A. Jr - j. - t. <ja...@te...> - 2004-04-01 20:07:20
|
That's ok to me. I made all my changes based on the changed (and now reverted) version of hWindow and window.c My version, when i wasn't in the developers list, need to be changed to be compatible with the current stuff. So, revert to your version. Atenciosamente, []'s, Best Regards, José Augusto M. de Andrade Jr. jamaj ----- Original Message ----- From: <hwg...@li...> To: <hwg...@li...> Sent: Thursday, April 01, 2004 1:02 AM Subject: Hwgui-developers digest, Vol 1 #17 - 5 msgs > Send Hwgui-developers mailing list submissions to > hwg...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/hwgui-developers > or, via email, send a message with subject or body 'help' to > hwg...@li... > > You can reach the person managing the list at > hwg...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Hwgui-developers digest..." > > > Today's Topics: > > 1. Re: control.c (Alexander S.Kresin) > 2. Changelog 2004-03-31 11:40 UTC+0300 Alexander Kresin (Alexander S.Kresin) > 3. MDI ( to Jose ) (Alexander S.Kresin) > 4. Changelog 2004-03-31 15:00 UTC+0300 Alexander Kresin (Alexander S.Kresin) > 5. Issues about the TAB behaviour (Rodrigo Moreno) > > --__--__-- > > Message: 1 > Date: Wed, 31 Mar 2004 11:45:59 +0400 > From: "Alexander S.Kresin" <al...@be...> > Reply-To: "Alexander S.Kresin" <al...@be...> > To: hwg...@li... > Subject: [Hwgui-developers] Re: control.c > > On 27.03.2004 0:07, Jose Augusto Jr - jamaj - terra <ja...@te...> wrote: > > JAJjt> The recent functions i have added to control.c are support for a new > JAJjt> control, WinCTRL. > JAJjt> It intends to be a general window control that a user can pain and check its > JAJjt> events. Like TwinControl in Delphi. > > Thanks for the explanation. > > Regards, > Alexander > http://kresin.belgorod.su > > > > > --__--__-- > > Message: 2 > Date: Wed, 31 Mar 2004 12:19:26 +0400 > From: "Alexander S.Kresin" <al...@be...> > Reply-To: "Alexander S.Kresin" <al...@be...> > To: hwg...@li... > Subject: [Hwgui-developers] Changelog 2004-03-31 11:40 UTC+0300 Alexander Kresin > > 2004-03-31 11:40 UTC+0300 Alexander Kresin <al...@be...> > * source/hbrowse.prg > * Few changes, proposed by Vlad: > - bScrollPos variable has been added to HBrowse to handle the vertical > scroll position; > - SB_PAGELEFT and SB_PAGERIGHT handling added to DoHScroll(); > - handling of bEnter is changed. > * source/hdatepic.prg > ! Small fix, provided by Alexey Mironenko. > > 2004-03-29 10:10 UTC+0300 Alexander Kresin <al...@be...> > * source/hbrowse.prg > ! Bug fixed, reported by Vlad > * source/menu.prg > ! Hwg_AddMenuItem() has been fixed. > * source/xml/hxmldoc.prg > * Find() method has been added to HXMLNODE class > > > Regards, > Alexander > http://kresin.belgorod.su > > > > > --__--__-- > > Message: 3 > Date: Wed, 31 Mar 2004 12:28:13 +0400 > From: "Alexander S.Kresin" <al...@be...> > Reply-To: "Alexander S.Kresin" <al...@be...> > To: hwg...@li... > Subject: [Hwgui-developers] MDI ( to Jose ) > > Jose, > > sorry to hurry you, but we need to release 2.12 - there wasn't a new > release for a long time already. > If you haven't time now for fixing the MDI issue, I'll revert your > changes, so we could release a working stuff. > After 2.12 you may upload fixed code when you'll be ready. > > Regards, > Alexander > http://kresin.belgorod.su > > > > > --__--__-- > > Message: 4 > Date: Wed, 31 Mar 2004 14:59:38 +0400 > From: "Alexander S.Kresin" <al...@be...> > Reply-To: "Alexander S.Kresin" <al...@be...> > To: hwg...@li... > Subject: [Hwgui-developers] Changelog 2004-03-31 15:00 UTC+0300 Alexander Kresin > > 2004-03-31 15:00 UTC+0300 Alexander Kresin <al...@be...> > * source/hbrowse.prg > * Handling of SB_THUMBPOSITION and SB_THUMBTRACK is left to the user's > bScrollPos codeblock. > * bScrollPos is initialized with a call to VScrollPos() function in > InitBrw() in case of array browse. VScrollPos() may serve as a sample > for other bScrollPos implementations. > > > Regards, > Alexander > http://kresin.belgorod.su > > > > > --__--__-- > > Message: 5 > From: "Rodrigo Moreno" <rod...@te...> > To: <hwg...@li...> > Date: Wed, 31 Mar 2004 15:19:10 -0300 > Subject: [Hwgui-developers] Issues about the TAB behaviour > > Hi All > > Probably someone hear about the problem with tab key when used with tab > control. > > 1)When TAB is initalized its should set focus on first control. If you > change between pages it's does. > > 2)When key tab is pressed it's get focus on page control, when it's should > go to next control > > Regards > Rodrigo > > > #include "windows.ch" > #include "guilib.ch" > > Static oMain, oForm, oTab > Function Main() > > INIT WINDOW oMain MAIN TITLE "Tab Demo" ; > AT 0,0 ; > SIZE GetDesktopWidth(), GetDesktopHeight() - 28 > > MENU OF oMain > MENUITEM "&Exit" ACTION oMain:Close() > MENUITEM "&Demo" ACTION Test() > ENDMENU > > ACTIVATE WINDOW oMain > Return Nil > > Function Test() > Private oGet1, xGet1 := 10 > Private oGet2, xGet2 := Space(20) > Private oGet3, xGet3 := Date() > Private oGet4, xGet4 := 20 > Private oGet5, xGet5 := Space(20) > Private oGet6, xGet6 := Date() > > PREPARE FONT oFont NAME "Courier New" WIDTH 0 HEIGHT -11 > > INIT DIALOG oForm /*CLIPPER NOEXIT*/ TITLE "Tab Demo"; > FONT oFont ; > AT 0, 0 SIZE 700, 425 ; > STYLE DS_CENTER + WS_VISIBLE + WS_POPUP + WS_VISIBLE + WS_CAPTION + > WS_SYSMENU > > @ 8,8 TAB oTab ITEMS {} SIZE 684,370 > > BEGIN PAGE 'Page 1' OF oTab > @ 10, 30 GET oGet1 VAR xGet1 SIZE 30,25 > @ 10, 60 GET oGet2 VAR xGet2 SIZE 150,25 > @ 10, 90 GET oGet3 VAR xGet3 SIZE 100,25 > END PAGE OF oTab > > BEGIN PAGE 'Page 2' OF oTab > @ 10, 30 GET oGet4 VAR xGet4 SIZE 30,25 > @ 10, 60 GET oGet5 VAR xGet5 SIZE 150,25 > @ 10, 90 GET oGet6 VAR xGet6 SIZE 100,25 > END PAGE OF oTab > ACTIVATE DIALOG oForm > Return Nil > > > > > --__--__-- > > _______________________________________________ > Hwgui-developers mailing list > Hwg...@li... > https://lists.sourceforge.net/lists/listinfo/hwgui-developers > > > End of Hwgui-developers Digest > > Esta mensagem foi verificada pelo E-mail Protegido Terra. > Scan engine: VirusScan / Atualizado em 31/03/2004 / Versão: 1.5.2 > Proteja o seu e-mail Terra: http://www.emailprotegido.terra.com.br/ > |