Re: [Harbour] moc detection in linux environment

2010-05-29 Thread CarozoDeQuilmes
Thanks, it work fine for me Regards CdQ On Sat, May 29, 2010 at 2:12 PM, Viktor Szakáts wrote: > > Hi, I'm trying making Harbour binaries for linux platform with the last > Qt version (4.6.2), but my linux have headers for qt 4.5.2 pre instaled at > /usr/include > > > > I'm using: > > > > export

Re: [Harbour] Making Harbour program with Static Qt Libraries in Linux

2010-05-29 Thread CarozoDeQuilmes
Hi Viktor, of course. My test program work fine with this libraries in an Ubuntu 9.10 from harbour lib folder: libhbqts.a libhbqtcores.a libhbqtguis.a libhbqtnetworks.a + from qt lib folder (warning, gcc search library method detect first .so libraries instead of .a) libQtCore.a libQtGui.a li

[Harbour] moc detection in linux environment

2010-05-29 Thread CarozoDeQuilmes
Hi, I'm trying making Harbour binaries for linux platform with the last Qt version (4.6.2), but my linux have headers for qt 4.5.2 pre instaled at /usr/include I'm using: export HB_WITH_QT="/home/cdq/qt-everywhere-opensource-src-4.6.2_for_dynamic/include" to override the /usr/include folder but

[Harbour] Making Harbour program with Static Qt Libraries in Linux

2010-05-29 Thread CarozoDeQuilmes
My 2 cents. Sorry about my bad english... My user for test is: cdq My linux is Ubuntu 9.10 Donwload Harbour SVN: svn co https://harbour-project.svn.sourceforge.net/svnroot/harbour-project/trunk/harbour/home/cdq/harbour_svn/harbour Download Qt 4.6.2 sources from: http://qt.nokia.com/download

Re: [Harbour] Question about HB_UnZipFile

2010-05-16 Thread CarozoDeQuilmes
Thanks for answer CdQ On Sat, May 15, 2010 at 4:13 AM, Viktor Szakáts wrote: > Hi, > > > Hi, I have an old program that unzip files with HB_UnZipFile with an > progress bar, but the block bProgress don't work anymore. > > > > Is it true or I'm wrong ? > > It's marked in the source code as "TODO:

Re: [Harbour] HB_ZipFile problem

2010-05-16 Thread CarozoDeQuilmes
gt; Bruno > > 2010/5/14 CarozoDeQuilmes > >> Hi, three or four days ago I had download the Harbour 2.1.0beta1 (Rev. >> 14468) that solve the overwrite problem with the HB_ZipFile. >> It work fine for me, but today I found that: >> HB_ZipFile( cFileZip , cFile ) >

Re: [Harbour] SF.net SVN: harbour-project:[14480] trunk/harbour

2010-05-16 Thread CarozoDeQuilmes
Many thanks !!! CdQ On Sat, May 15, 2010 at 4:16 AM, wrote: > Revision: 14480 > > http://harbour-project.svn.sourceforge.net/harbour-project/?rev=14480&view=rev > Author: vszakats > Date: 2010-05-15 07:16:49 + (Sat, 15 May 2010) > > Log Message: > --- > 2010-05-15 09:16 UTC+0

[Harbour] Question about HB_UnZipFile

