hmg-4 Changelog

Moderator: Rathinagiri

User avatar
l3whmg
Posts: 694
Joined: Mon Feb 23, 2009 8:46 pm
Location: Italy
Contact:

Re: hmg-4 Changelog

Post by l3whmg »

Hi to everyone

Code: Select all

2011-12-23 00:05 UTC+0100 Luigi Ferraris ( <luigi at l3w.it> )
   * source/abstractbutton.prg
     * removed lChecked internal var
     + CheckAble() method to know if check-able

   * samples/alldemo/demo_1p000.prg
   * samples/alldemo/demo_1p001.prg
   * samples/alldemo/demo_1p002.prg
   * samples/alldemo/demo_1p003.prg
   * samples/alldemo/demo_1p004.prg
   * samples/alldemo/demo_1p005.prg
   * samples/alldemo/demo_1p006.prg
   * samples/alldemo/demo_1p007.prg
   * samples/alldemo/demo_1p008.prg
   * samples/alldemo/demo_1p009.prg
   * samples/alldemo/demo_1p010.prg
   * samples/alldemo/demo_1p011.prg
   * samples/alldemo/demo_1p012.prg
     * revised items menu and related calling methods
Cheers
Luigi from Italy
www.L3W.it
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: hmg-4 Changelog

Post by Ricci »

Code: Select all

2011-12-25 16:30 UTC+0100 Ricci Zepmeusel ( ricci at conzoft.de )
   + source/numgetc.prg
     ! new numeric input class
   * hmg.hbp
     ! please rebuild your library with buildlib.bat
   * include/hmg.ch
     ! new commands:
       + DEFINE NUMGETC / END NUMGETC
       + DECIMALS <nvalue>
       + THOUSENDS <nvalue>
   + samples/numgetc/demo_1.prg
     ! demonstration of the new class
More information in the thread NUMGETC - Introducing a new HMG4 class
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: hmg-4 Changelog

Post by Ricci »

Code: Select all

2011-12-25 16:30 UTC+0100 Ricci Zepmeusel ( ricci at conzoft.de )
   * source/numgetc.prg
   * include/hmg.ch
     ! changed THOUSENDS to THOUSANDS
   + samples/numgetc/demo_1.prg
NUMGETC is now based on QLabel.
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: hmg-4 Changelog

Post by Ricci »

Code: Select all

2011-12-26 18:20 UTC+0100 Ricci Zepmeusel ( ricci at conzoft.de )
   * source/datepicker.prg
     + method InputMask( cValue )
   * source/hyperlink.prg
     ! now call the browser even there is no "http:/" in link adress
       and email program only if "@" is in link adress
Datepicker: i.e. use

Code: Select all

INPUTMASK "dd.MM.yyyy"
as a oneliner while definition.

More information here:
http://developer.qt.nokia.com/doc/qt-4. ... ormat-prop
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: hmg-4 Changelog

Post by Ricci »

Code: Select all

2011-12-27 17:15 UTC+0100 Ricci Zepmeusel ( ricci at conzoft.de )
   + source/textboxsimple.prg
     ! new "text only" input class
See the thread TEXTBOXSIMPLE - new character only input class
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: hmg-4 Changelog

Post by Ricci »

Code: Select all

2011-12-27 18:30 UTC+0100 Ricci Zepmeusel ( ricci at conzoft.de )
   * source/textboxsimple.prg
     ! some minor changes
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: hmg-4 Changelog

Post by Ricci »

Code: Select all

2011-12-28 10:00 UTC+0100 Ricci Zepmeusel ( ricci at conzoft.de )
   * source/textboxsimple.prg
     ! method Password( <xValue> ) accept .T./.F. or a number between 0 and 3,
       it always return a number.
       QLineEdit_Normal              0  Display characters as they are entered. This is the default.
       QLineEdit_NoEcho              1  Do not display anything. This may be appropriate for passwords where even the length of the password should be kept secret.
       QLineEdit_Password            2  Display asterisks instead of the characters actually entered.
       QLineEdit_PasswordEchoOnEdit  3  Display characters as they are entered while editing otherwise display asterisks.
     + method InputMask( <cValue> )
       Qt compatible inputmask is now accepted, see:
       http://developer.qt.nokia.com/doc/qt-4.8/qlineedit.html#inputMask-prop
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: hmg-4 Changelog

Post by Ricci »

Code: Select all

2011-12-28 16:00 UTC+0100 Ricci Zepmeusel ( ricci at conzoft.de )
   * source/textboxsimple.prg
     ! some minor changes
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: hmg-4 Changelog

Post by Ricci »

Code: Select all

2011-12-28 18:50 UTC+0100 Ricci Zepmeusel ( ricci at conzoft.de )
   + source/dateget.prg
     ! new "date only" input class.
       Implemented because datepicker accept no empty date
See the thread DATEGET - new date only input class
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: hmg-4 Changelog

Post by Ricci »

Code: Select all

2012-01-01 17:15 UTC+0100 Ricci Zepmeusel ( ricci at conzoft.de )
   * source/numgetc.prg
     ! added a grafic arrow that displays the active status
   * source/misc.prg
     + function Xpm2Image( <aXpm> ) which convert an XPM array to a QImage object
NUMGETC now displays a grafic arrow when having the focus.
The grafic is build at runtime from code using the new function Xpm2Image().

NUMGETC became a compound object, consisting of a QLabel for the number and another QLabel for displaying/hiding the grafic.
Post Reply