Page 1 of 16

HMG 4 Started

Posted: Thu Aug 12, 2010 10:18 pm
by Roberto Lopez
Hi All,

- The new project SourceForge's link:

http://sourceforge.net/projects/hmg/

- To download files:

https://sourceforge.net/projects/hmg/files/

IMPORTANT: UNPACK BINARIES IN ITS DEFAULT LOCATION (C:\HMG.4) OTHERWISE IT WILL NOT WORK.

- If you are a project contributor:

1. Download Tortoise SVN client (http://sourceforge.net/projects/tortoisesvn/).
2. Install according the setup wizard directions.
3. Open Windows explorer.
4. Right click in the C:\HMG.4\SVN folder.
5. Select 'SVN Checkout' (project url is: https://hmg.svn.sourceforge.net/svnroot/hmg).
6. If you change the code of your local copy and want to upload, Right click in the C:\HMG.4\SVN and select SVN Commit...
7. If you want download the changes from the server, Right click in the C:\HMG.4\SVN and select SVN Update.

- To become a contributor you need a SourceForge.net account and must be to be added to the project by the HMG administrators (http://www.hmgforum.com).

I'll publish coding guidelines for contributors soon.

Enjoy!

Re: HMG 4 Started

Posted: Thu Aug 12, 2010 11:45 pm
by danielmaximiliano
:( Tengo un error al querer instalar sobre Win7 , esta corrupto algunos de los archivos ?
intente bajar 2 veces el instalador en diferentes ubicaciones en la PC
alguna idea?
DaNiElMaXiMiLiAnO

Re: HMG 4 Started

Posted: Fri Aug 13, 2010 2:16 am
by Roberto Lopez
danielmaximiliano wrote::( Tengo un error al querer instalar sobre Win7 , esta corrupto algunos de los archivos ?
intente bajar 2 veces el instalador en diferentes ubicaciones en la PC
alguna idea?
DaNiElMaXiMiLiAnO
Lo subí de nuevo. Ahora está ok.

I've uploaded again. It's ok now.

Re: HMG 4 Started

Posted: Fri Aug 13, 2010 2:19 am
by cdsaenz
Yo tuve algun problema tambien pero un gestor de descarga lo solucionó. Me gusto mucho la logica que expusiste para esta nueva etapa del proyecto Roberto, creo que es una excelente decision, felicitaciones y gracias!.

Re: HMG 4 Started

Posted: Fri Aug 13, 2010 2:21 am
by Roberto Lopez
cdsaenz wrote:Yo tuve algun problema tambien pero un gestor de descarga lo solucionó. Me gusto mucho la logica que expusiste para esta nueva etapa del proyecto Roberto, creo que es una excelente decision, felicitaciones y gracias!.
Gracias!

Re: HMG 4 Started

Posted: Fri Aug 13, 2010 2:59 am
by sudip
Can't download anything from SF.net :(
May be I should try later

Re: HMG 4 Started

Posted: Fri Aug 13, 2010 7:12 am
by mol
I'm going o the trip this weekend :)
I'll join mondey. Marek
Do not write too many posts ;)

Re: HMG 4 Started

Posted: Fri Aug 13, 2010 8:01 am
by Rathinagiri
Hurray! I had successfully updated the checkbox control's onchange event. :) Now working on other checkbox properties and events.

Re: HMG 4 Started

Posted: Fri Aug 13, 2010 12:58 pm
by Roberto Lopez
rathinagiri wrote:Hurray! I had successfully updated the checkbox control's onchange event. :) Now working on other checkbox properties and events.
And I've successfully updated my local copy with your changes... IT WORKS!!!! :)

Please, note that the OnChange event is already inherited from Control class.

You must add an already inherited property, event or method only when the inherited code is not useful for a specific control (needing another treatment).

Note that changing the (ie) ::bOnChange value once the control was created is not enough. You must establish a new event connection at QT level, so you'll need a structure similar this:

Code: Select all


if ::lCreated

* The new value must be 'connected' to the ::oQTObject

else

* The new value must be handled with class variables only (ie: ::bOnChange)

endif


Re: HMG 4 Started

Posted: Fri Aug 13, 2010 1:22 pm
by Roberto Lopez
Roberto Lopez wrote:

Code: Select all


if ::lCreated

* The new value must be 'connected' to the ::oQTObject

else

* The new value must be handled with class variables only (ie: ::bOnChange)

endif

And this structure allows the 'magic' of creating a new object without need to remember a long list of parameters in the right order, allowing the 'nice oop' demos.