2009-12-31 19:07 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* INSTALL
    + Added QT MinGW version requirement information.

  * contrib/rddads/ads1.c
    * Formatting.
This commit is contained in:
Viktor Szakats
2009-12-31 18:08:20 +00:00
parent 2abfd33b8e
commit 333c892db2
3 changed files with 17 additions and 8 deletions

View File

@@ -17,6 +17,13 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-12-31 19:07 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* INSTALL
+ Added QT MinGW version requirement information.
* contrib/rddads/ads1.c
* Formatting.
2009-12-31 08:19 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
+ contrib/hbide/resources/themes.ui
+ Added skeleton .ui file for editor themes management.
@@ -84,14 +91,14 @@
* contrib/hbqt/qtgui/TQSyntaxHighlighter.prg
* contrib/hbqt/qth/QSyntaxHighlighter.qth
+ Implemented syntax highlighting mechanism at PRG level.
* contrib/hbide/hbide.hbp
* contrib/hbide/ideeditor.prg
* contrib/hbide/idemisc.prg
+ contrib/hbide/iderequests.prg
* contrib/hbide/idestylesheets.prg
+ Showcased syntax highlighting in action under prg control.
This implementation offer colored tokens, bold, italic,
This implementation offer colored tokens, bold, italic,
underlined fonts. Please test.
TODO: User interface to build new themes besides HBIDE defined ones.
@@ -103,12 +110,12 @@
* Parenthesis and braces - (), {}, ...
* Functions in general - DBCreate(), ...
* Strings - "This is text", 'and this also'
* Comments - // Comment, /* Useful Routine */, ..
* Comments - // Comment, /* Useful Routine */, ..
* Numeric constants - 123, 212.33,...
* Background color
The attributes will be ( in the order shown below )
aRGB = { 127,213,123 }
aRGB = { 127,213,123 }
lItalic = .T. | .F.
lBold = .T. | .F.
lUnderline = = .T. | .F.
@@ -194,7 +201,7 @@
2009-12-30 10:35 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbxbp/xbpmenubar.prg
! Removed default style-sheet application which has to be
! Removed default style-sheet application which has to be
done at .prg level with oXbp:setStyleSheet().
* contrib/hbxbp/xbptoolbar.prg
@@ -226,7 +233,7 @@
* contrib/hbide/idemisc.prg
+ Implemented double-click on any error/warning compiler output.
This opens or brings forward source file and cursor stays at the
offending source line.
offending source line.
2009-12-28 18:54 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/idedocks.prg

View File

@@ -1276,6 +1276,10 @@ HARBOUR
http://get.qt.nokia.com/qt/source/qt-win-opensource-4.5.3-mingw.exe
How to create static and MSVC builds:
http://doc.trolltech.com/4.5/deployment-windows.html
NOTES:
- QT 4.5.x requires MinGW builds with SJLJ stack frame unwinding.
(This is the recommended QT version to use with Harbour.)
- QT 4.6.x requires MinGW builds with DWARF-2 stack frame unwinding.
HB_WITH_SQLITE3 - sqlite3 [multiplatform, free, open-source]
http://www.sqlite.org/
HB_WITH_WATT - Watt-32 (TCP/IP sockets) [dos, free, open-source]

View File

@@ -626,9 +626,7 @@ static HB_ERRCODE adsScopeSet( ADSAREAP pArea, ADSHANDLE hOrder, USHORT nScope,
return HB_SUCCESS;
}
else
{
return HB_FAILURE;
}
}
static double adsGetRelPos( ADSAREAP pArea, ADSHANDLE hOrder )