2010-05-14 Thread CarozoDeQuilmes
Hi, I have an old program that unzip files with HB_UnZipFile with an progress bar, but the block bProgress don't work anymore. Is it true or I'm wrong ? Thanks in advance -- Saludos/Regards/Abraços CdQ ___ Harbour mailing list (attachment size limit:

[Harbour] HB_ZipFile problem

2010-05-14 Thread CarozoDeQuilmes
Hi, three or four days ago I had download the Harbour 2.1.0beta1 (Rev. 14468) that solve the overwrite problem with the HB_ZipFile. It work fine for me, but today I found that: HB_ZipFile( cFileZip , cFile ) doesn't work anymore cFileZip don't exists and (obvious) cFile exists Little program t

Re: [Harbour] Question about Preprocessor

2010-05-13 Thread CarozoDeQuilmes
Hi Przemyslaw Ok, thanks for answer Regards CdQ 2010/5/13 Przemysław Czerpak > On Tue, 11 May 2010, CarozoDeQuilmes wrote: > > Hi, > > > Hi, when I put the following #translate in my program always convert the > > parameter myparm to literal "myparm". It i

Re: [Harbour] Question about Preprocessor 2

2010-05-13 Thread CarozoDeQuilmes
Hi Przemyslaw Ok, thanks for answer Regards CdQ 2010/5/13 Przemysław Czerpak > On Thu, 13 May 2010, CarozoDeQuilmes wrote: > > Hi, > > > Hi, I have an little question: > > This translate: > > #xtranslate . => myFun( , ) > > function main() > &

[Harbour] Question about Preprocessor 2

2010-05-13 Thread CarozoDeQuilmes
Hi, I have an little question: This translate: #xtranslate . => myFun( , ) function main() aeval( aTmp , { *|x|* level1.level2 } ) return .T. It will be generate the followed sentence: function main() aeval( aTmp , { myFun( *|x|* level1 , level2 ) } ) return .T. I think that it is

Re: [Harbour] SF.net SVN: harbour-project:[14460] trunk/harbour

2010-05-12 Thread CarozoDeQuilmes
Many thanks, it work fine for me. Regards CdQ On Tue, May 11, 2010 at 5:27 PM, wrote: > Revision: 14460 > > http://harbour-project.svn.sourceforge.net/harbour-project/?rev=14460&view=rev > Author: vszakats > Date: 2010-05-11 20:27:03 + (Tue, 11 May 2010) > > Log Message: > ---

Re: [Harbour] Question about Preprocessor

2010-05-12 Thread CarozoDeQuilmes
#x27;s Maniero > > > 2010/5/11 CarozoDeQuilmes > >> Hi, when I put the following #translate in my program always convert the >> parameter myparm to literal "myparm". It is good for me. >> >> Sample: >> >> #translate MYEXAMPLE ; >&

[Harbour] Question about Preprocessor

2010-05-11 Thread CarozoDeQuilmes
Hi, when I put the following #translate in my program always convert the parameter myparm to literal "myparm". It is good for me. Sample: #translate MYEXAMPLE ; => ; MYNEWEXAMPLE <(myparm)> function main() MYEXAMPLE "cParm" MYEXAMPLEcParm Return .T. Code Gen

[Harbour] Problem with HB_ZipFile

2010-05-11 Thread CarozoDeQuilmes
Hi, I have a little program that compress files to zip format by adding files with parameter setting to .T. for first file (to create the zip file) and the following files with setting to .F. to add files to ZIP. Sample: function main ferase( "pepe.zip" ) HB_ZIPFILE( "pepe.zip" , "minilib.mip

[Harbour] octal permissions

2010-05-04 Thread CarozoDeQuilmes
Hi guys, there is some harbour function to get the files permissions in Linux platform (also called "octal permissions") Thanks in advance -- Saludos/Regards/Abraços CdQ ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-projec

Re: [Harbour] Re: Compiling CGI programs and RUN on Apache

2010-04-12 Thread CarozoDeQuilmes
My 2 cent: Starting the Apache2.2 service The Apache2.2 service is running. ] Apache/2.2.15 (Win32) configured -- resuming normal operations [Mon Apr 12 13:17:37 2010] [notice] Server built: Mar 4 2010 11:27:46 [Mon Apr 12 13:17:37 2010] [notice] Parent: Created child process 6532 [Mon Apr 12 13:

Re: [Harbour] Redirect STDOUT

2010-03-13 Thread CarozoDeQuilmes
ser's list. > > Brgds, > Viktor > > On 2010 Mar 13, at 14:02, CarozoDeQuilmes wrote: > > > Hi smu, many thanks for your help but it don't respond my question. I > will make a pure Harbour sample and I will send my question again. > > > > Thanks an

Re: [Harbour] Redirect STDOUT

2010-03-13 Thread CarozoDeQuilmes
> cString += " return " + DOUBLE_QUOTE + cBm_now + DOUBLE_QUOTE + CRLF > > FWRITE(nHandle, cString) > FCLOSE(nHandle) > ? "Wrote to: " + VERSION_FILE > ENDIF > > > > On Wed, Mar 10, 2010 at 12:03 PM, CarozoDeQuilmes < >

Re: [Harbour] Re: QAplication and TRACE

2010-03-13 Thread CarozoDeQuilmes
Hi Pritpal, many thanks ! Regards CdQ On Fri, Mar 12, 2010 at 7:31 PM, Pritpal Bedi wrote: > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, can you remove or suspend the followed traces from HBQT ?? > > > > QApplication.cpp:115: HB_TR_ALWAYS hbqt_exit 0 00D5

[Harbour] QAplication and TRACE

2010-03-12 Thread CarozoDeQuilmes
Hi Pritpal, can you remove or suspend the followed traces from HBQT ?? QApplication.cpp:115: HB_TR_ALWAYS hbqt_exit 0 00D5835C QApplication.cpp:120: HB_TR_ALWAYS hbqt_exit 1 Thanks in advance CdQ Note: because in my project, these traces are put into my sysout build process. Loo

Re: [Harbour] Re: Class QLibraryInfo in HbQt

2010-03-03 Thread CarozoDeQuilmes
Thanks in advance CdQ On Wed, Mar 3, 2010 at 4:29 PM, Pritpal Bedi wrote: > > > CarozoDeQuilmes wrote: > > > > Hi, four dias ago, I sent this mail but I think that I don't explain > > clearly > > > > With the Pritpal function Qt_Version_Str(), I can g

Re: [Harbour] Re: Class QLibraryInfo in HbQt

2010-03-03 Thread CarozoDeQuilmes
check compatibility (at runtime) between Qt used for make the program and Qt Dlls used for run the program. Can somebody help me ? Thanks in advance CdQ On Fri, Feb 26, 2010 at 8:39 PM, CarozoDeQuilmes wrote: > Hi Pritpal, maybe I am wrong and you can help me. I only need get the > version,

Re: [Harbour] Re: FocusIn and FocusOut in widgets

2010-02-27 Thread CarozoDeQuilmes
Hi Francesco, I only use HbQt to make a final framework based in harbour user commands Pritpal Bedi is the Qt expert and HbQt guru. Regards CdQ On Sat, Feb 27, 2010 at 12:36 PM, francesco perillo wrote: > Thank you for your sample. > > I'm reading a book on Qt but it is C++ based. It's really i

Re: [Harbour] Re: FocusIn and FocusOut in widgets

2010-02-27 Thread CarozoDeQuilmes
Hi Francesco: for WHEN/VALID you can use VALID property (not implemented at this moment, but I will implement it before release the first HbQtCommand version. Ex: DEFINE TEXTBOX t1 VALUE "Initial Value" VALID myRoutineForValid() // Need Return .T. or .F. END TEXTBOX The HbQtCommand and his

Re: [Harbour] Re: Method WinId in HbQt

2010-02-27 Thread CarozoDeQuilmes
Ok. Thanks. CdQ On Fri, Feb 26, 2010 at 5:27 PM, Pritpal Bedi wrote: > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, can you add method "winId" of class QMainWindow in _HbQt ? > > > > No, this is Windows only solution. &g

Re: [Harbour] Re: FocusIn and FocusOut in widgets

2010-02-27 Thread CarozoDeQuilmes
I thinks that yes. In HbQtCommand we use it for execute an user action on GotFocus and/or LostFocus Sample: DEFINE TEXTBOX t1 VALUE "Initial Value" ONLOSTFOCUS myRoutineForValid() END TEXTBOX Regards CdQ On Sat, Feb 27, 2010 at 5:21 AM, francesco perillo wrote: > Is this a way to have

Re: [Harbour] Re: FocusIn and FocusOut in widgets

2010-02-26 Thread CarozoDeQuilmes
cusIn" ) } )* * Qt_Events_Connect( pEvents, oTextBox2 , QEvent_FocusOut, {|| oLabel:setText( "focusout" ) } )* * * * oWnd:Show()* * * * s_qApp:exec()* * * * RETURN* Thanks and regards CdQ On Fri, Feb 26, 2010 at 5:39 PM, Pritpal Bedi wrote: > > > CarozoDeQuilmes wrote

Re: [Harbour] Re: Class QLibraryInfo in HbQt

2010-02-26 Thread CarozoDeQuilmes
support plugins > in any manner. > > It is a difficult class to generate dynamically so I failed on many > occassion to develop it. And still I do not know how to? > > Also I do not see the real benefits of this class, taken especially > the LGPL licensing issues. > > Prob

[Harbour] FocusIn and FocusOut in widgets

2010-02-26 Thread CarozoDeQuilmes
Hi Pritpal, are implemented the FocusIn and FocusOut events in widget (not Windows, it work fine for my), for example TextBox ??? Thanks in advance CdQ ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org http://lists.harbou

[Harbour] Class QLibraryInfo in HbQt

2010-02-26 Thread CarozoDeQuilmes
Hi Pritpal, can you add the class QLibraryInfo with the BuildKey method ? Thanks in advance CdQ ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

[Harbour] Method WinId in HbQt

2010-02-26 Thread CarozoDeQuilmes
Hi Pritpal, can you add method "winId" of class QMainWindow in _HbQt ? Thanks in advance CdQ ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

Re: [Harbour] Anyone using hbqt ?

2010-02-25 Thread CarozoDeQuilmes
Hi, sorry by my bad english. Bruno Luciani and I are working in a framework based in minigui sintax that use pure hbqt (very nice Pritpal's work) Our hello world is like this: 1.- Basic #include "hbqtc.ch" Function main() HbQtC_MsgInfo( "Hello World" ) Return .T. 2. Basic + #include "hb

Re: [Harbour] qt slots/events

2010-01-30 Thread CarozoDeQuilmes
Hi, I'm interesting in know more about it, but the thread didn't continued. Regards CdQ On Tue, Jan 26, 2010 at 8:04 AM, Viktor Szakáts wrote: > Hi Pritpal, > > I see this code in hbxbp: > --- > METHOD HbpQtUI:destroy() > LOCAL a_ > > FOR EACH a_ IN ::aSignals > Qt_Slots_disConnect( ::p

Re: Re: [Harbour] hbpqtui class

2010-01-27 Thread CarozoDeQuilmes
+1 HBQT library, the "oficial" Harbour wrapper to accessing GUI multiplatform API CdQ On Wed, Jan 27, 2010 at 2:50 PM, Maurizio la Cecilia wrote: > > > > >All users should see that the URL (f.e.: sf.net/harbour vs. sf.net/hbqt) > >of a project (or library) won't make it less useful / sexy / use

Re: [Harbour] Closing Window in HbQt (Pritpal)

2009-12-25 Thread CarozoDeQuilmes
Many Thanks CdQ On Fri, Dec 25, 2009 at 1:56 PM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, which is the signal o event to capture when I press the close > > button (in the superior right corner of window) in HbQt ??? >

[Harbour] Closing Window in HbQt (Pritpal)

2009-12-25 Thread CarozoDeQuilmes
Hi Pritpal, which is the signal o event to capture when I press the close button (in the superior right corner of window) in HbQt ??? Sorry by my bad english Thanks in advance CdQ ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbo

[Harbour] Question about Harbour/MinGW

2009-12-25 Thread CarozoDeQuilmes
Hi guys, sorry, I have an OFF TOPPIC question, when I try compile and linkedit a lots of prg in incremental mode using a personal batch file (without HBMK2), I receive the followed message from MinGW linkedit process because the amount of object files to linkedit is big: *Fatal: Command arguments t

Re: [Harbour] Little question about HBQT and release of objects

2009-12-21 Thread CarozoDeQuilmes
Many thanks CdQ On Sun, Dec 20, 2009 at 10:14 PM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi, what is the better way for release (or destroy, or free, or delete) a > > widget (or control, or object) in hbqt > > >

[Harbour] Little question about HBQT and release of objects

2009-12-20 Thread CarozoDeQuilmes
Hi, what is the better way for release (or destroy, or free, or delete) a widget (or control, or object) in hbqt obj:close() , obj:destroy() , obj := NIL ?? Thanks in advance CdQ ___ Harbour mailing list (attachment size limit: 40KB) Harbou

[Harbour] hbqt error ~~~~~~~~~~~~

2009-10-23 Thread CarozoDeQuilmes
Hi Pritpal After clear and download the last SVN I get the followed error: gcc -I. -I../../../../../include -Wall -W -O3 -fomit-frame-pointer -march=i586 -mtune=pentiumpro -ID:\qt\4.5.2\include -ID:\qt\4.5.2\include/Qt -ID:\qt\4.5.2\include/QtCore -ID:\qt\4.5.2\include/QtGui -ID:\qt\4.5.2\incl

Re: [Harbour] HbQt and Connect Events

2009-10-21 Thread CarozoDeQuilmes
Hi > > > > Hi Pritpal, after I add the two functions to my project, it run fine > > > > Good. Do you receive the events also ? > > > Yes, I receive the keypress event. > > > I left the two changes into hbqt_slots.cpp indicated in previous mails. > > > > By next commit these will be in SVN. > O

Re: [Harbour] HbQt and Connect Events

2009-10-21 Thread CarozoDeQuilmes
Hi Pritpal, after I add the two functions to my project, it run fine I left the two changes into hbqt_slots.cpp indicated in previous mails. Thanks a lot CdQ On Tue, Oct 20, 2009 at 11:58 PM, Pritpal Bedi wrote: > > Hi > > #include "common.ch" > > STATIC qApp > > INIT PROCEDURE Qt_Start() >

Re: [Harbour] HbQt and Connect Events

2009-10-20 Thread CarozoDeQuilmes
Hi Pritpal It don't work. The sample that I sent in the previous mail, work fine in you test environment ??? hb_out_log Application Internal Error - D:\SILVER~1\TESTS_~1\signals.EXE Terminated at: 2009.10.20 17:00:38 Unrecoverable error 6005: Exception error: Exception Code:C005 Ex

Re: [Harbour] HbQt and Connect Events

2009-10-20 Thread CarozoDeQuilmes
Hi Pritpal, After download the last SVN, I changed the hbqt_slots.cpp and rebuilt hbqt library. Then, I compile my sample and get the same error. Changes hasn't effect, the problem continue I have made a little sample program called signals.prg for test #include "common.ch" STATIC qApp INIT

[Harbour] HbQt and Connect Events

2009-10-20 Thread CarozoDeQuilmes
Hi Pritpal, in the last two months, I stopped my hbqt project while you has correct the memory problem. This week, I get back to work but my project abend when I connect the QMainWindow with events I only recompile the old project (that worked fine) and with the last SVN don't work My connec

[Harbour] xCommand

2009-10-19 Thread CarozoDeQuilmes
Hi guys When I make a new xcommand (or xtranslate), I can put double character ";" to separate sentences, p.e: *#xcommand MYCMD ; =>; myFunction1( <(cName)> ) ;; myFunction2() ;; myFunction3() * The xcommand will translate: * myFunction1( <(cName)> ) ; myFunction2() ; myFunctio

Re: [Harbour] SF.net SVN: harbour-project:[12448] trunk/harbour

2009-09-09 Thread CarozoDeQuilmes
Many thanks !!! It works very fine CdQ On Wed, Sep 9, 2009 at 4:54 AM, wrote: > Revision: 12448 > > http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12448&view=rev > Author: vouchcac > Date: 2009-09-09 07:54:14 + (Wed, 09 Sep 2009) > > Log Message: > --- > 2009-0

[Harbour] Signals in HbQt

2009-09-08 Thread CarozoDeQuilmes
Hi Pritpal, could you add the following signals to HbQt For Class QTableWidget: I need them: - void *cellActivated * ( int *row*, int *column* ) - void *cellChanged

Re: [Harbour] HbQt Static and Dynamic

2009-09-04 Thread CarozoDeQuilmes
; Brgds, > Viktor > > > On 2009.08.31., at 4:00, CarozoDeQuilmes wrote: > > Hi Viktor / Pritpal >> >> I use Dynamic HbQt Library and Static HbQt Library in my project with >> great success, but I need make HbQt Static library and HbQt Dynamic library >> simulta

[Harbour] HbQt Static and Dynamic

2009-08-31 Thread CarozoDeQuilmes
Hi Viktor / Pritpal I use Dynamic HbQt Library and Static HbQt Library in my project with great success, but I need make HbQt Static library and HbQt Dynamic library simultaneously, because I need test any change in HbQt source in both cases I ask: Is possible add some environment var (like HB_QT

Re: [Harbour] SF.net SVN: harbour-project:[12374] trunk/harbour

2009-08-31 Thread CarozoDeQuilmes
Hi Pritpal Congratulations !!! this reworked is a great job ! MT support work very fine in my hbqtcommand project (Open Source in Planned stage) Very Thanks CdQ On Sun, Aug 30, 2009 at 9:35 PM, wrote: > Revision: 12374 > > http://harbour-project.svn.sourceforge.net/harbour-project/?rev

Re: [Harbour] Plugins in hbqts library

2009-08-19 Thread CarozoDeQuilmes
I don't want replace harbour functions I don't want added new features to hbqt I only need that my exe progran linked with Static hbqts has all features that when I link my program with dinamic Link. The way for this goal are Qt Plugins. CdQ On Wed, Aug 19, 2009 at 12:48 PM, Viktor Szakáts wrote

Re: [Harbour] Plugins in hbqts library

2009-08-19 Thread CarozoDeQuilmes
onally prefer using those if possible, rather > than reimplementing them in a QT-specific way. It's IMO > also better for Harbour. > > > Brgds, > Viktor > > On 2009.08.19., at 3:31, CarozoDeQuilmes wrote: > > Hi Viktor, Qt has implemented many plugins very interesting:

Re: [Harbour] Plugins in hbqts library

2009-08-19 Thread CarozoDeQuilmes
s. > > Brgds, > Viktor > > > On 2009.08.19., at 3:31, CarozoDeQuilmes wrote: > > Hi Pritpal, I don't know how use it. I read the Qt Documentation and I >> have see that in a c++ program I only need coded: >> >> #include >> >> Q_IMPORT_PLUGIN

Re: [Harbour] Plugins in hbqts library

2009-08-18 Thread CarozoDeQuilmes
Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, can you add support for plugins in STATIC hbqt library ? > > > > I need it for use JPG image format and ODBC driver. > > > > http://qt.nokia.com/doc/4.5/plugins-howto.html > >

[Harbour] Plugins in hbqts library

2009-08-18 Thread CarozoDeQuilmes
Hi Pritpal, can you add support for plugins in STATIC hbqt library ? I need it for use JPG image format and ODBC driver. http://qt.nokia.com/doc/4.5/plugins-howto.html Thanks in advance CdQ ___ Harbour mailing list Harbour@harbour-project.org http

Re: [Harbour] Signals in HbQt

2009-08-13 Thread CarozoDeQuilmes
Many Thanks CdQ On Thu, Aug 13, 2009 at 2:53 AM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, can you add the followed signal's to HbQt library ? > > > > Revision: 12091 > > > http://harbour-project.sv

[Harbour] Signals in HbQt

2009-08-12 Thread CarozoDeQuilmes
Hi Pritpal, can you add the followed signal's to HbQt library ? For QButtonGroup - - void *buttonClicked * ( int *id* ) - - void *buttonPressed * ( in

[Harbour] Little question about Harbour sintax

2009-08-12 Thread CarozoDeQuilmes
Hi guys, I have a Pointer to Object Question: How can I invoke a method from the Object ??? If I have an Object, I put oObject:method() but I have a pointer ! ???pObject???:method() Can anybody help me ? Thanks in advance CdQ ___ Harbour mailing

Re: [Harbour] New HBQT class (Part 2)

2009-08-05 Thread CarozoDeQuilmes
Ok I need this Class because I want to use the BuildKey and Location methods for obtain info about the Qt Version Regards. CdQ On Wed, Aug 5, 2009 at 3:41 AM, Pritpal Bedi wrote: > > Hello > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, can you add the QLibrar

Re: [Harbour] New HBQT class (Part 3) Last for today !!!!!!!

2009-08-04 Thread CarozoDeQuilmes
Many thanks !!! CdQ On Tue, Aug 4, 2009 at 8:58 PM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, can you add the QFontMetrics and QFontMetricsF classes to > HbQt > > Library > > > > Yesterday I added QFontMetr

[Harbour] New HBQT class (Part 3) Last for today !!!!!!!

2009-08-04 Thread CarozoDeQuilmes
Hi Pritpal, can you add the QFontMetrics and QFontMetricsF classes to HbQt Library Thanks in advance CdQ ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

[Harbour] New HBQT class (Part 2)

2009-08-04 Thread CarozoDeQuilmes
Hi Pritpal, can you add the QLibraryInfo class to HbQt library ??? Thanks in advance CdQ ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

[Harbour] New HBQT class

2009-08-04 Thread CarozoDeQuilmes
Hi Pritpal, can you add the QStyleFactory class to HbQt library ? Thanks in advance CdQ ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

Re: [Harbour] SF.net SVN: harbour-project:[11865] trunk/harbour

2009-07-20 Thread CarozoDeQuilmes
I send it again: oTimer := QTimer():New( QT_PTROF( oWnd ) )oTimer:SetInterval( 1000 ) Qt_Connect_Signal( QT_PTROF( oTimer ) , "timeout()", {|w,l| oLabelTimer:SetText( "Testing Timer HbQt: " + alltrim( str( seconds() ) ) ) } ) oTimer:Start() You can add this sample code to demoqt. This sample cod

Re: [Harbour] SF.net SVN: harbour-project:[11865] trunk/harbour

2009-07-20 Thread CarozoDeQuilmes
Hi Pritpal, it work very fine ! Many Thanks !!! CdQ On Mon, Jul 20, 2009 at 12:47 PM, wrote: > Revision: 11865 > > http://harbour-project.svn.sourceforge.net/harbour-project/?rev=11865&view=rev > Author: vouchcac > Date: 2009-07-20 15:47:28 + (Mon, 20 Jul 2009) > > Log Message

Re: [Harbour] HbQt signal

2009-07-20 Thread CarozoDeQuilmes
Thanks !!! (short mode, thanks Massimo ) CdQ On Mon, Jul 20, 2009 at 12:04 PM, Pritpal Bedi wrote: > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, the code in the previous mail was only for show an > > implementation, not for real use. > > >

Re: [Harbour] HbQt signal

2009-07-20 Thread CarozoDeQuilmes
lt and same bad english, so try reduce all post > like for request a paypent to a english customer using only: "Please pay" > I undestrand is a bad way but hope in intelligences of reader > > > 2009/7/20 CarozoDeQuilmes > > Hi Pritpal, the code in the previous mail w

Re: [Harbour] HbQt signal

2009-07-20 Thread CarozoDeQuilmes
Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, can you add the "timeout()" signal for use the QTimer class. > >oTimer := QTimer():New( QT_PTROF( oWnd ) ) > >oTimer:SetInterval( 1000 ) > >Qt_Connect_Signal( QT_PTROF(

[Harbour] HbQt signal

2009-07-19 Thread CarozoDeQuilmes
Hi Pritpal, can you add the "timeout()" signal for use the QTimer class. oTimer := QTimer():New( QT_PTROF( oWnd ) ) oTimer:SetInterval( 1000 ) Qt_Connect_Signal( QT_PTROF( oTimer ) , "timeout()", {|w,l| oLabelTimer:SetText( "Testing Timer HbQt: " + alltrim( str( seconds() ) ) ) } ) oTim

Re: [Harbour] HbQt Class

2009-07-19 Thread CarozoDeQuilmes
Thanks for this grat work Thanks (again) CdQ On Sun, Jul 19, 2009 at 6:01 PM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, can you add the followed Classes to HbQt library ???: > > > > QProcess > > QButtonGroup &

Re: [Harbour] HbQt processEvents of QAplication

2009-07-19 Thread CarozoDeQuilmes
Ok, I have checked in QApplication class and I didn't check in QCoreApplication Sorry by my mistake Thanks CdQ On Sun, Jul 19, 2009 at 6:03 PM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, can you add the member (method) &qu

[Harbour] HbQt processEvents of QAplication

2009-07-19 Thread CarozoDeQuilmes
Hi Pritpal, can you add the member (method) "processEvents" to QApplication class ??? Thanks in advance CdQ ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

[Harbour] HbQt Class

2009-07-19 Thread CarozoDeQuilmes
Hi Pritpal, can you add the followed Classes to HbQt library ???: QProcess QButtonGroup QGroupBox Thanks in advance CdQ ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

Re: [Harbour] Problem while make Harbour

2009-07-12 Thread CarozoDeQuilmes
Thanks !!! CdQ On Sat, Jul 11, 2009 at 11:31 AM, Viktor Szakáts wrote: > You have to rebuild + install hbqt first. > > Brgds, > Viktor > > > On 2009.07.11., at 3:14, CarozoDeQuilmes wrote: > > Hi, when I try make Harbour with last SVN (11714), I gets the next War

[Harbour] Problem while make Harbour

2009-07-11 Thread CarozoDeQuilmes
Hi, when I try make Harbour with last SVN (11714), I gets the next Warning that stop the build process. E:/BUILD/HarbourMinGW/config/mingw32-make -C hbxbp mingw32-make[2]: Entering directory `E:/BUILD/HarbourMinGW/contrib/hbxbp' mingw32-make[3]: Entering directory `E:/BUILD/HarbourMinGW/contrib/hbx

Re: [Harbour] SF.net SVN: harbour-project:[11610] trunk/harbour

2009-07-02 Thread CarozoDeQuilmes
Hi Pritpal, for example, in my case, I'm silent because can't write very good in english, but I read all about hbqt and xbp. Great work Thanks and regards CdQ On Thu, Jul 2, 2009 at 5:25 PM, Pritpal Bedi wrote: > > Hello Angel > > Angel Pais wrote: > > > > Just a word to encourage you... > > Yo

[Harbour] HbQt, Harbour and MT

2009-06-26 Thread CarozoDeQuilmes
Hi guys, sorry by my bad english. I have a little question about HbQt and Harbour in MT mode... The question is: when I start a new thread and I redefine an existing PUBLIC var, in diferents places of my seconds thread, I have diferents values. Look at sample for ilustrate the problem (this

[Harbour] Error building HbQt

2009-06-25 Thread CarozoDeQuilmes
Hi Priptal, after download the last SVN (revision 11527), I can't build hbqt library d:\qt\qt\include/QtGui/../../src/gui/text/qtextformat.h:349: warning: 'QDataStre am& operator>>(QDataStream&, QTextFormat&)' redeclared without dllimport attribu te: previous dllimport ignored In file included fro

Re: [Harbour] SF.net SVN: harbour-project:[11242] trunk/harbour

2009-06-06 Thread CarozoDeQuilmes
, 2009 at 7:49 PM, Viktor Szakáts wrote: > Hi Carozo, > > Very good, I saw them. Can you create compilable .prg(s) and send it as > attachment? I'd like to upload them to the SVN. > > Brgds, > Viktor > > On Sun, Jun 7, 2009 at 12:32 AM, > CarozoDeQuilmes wrote:

Re: [Harbour] SF.net SVN: harbour-project:[11242] trunk/harbour

2009-06-06 Thread CarozoDeQuilmes
Hi Viktor, I'm sharing samples code in others mails. Regards CdQ On Sat, Jun 6, 2009 at 11:37 AM, Szakáts Viktor wrote: > Viktor Szakáts wrote: >> >>> >>> Great! >>> >>> What is now our coverage of all QT classes? >>> >>> >> QT has 650+ classes. >> > > Impressive amount. > > But I am picking by

[Harbour] HbQt: Control Source Contrib (Tab)

2009-06-06 Thread CarozoDeQuilmes
Control TAB oTabBar := QTabBar():New( QT_PTROF( oWnd ) ) oTabBar:AddTab( "Page 1" ) oTabBar:SetTabToolTip( 1 , "tooltip Page 1" ) oTabBar:AddTab( "Page 2" ) oTabBar:SetTabToolTip( 2 , "tooltip Page 2" ) oTabBar:SetDrawBase( .T. ) oTabBar:Move( 370 , 150 ) oTabBar:ReSize( 200

[Harbour] HbQt: Control Source Contrib (ProgressBar)

2009-06-06 Thread CarozoDeQuilmes
ProgressBar oProgressBar := QProgressBar():New( QT_PTROF( oWnd ) ) oProgressBar:SetRange( 1, 1500 ) oProgressBar:Setvalue( 500 ) oProgressBar:Move( 50 , 200 ) oProgressBar:ReSize( 200 , 30 ) oProgressBar:Show() CdQ -- QAC (I want something comfortable !!!) - Incremental Compil

[Harbour] HbQt: Control Source Contrib (CheckBox)

2009-06-06 Thread CarozoDeQuilmes
CheckBox oCheckBox := QCheckBox():New( QT_PTROF( oWnd ) ) oCheckBox:SetText( "Testing CheckBox HbQt" ) oCheckBox:Move( 50 ,150 ) oCheckBox:ReSize( 200,30 ) oCheckBox:Show() CdQ -- QAC (I want something comfortable !!!) - Incremental Compilation with all MiniGUIs versions QAC (Quie

[Harbour] HbQt: Control Source Contrib (Label)

2009-06-06 Thread CarozoDeQuilmes
Label with rich Text oLabel := QLabel():New( QT_PTROF( oWnd ) ) oLabel:SetTextFormat(1) //0 text plain 1 RichText oLabel:SetText( "Testing Label in HbQt" ) oLabel:ReSize( 300,30 ) oLabel:Move( 50 , 50 ) oLabel:Show() Regards CdQ -- QAC (I want something comfortable !!!) - Inc

Re: [Harbour] Work with HBQT

2009-06-06 Thread CarozoDeQuilmes
Hi Rossine I compile my programs with this bat: del log.txt set HARBOURDIR=d:\buildok\harbourmingw set MINGWDIR=d:\build\mingw set QTDIR=d:\qt\qt :: prg -> c %HARBOURDIR%\bin\harbour.exe -n -w -I..\include -I%HARBOURDIR%/include %1.prg >> log.txt :: c -> o %MINGWDIR%\bin\g++ -c -O2 -frtti -fexc

Re: [Harbour] Work with HBQT

2009-06-06 Thread CarozoDeQuilmes
Hi Massimo, how I build my program with static version instead of the dynamic version???. When I compile my program with QT widgets, by default it make my program with dynamic access to QT functions Thanks CdQ On Sat, Jun 6, 2009 at 11:47 AM, Massimo Belgrano wrote: > yoy can use unified windows

Re: [Harbour] SF.net SVN: harbour-project:[11237] trunk/harbour

2009-06-05 Thread CarozoDeQuilmes
Hi Pritpal, many thanks for this great work !!! Regards CdQ On Fri, Jun 5, 2009 at 10:55 PM, wrote: > Revision: 11237 > > http://harbour-project.svn.sourceforge.net/harbour-project/?rev=11237&view=rev > Author: vouchcac > Date: 2009-06-06 01:55:40 + (Sat, 06 Jun 2009) > > Log Message:

Re: [Harbour] SF.net SVN: harbour-project:[11205] trunk/harbour

2009-06-04 Thread CarozoDeQuilmes
Hi, you are right ! Adding the "setStyle" method for background color it works fine now Thanks and Regards CdQ On Thu, Jun 4, 2009 at 10:25 PM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > It works fine for Foreground GridItem but it do

Re: [Harbour] SF.net SVN: harbour-project:[11205] trunk/harbour

2009-06-04 Thread CarozoDeQuilmes
Hi Pritpal !!! many thanks for this class. It works fine for Foreground GridItem but it don't works for Background GridItem. Look this little sample: oGrid := QTableWidget():new( QT_PTROF( oWnd ) ) oGrid:setRowCount( 2 ) oGrid:setColumnCount( 4 ) // oBrushBackItem0x0 := QBrush():n

Re: RE:[Harbour] Set Color Foreground and Background in TQLabel and others ?

2009-06-03 Thread CarozoDeQuilmes
No Problem could you complete the Brush class? I need add color font to GridWidgetItem: setForeground( pBrush ) Thanks and Regards CdQ On Wed, Jun 3, 2009 at 6:32 PM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi, Pritpal, any news about th

Re: RE:[Harbour] Set Color Foreground and Background in TQLabel and others ?

2009-06-03 Thread CarozoDeQuilmes
Hi, Pritpal, any news about this ??? Thanks CdQ On Wed, May 27, 2009 at 2:03 PM, Pritpal Bedi wrote: > > Hello Bruno > > > Bruno Luciani wrote: > > > > But in QT Exist 2 classes that I don' t find in HBQT > > > > Qcolor and QPalette that controls colors in the majority of controls > > > > In

Re: [Harbour] Basic question

2009-06-03 Thread CarozoDeQuilmes
Ok, thanks !!! CdQ On Wed, Jun 3, 2009 at 3:08 PM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > Hi Pritpal, thanks, it run fine for me ! but.. (always have a but > > ;-)) how create an object from pointer to object ??? > > >

Re: [Harbour] Basic question

2009-06-03 Thread CarozoDeQuilmes
rds CdQ On Wed, Jun 3, 2009 at 12:30 AM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > > The screenGeometry() method of class QDesktopWidget return a pointer > value > > to an QRect object > > > > Question: how I call the method widt

[Harbour] Basic question

2009-06-02 Thread CarozoDeQuilmes
Hi, sorry by my bad english! The screenGeometry() method of class QDesktopWidget return a pointer value to an QRect object Question: how I call the method width() from QRect object (I have only a pointer to QRect object, I'm not have an QRect object!) Sample: Local oDesktop , pRect , nWidth oDes

Re: [Harbour] PushButton and QT

2009-05-21 Thread CarozoDeQuilmes
Thanks !!! CdQ On Thu, May 21, 2009 at 10:28 PM, Pritpal Bedi wrote: > > Hi > > > CarozoDeQuilmes wrote: > > > >oWnd := QMainWindow():new() > > .. > > > >oButton := QPushButton():New( QT_PTROF( oWnd ) ) > >oButton:setTe

Re: [Harbour] Language OS

2009-05-21 Thread CarozoDeQuilmes
Thanks CdQ On Thu, May 21, 2009 at 8:29 PM, Viktor Szakáts wrote: > HB_USERLANG() > > Brgds, > Viktor > > On Thu, May 21, 2009 at 11:21 PM, CarozoDeQuilmes > wrote: > > Hi, is there any function in Harbour to get the OS language? (english > >

[Harbour] Language OS

2009-05-21 Thread CarozoDeQuilmes
Hi, is there any function in Harbour to get the OS language? (english (en-US), portuguese (pt-BR), etc) Thanks and Regards CdQ -- QAC (I want something comfortable !!!) - Incremental Compilation with all MiniGUIs versions QAC (Quiero Algo Cómodo !!!) - Compilación Incremental con todas las versi

  1   2   >