Welcome to the Project Developers' Table

Moderator: Rathinagiri

User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: Welcome to the Project Developers' Table

Post by Roberto Lopez »

Roberto Lopez wrote: If you have no problem about it, I'll remove this.

Please, let me know your opinion.

Thanks.

So, this:

Code: Select all

#ifdef __HBIDE__
   #include "hbqtgui.ch"
   #include "hmg.ch"
#else
   // Tobe depricated finally. No paths must be inside sources, a bad design.
   #include "../../../harbour/contrib/hbqt/qtgui/hbqtgui.ch"
  #include "../../include/hmg.ch"
#endif
Will be replaced by:

Code: Select all

   #include "hbqtgui.ch"
   #include "hmg.ch"
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
mrduck
Posts: 497
Joined: Fri Sep 10, 2010 5:22 pm

Re: Welcome to the Project Developers' Table

Post by mrduck »

Code: Select all

   #include "hbqtgui.ch"
   #include "hmg.ch"
[/quote]

Yes please, thanks.

Please check combobox.prg if #define QComboBox_InsertAlphabetically is present twice
(I cannot access svn now to check myself)
User avatar
bedipritpal
Posts: 122
Joined: Thu Sep 02, 2010 10:47 pm

Re: Welcome to the Project Developers' Table

Post by bedipritpal »

Roberto Lopez wrote:It can be replace by a plain:

Code: Select all

#include "hbqtgui.ch"
If you have no problem about it, I'll remove this.
Please, let me know your opinion.

Thanks.
This is how it should be.
Please do it. I am busy with hbQT.
enjoy hbIDEing... Pritpal Bedi
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: Welcome to the Project Developers' Table

Post by Roberto Lopez »

2010-10-17 18:55 UTC-0300 Roberto Lopez (<mail.box.hmg@gmail.com>)
* source/window.prg
! Fixed minor bug on modal window creation (reported by Francesco)
+ CodeStyle.txt
+ ChangelogStyle.txt
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: Welcome to the Project Developers' Table

Post by Roberto Lopez »

Rathinagiri,

The following constants (LINES) breaks the alternate syntax for 'Lines' grid property.

Code: Select all

// Draw Graph

#define BARS                                      1
#define LINES                                     2
#define POINTS                                    3
#define PIE                                       4
Could you be so kind to change its names to (ie) GRH_* or something like that?

Thanks in advance.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: Welcome to the Project Developers' Table

Post by Roberto Lopez »

2010-10-17 20:00 UTC-0300 Roberto Lopez (<mail.box.hmg@gmail.com>)
* source/browse.prg
* source/combobox.prg
* source/control.prg
* source/dialogs.prg
* source/editbox.prg
* source/graph.prg
* source/grid.prg
* source/hyperlink.prg
* source/image.prg
* source/ipaddress.prg
* source/label.prg
* source/msgbox.prg
* source/printer.prg
* source/tab.prg
* source/tabpage.prg
* source/textbox.prg
* source/window.prg
! Removed unneeded relative paths in #include directives
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
bedipritpal
Posts: 122
Joined: Thu Sep 02, 2010 10:47 pm

Re: Welcome to the Project Developers' Table

Post by bedipritpal »

2010-10-17 16:00 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* ChangelogStyle.txt
* CodeStyle.txt
+ Added: SVN Header.
% Reformatted to be tangible.
enjoy hbIDEing... Pritpal Bedi
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: Welcome to the Project Developers' Table

Post by Rathinagiri »

Great going friends. Before doing anything let me study the changelogstyle.txt and codeStyle.txt in deep.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: Welcome to the Project Developers' Table

Post by Rathinagiri »

Roberto Lopez wrote:Rathinagiri,

The following constants (LINES) breaks the alternate syntax for 'Lines' grid property.

Code: Select all

// Draw Graph

#define BARS                                      1
#define LINES                                     2
#define POINTS                                    3
#define PIE                                       4
Could you be so kind to change its names to (ie) GRH_* or something like that?

Thanks in advance.
No problem Roberto. I will change and update.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: Welcome to the Project Developers' Table

Post by Rathinagiri »

Fixed graph.

2010-10-18 10:10 UTC+0530 Rathinagiri (srgiri@dataone.in)
* source/graph.prg
* samples/graph/demo_5.prg
* include/hmg.ch
! Changed #DEFINE command for BARS, LINES, POINTS and PIE with GRH_.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
Post Reply