Re: Welcome to the Project Developers' Table
Posted: Fri May 20, 2011 3:56 pm
Here, in XP, they look different, as they should...mrduck wrote:In XP all the "buttons" in the statusbar are identical, raised and flat looks identical.
Exclusive forum for HMG, a Free / Open Source xBase WIN32/64 Bits / GUI Development System
http://hmgforum.com/
Here, in XP, they look different, as they should...mrduck wrote:In XP all the "buttons" in the statusbar are identical, raised and flat looks identical.
After some researching in my system I found that I had 3 QtCore4.dll !mrduck wrote:It's working here on xp, qt 4.7.0, harbour from today svn
To me this seems to be a bug or a limitation in HMG3 and should be fixed or settled as a compatibility bug.rathinagiri wrote:It is purposefully done for HMG 3 backward compatibility. This is from HMG 3 Reference Doc.concentra wrote:In samples\VirtualGrid\demo_3, in the menu, if I choose "Methods" - "DeleteColumn(2)", the whole data is deleted, not only the column 2.But, we can re-think!Code: Select all
DeleteColumn Method Deletes a Column From a Grid Control Syntax: <ParentWindowName>.<ControlName>. DeleteColumn ( <nColIndex>) When this command / method is used all items in grid (if any) will be lost.
Code: Select all
IF GETENV( "HMG3STRICTCOMPATIBILITY" ) = "YES"
... do the backward compatibility code here
ELSE
... do the no compatible code here
ENDIF
Code: Select all
2011-05-20 13:45 UTC-0300 Mauricio Ventura Faria (<conc001 a+t gmail com>)
* source/tabpage.prg
* source/tab.prg
! Removed Create method not needed anymore.Code: Select all
2011-05-20 20:58 UTC-0300 Carlos Britos ( <bcd12a(a_t)yahoo.com.ar> )
* include/hmg.ch
+ Added Inverted property to Dial and Slider.
+ Added Inverted property to One-liner definitions.
+ Added #xcommand PLAY WAVE <fileWav> => PlayWave( <fileWav> ).
* hmg.hbp
! Added media.prg file to the list.
+ source\media.prg
* Sound class to play wav files and PlayWave() function.
+ samples\media\
+ Added demo_1.prg and utilities files to test Play Wav files.method DoGraphCommands is called at each paint event:concentra wrote:Hi All !
The "Graph" commands are hogging the CPU.
This is not noted in multiple core CPUs until you run as many hogging EXEs as the number of CPUs in the core.
And seems that this is not new, it was always that way.
I tried to debug this and found that the painting function draws the graphs again and again and again...
The graph commands are stored in an array and are not deleted until an explicit command to do this is emitted
I was unable to provide a solution...
Code: Select all
// Paint event sub-classing FOR graph commands & Onpaint event
::oQTObject:connect( QEvent_Paint , {||Self:DoGraphCommands()} )The problems with images are related to plugins. If plugin is present you can open that kind of images... plugin directory is listed in qt.conf file (or can be specified in the program code)concentra wrote:I downloaded today´s Nightly Harbour and it comes with QT 4.6.3.
This version do not work Ok ! Specially with images. Seems that only PNG images are Ok.