Commit Graph

17661 Commits

Author SHA1 Message Date
Viktor Szakats
c6bfd9615a 2012-09-14 16:32 UTC+0200 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/hbmk2.prg
    ! keep -trace mode turned off in --hbinfo mode, otherwise 
      some plugins (f.e. HBQT plugin) might litter the output 
      with their own messages, making the JSON output corrupt.
      Thus problem might have caused that dependencies were 
      wrongly detected when HBQT was involved in the 
      dependency tree. Thanks to Lautaro for the report.
    ! further steps made that stray output is minimized in 
      --hbinfo mode. (though some raw plugin API call may 
      still generate output, it's yet to be done, and it will 
      API compatibility breakage in few calls)
2012-09-14 14:38:00 +00:00
Viktor Szakats
7737ccef4e 2012-09-14 15:43 UTC+0200 Viktor Szakats (harbour syenar.net)
* INSTALL
    ! correction to prev for x64 mode on 64-bit OS
2012-09-14 13:44:43 +00:00
Viktor Szakats
bf8305fe00 2012-09-14 09:54 UTC+0200 Viktor Szakats (harbour syenar.net)
* config/global.mk
  * include/hbsetup.h
  * INSTALL
  * utils/hbmk2/hbmk2.prg
    + added bits (docs, version autodetect, etc) for MS Visual Studio 2012
2012-09-14 07:55:58 +00:00
Pritpal Bedi
d6dd12934d 2012-09-13 14:27 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbxbp/toolbar.prg
    + Added: to send a QIcon() along the text for a toolbar button.

  * contrib/hbxbp/treeview.prg
    ! Minor. :setCaption() was not setting :caption value.
2012-09-13 21:30:15 +00:00
Przemyslaw Czerpak
62f1c44f96 2012-09-13 16:02 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/rtl/hbbffnc.c
  * harbour/include/harbour.hbx
    + added new functions for BlowFish encryption using CFB (cipher feedback)
      mode instead of ECB (electronic codebook) mode with ANSI X.923 padding:
         hb_blowfishEncrypt_CFB( <cBfKey>, <cText> [, <cInitSeed> ] )
                  -> <cCipher> | NIL
            return string encrypted using CFB (cipher feedback) mode or
            NIL on error (wrong parameters)
         hb_blowfishDecrypt_CFB( <cBfKey>, <cCipher> [, <cInitSeed> ] )
                  -> <cText> | NIL
            return string decrypted using CFB (cipher feedback) mode or
            NIL on error (wrong parameters),

  * harbour/src/rtl/Makefile
  + harbour/src/rtl/hbmd5enc.c
  * harbour/include/harbour.hbx
    + added new functions for MD5 encryption/decryption
      using CFB (cipher feedback) mode:
         hb_MD5Encrypt( <cText>, <cPasswd> ) -> <cCipher>
         hb_MD5Decrypt( <cCipher>, <cPasswd> ] ) -> <cText>
2012-09-13 14:02:52 +00:00
Przemyslaw Czerpak
64e33bd884 2012-09-13 10:06 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/include/hbpcode.h
    ! force PCODEs enumeration from zero - some compilers may
      use different value what can cause problems with casting to bytes

  * harbour/contrib/xhb/regexrpl.prg
    ! fixed hb_regexReplace() - hack for older HB_REGEXALL() code
      could cause RTE
2012-09-13 08:06:40 +00:00
Pritpal Bedi
791a0ce17a 2012-09-12 14:13 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/gtwvg.h
    ! Fixed: casting.

  * contrib/gtwvg/wvgwin.c
    + Added: WVG_POSTMESSAGE( hWnd, nMsg, wParam, lParam ).
2012-09-12 21:16:34 +00:00
Pritpal Bedi
052058daf1 2012-09-12 11:47 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/gtwvg.c
  * contrib/gtwvg/gtwvg.h
    ! Pacified warnings correctly.
2012-09-12 18:49:18 +00:00
Pritpal Bedi
3f74acd4f3 2012-09-12 07:33 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/crt.prg
    % Cleanup.

  * contrib/gtwvg/gtwvg.c
  * contrib/gtwvg/gtwvg.h
    ! Pacified warnings.
2012-09-12 14:35:37 +00:00
Viktor Szakats
25476a6a41 2012-09-12 13:02 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/hbexpat/3rd/expat/expat.dif
  * contrib/hbexpat/3rd/expat/expat.h
  * contrib/hbexpat/3rd/expat/expat.hbp
  * contrib/hbexpat/3rd/expat/xmlparse.c
  * contrib/hbexpat/3rd/expat/xmlrole.c
  * contrib/hbexpat/3rd/expat/xmltok_i.c
  * contrib/hbexpat/3rd/expat/xmltok.c
    + updated to 2.1.0 (from 2.0.1) using 3rdpatch
    ; fallouts possible on some platforms

  * contrib/hbexpat/core.c
  * contrib/hbexpat/hbexpat.hbx
    + added wrapper for (new in 2.1.0) XML_SETHASHSALT() function
2012-09-12 11:04:42 +00:00
Viktor Szakats
63e01aaabd 2012-09-12 12:51 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/hbexpat/core.c
  * contrib/hbwin/win_misc.c
  * contrib/hbzebra/qrcode.c
    ! pacified some MSVC warnings (untested with MSVS 2012)
2012-09-12 10:53:12 +00:00
Przemyslaw Czerpak
c03dbf4af9 2012-09-12 11:51 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/include/hbmacro.h
  * harbour/src/vm/macro.c
    % added static function hb_macroClear() and cleand hb_macroDelete() code
    - removed not longer necessary HB_MACRO_DEALLOCATE macro

  * harbour/src/rdd/hsx/hsx.c
    * use hb_vmDestroyBlockOrMacro()

  * harbour/src/vm/hvm.c
    * allow to execute hb_vmThreadState() by threads without HVM stack

  * harbour/src/3rd/zlib/gzlib.c
  * harbour/src/3rd/zlib/zlib.dif
    * updated for Digital Mars builds builds

  * harbour/src/rtl/gtwvt/gtwvt.c
    * pacified warning
2012-09-12 09:51:24 +00:00
Pritpal Bedi
d69236b958 2012-09-11 16:27 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/hbgtwvg.ch
    + Added: constants HB_GTE_CREATED and HB_GTE_CLOSED.

  * contrib/gtwvg/gtwvg.c
  * contrib/gtwvg/gtwvg.h
    + Implemented: two more events fired at PRG code, one when window 
       is created and another when window is closed. The events supply 
       a two element array: 1. Window Handle No 2. Thread Number.
       These events will greatly help develop a rewarding GUI applns.

  * contrib/gtwvg/parthdlr.prg
  * contrib/gtwvg/crt.prg
    + Added: slot :notifierBlock( ... ) SETGET which accepts a block 
       from the application code which pass on designated events back.
2012-09-11 23:37:10 +00:00
Pritpal Bedi
925c99dfed 2012-09-11 13:19 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/hbgtwvg.ch
     ! Fixed: wrong contant values for  HB_GTS_SW_* constants.

   * contrib/hbqt/hbmk2_qt.hb
     + Added: code to set right C++ callable function when a dock widget 
        was added to QMainWindow object.
2012-09-11 20:23:33 +00:00
Viktor Szakats
e1a3aaff59 2012-09-11 22:04 UTC+0200 Viktor Szakats (harbour syenar.net)
+ doc/en/hbflock.txt
  + tests/tflock.prg
    + Documentation and test code for Harbour file locking functions
      Contributed by Doug.

  * tests/tflock.prg
    * Code fixed to build in -w3 mode and simplified.

  * contrib/hbformat/hbfmtcls.prg
    ! Fixed to indent OTHERWISE statement properly
    ! Fixed to not pad '++', '--' and '->' operators
    ! Fixed not uppercasing FOR/NEXT keywords
    ! Fixed not recognizing 'CREATE CLASS' as class declaration statement
    ! Fixed to not indent '//' comments
    ! Fixed to not add space between characters of codeblock operator '{|'
    ; Patches by Maurizio la Cecilia.

  * contrib/hbformat/hbfmtcls.prg
    % minor rework to not avoid using '=' (SET EXACT dependent)
      operator and OTHERWISE/ELSE to be handled with adding
      exception cases. Maurizio, please verify me.

  * tests/db_brows.prg
  * tests/testcdx.prg
    * modified after testing new hbformat with them
2012-09-11 20:15:27 +00:00
Przemyslaw Czerpak
2ae8ffd909 2012-09-11 21:22 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/utils/hbmk2/hbmk2.prg
  * harbour/config/win/bcc.mk
    + added support for BCC6.5 - please verify me.
    ; unicows library does not support BCC 6.5. BCC users who want
      to compile Harbour should delete harbour/lib/3rd/win/bcc directory.
      TODO: add build time option to disable unicows in windows harbour
            builds
2012-09-11 19:22:15 +00:00
Pritpal Bedi
5fb118b26c 2012-09-10 09:34 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/main.prg
    ! Fixed: crash when IdeDBU or PRG mode was invoked.
       Reported by Itamar, thanks.
2012-09-10 16:37:30 +00:00
Pritpal Bedi
53a332e780 ! Missed from prev commit. 2012-09-10 16:27:58 +00:00
Pritpal Bedi
c1bdd7cf1f 2012-09-10 09:24 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/saveload.prg
    ! Fixed: a bug where wrong parent to QInputDialog() was sent.
       Reported by Massimo, thanks.
2012-09-10 16:26:11 +00:00
Pritpal Bedi
1c8ffbd1f3 2012-09-09 16:16 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/browse.prg
    ! Fixed: a bug where wrong parent to QInputDialog() was sent.
       Reported by Maurizio, thanks.
2012-09-09 23:18:27 +00:00
Pritpal Bedi
8ef4b75993 2012-09-07 18:24 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbqt/tests/qtwvg.hbp
  + contrib/hbqt/tests/qtwvg.prg
    + Added: demonstration code to exploit the power of Qt with existing 
       GTWVT/GTWVG based applications. This demo opens a HbQt dialog 
       from where n number of GTWVG dialogs can be opened. This protocol
       requires that your applications are MT based, at least for the 
       main application window to appear. Examine the code and adopt it 
       to your own advantage. This protocol opens up a vast horizon 
       for our console applications, believe me.
2012-09-09 22:42:54 +00:00
Przemyslaw Czerpak
8cf8de75c0 2012-09-09 18:50 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/config/dos/watcom.mk
  * harbour/utils/hbmk2/hbmk2.prg
    ! cleaned and synced optimization flags which interacts with calling
      convention

  * harbour/src/3rd/zlib/zconf.h
    ! added missing export attribute in OS2 dll builds

  * harbour/src/3rd/zlib/zlib.dif
    * rediffed

  * harbour/src/compiler/hbmain.c
    * minor modification to pacify warning generated by some compilers

  * harbour/src/rtl/gete.c
    ! added missing #include "hbapicdp.h" in DOS and OS2 builds

  * harbour/src/rtl/gtdos/gtdos.c
    ! fixed typo

  * harbour/contrib/3rd/sqlite3/sqlite3.hbp
    ! set SQLITE_OS_OTHER in Watcom OS2 builds - it does not support
      PTHREAD and some OS extensions used in default SQLite builds
2012-09-09 16:51:37 +00:00
Przemyslaw Czerpak
d8bae395d3 2012-09-09 14:02 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/rdd/workarea.c
    ! set FOUND flag in child workareas when non index but
      record number relation is used - Clipper compatible behavior.
      Many thanks to Davor Siklic for information about the problem
      and self contain code example.
2012-09-09 12:02:25 +00:00
Pritpal Bedi
a0b380fb84 2012-09-07 18:24 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/crt.prg
    ! A Nasty Fix. Was not releasing children snd hence the memory.

  * contrib/hbide/actions.prg
  * contrib/hbide/docks.prg
    + Added: separate toolbar for "Files" actions.
2012-09-08 01:29:16 +00:00
Pritpal Bedi
b55e77a8da 2012-09-07 09:24 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/docks.prg
  * contrib/hbide/stylesheets.prg
    + Applied: some visual effects on docking widgets.
2012-09-07 16:26:21 +00:00
Viktor Szakats
721e5ef3ed 2012-09-07 10:17 UTC+0200 Viktor Szakats (harbour syenar.net)
- extras/hbapollo
    - deleted. Too much effort and size for nothing, it was 
      untested, and strictly Windows-only for a dying product.
      RDDADS is superior replacement.
2012-09-07 08:19:38 +00:00
Pritpal Bedi
d17c541629 2012-09-05 07:31 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/updown_v.ui
    % Reduced: the size of icons to match rest. Now look of toolbars
       is more professional.
2012-09-06 02:33:26 +00:00
Viktor Szakats
cb8e9dfc45 2012-09-05 09:29 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/rddads/adsx.c
    ! fixed wrong cast causing compiler warning
2012-09-05 07:30:27 +00:00
Viktor Szakats
04b92d3824 2012-09-04 22:05 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/3rd/sqlite3/sqlite3.*
  * contrib/3rd/sqlite3/sqlite3.hbp
    * update to 3.7.14

  * contrib/hbide/projectwizard.prg
    ! referring to .hbc files as '.hbc files' not 'Hbc files'
    ; TOFIX: this source is a total mess, replicating parts of
             hbmk2 options in a rigid and limited, fully incompatible
             with hbmk2, whilst hbmk2 supports these out of the box.
             It also contains references to an arbitrary selection of
             non-Harbour SVN project and payware products. Even after 
             reporting it on the list and received the answer that 
             it will get a meaning later. Well, it didn't.
2012-09-04 20:09:56 +00:00
Viktor Szakats
c027764c85 2012-09-04 21:57 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/rddads/rddads.h
    + autodetection for ADS client v11.00
2012-09-04 19:58:57 +00:00
Przemyslaw Czerpak
576ee9e052 2012-09-04 18:49 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/rtl/fstemp.c
    ! fixed GCC PP rules - thanks to Teo Fonrouge for the information
      about the problem
2012-09-04 16:49:45 +00:00
Przemyslaw Czerpak
68d92676c1 2012-09-04 14:47 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/debug/debugger.prg
  * harbour/src/debug/dbgwa.prg
  * harbour/src/debug/dbgtarr.prg
  * harbour/src/debug/tbrwtext.prg
  * harbour/src/debug/dbgthsh.prg
    * minor formatting
    % use: hb_ADel( <aVal>, <nPos>, .t. )
      instead of: ADel( <aVal>, <nPos> ); ASize( <aVal>, Len( <aVal> ) - 1 )
    ! fixed absolute positioning in HBBrwText class - it was implemented
      as repeated line skipping from the top causing incredible fatal
      performance when larger source files are presented.
2012-09-04 12:47:22 +00:00
Pritpal Bedi
95d10dc3c7 2012-09-03 22:03 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/actions.prg
  * contrib/hbide/docks.prg
  * contrib/hbide/edit.prg
  * contrib/hbide/editor.prg
  * contrib/hbide/hbqtoolbar.prg
  * contrib/hbide/main.prg
  * contrib/hbide/misc.prg
  * contrib/hbide/object.prg
  * contrib/hbide/saveload.prg
    % Normailization of code parts. Toolbars management transferred
       from different sources to actions.prg.
    + Implemented: two more toolbars separating actions from main 
       into logical chunks. This facilitates better management and 
       placement of toolbars by user choice. Now these are the 
       available toolbars:
         Main
         Ide Parts
         Ide Project
         Docking Widgets
    % Changed: dimensions of the toolbar icons. ow all toolbars have 
       the same height/width of icons and are made sleak to give 
       professional look.
2012-09-04 05:13:27 +00:00
Pritpal Bedi
b6f07d06bc 2012-09-03 18:21 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/editor.prg
    ! Fix: to r18056, a nasty one.
2012-09-04 01:23:04 +00:00
Pritpal Bedi
283d49553d 2012-09-03 17:01 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/saveload.prg
    % Changed: the behavior of active item in dictionaries list.
       Now it is the most recent visited or first if first time.
       Pointed out by Maurizio.

  * contrib/hbqt/qtgui/hbqt_hbqplaintextedit.cpp
    + Implemented: auto activation of column-selection mode if 
       selction is made with mouse with ALT key is kept pressed.
       A request by Maurizio, which btw, seems to be logical.
2012-09-04 00:07:15 +00:00
Pritpal Bedi
8b4250514d 2012-09-03 15:35 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/editor.prg
  * contrib/hbide/misc.prg
  * contrib/hbide/saveload.prg
  * contrib/hbide/setup.ui
    % Changed: naming of <Setup><Font> => <Miscellaneous>
    % Restored: the source extension on the editor tabs by default.
    + Implemented: to toggle source extension to be removed from 
       source tabs to get more sources viewable at any given time.
         Activation: <Setup><HbIDE Setup><Miscellaneous><Remove File Extension>
                     This is not in-place activable, restart of HbIDE is required.
    + Implemented: source tabs having closable button. 
         Activation: <Setup><HbIDE Setup><Miscellaneous><Add Closing Button>
                     This is not in-place activable, restart of HbIDE is required.
                     This is not the default, needs to be activated.
2012-09-03 22:44:00 +00:00
Pritpal Bedi
80a161c152 2012-09-03 10:05 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/main.prg
  * contrib/hbxbp/listbox.prg
    % Changed: XbpListBox():addItem( cItem, qIcon ) => :addItem( cItem )
       to confirm to Xbase++ calling arguments.
    + Added: XbpListBox():setIcon( nIndex, oIcon ) to attach image 
       to a listbox item. This is Harbour extension and is documented
       in the sources.
2012-09-03 17:10:45 +00:00
Pritpal Bedi
32153bb143 2012-09-03 09:45 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/editor.prg
  * contrib/hbide/main.prg
  * contrib/hbide/sources.prg
    ! Fixed: bug in Opening a source from main menu where the source 
       was being distributed on another panel (untitled) which should 
       not have happened. Reported by Francessco Perillo, thanks.
2012-09-03 16:49:14 +00:00
Przemyslaw Czerpak
745aa1eac2 2012-09-03 11:57 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/rtl/chruni.c
  * harbour/include/harbour.hbx
    + added new functions to operate on unicode and binary strings.
      They work like hb_At() but are CP independent.
         hb_UAt( <cSubString>, <cString>, [<nFrom>], [<nTo>] ) -> <nAt>
         hb_BAt( <cSubString>, <cString>, [<nFrom>], [<nTo>] ) -> <nAt>
2012-09-03 09:57:48 +00:00
Viktor Szakats
3fd295d332 2012-09-03 08:05 UTC+0200 Viktor Szakats (harbour syenar.net)
* ChangeLog
    ! typo
2012-09-03 06:06:04 +00:00
Viktor Szakats
38e8df7f61 2012-09-02 00:47 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/make.hb
    * minor formatting to be in sync with rest of code
2012-09-01 22:48:30 +00:00
Pritpal Bedi
7c16a7c3eb 2012-09-01 02:22 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/functions.prg
  * contrib/hbide/uisrcmanager.prg
    ! Fixed: QBrush, a non-QOject derived object was being applied
       :setObjectName() method. There may be few more, but will 
       will be implemented if those are actually used under 
       Qt Designer properties.
2012-09-01 09:27:05 +00:00
Pritpal Bedi
19697ef732 2012-08-31 17:42 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbide/resources/confgtoolbars.png
  * contrib/hbide/hbide.qrc
    + Added: new image.
  * contrib/hbxbp/toolbar.prg
  * contrib/hbide/actions.prg
  * contrib/hbide/docks.prg
    % Rearranged: <Main Menu><View> with organized sub-menues.
       This covers the long-standing demand from users.
2012-09-01 00:49:06 +00:00
Pritpal Bedi
aed1fe0897 2012-08-31 15:43 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/browse.prg
  * contrib/hbide/docks.prg
  * contrib/hbide/hbide.ch
  * contrib/hbide/hbide.hbp
  * contrib/hbide/hbqreportsmanager.prg
  * contrib/hbide/main.prg
  * contrib/hbide/object.prg
  + contrib/hbide/parts.prg
    + Separated: the code to manage IdePARTS effectively and efficiently,
       in anticipation that many more extensions will be added in future 
       and also some existing components qualifies to fall under the
       domain of this protocol.
2012-08-31 22:51:06 +00:00
Pritpal Bedi
93a510f745 2012-08-31 09:17 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/uisrcmanager.prg
    ! Fixed: error pertaining to QPalette() reported by Maurizio, thanks.
2012-08-31 16:19:21 +00:00
Viktor Szakats
062dcfb5da 2012-08-31 05:35 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/hbide/resources/align_at.png
  * contrib/hbide/resources/browser.png
  * contrib/hbide/resources/dc_class.png
  * contrib/hbide/resources/dc_method.png
  * contrib/hbide/resources/dc_procedure.png
  * contrib/hbide/resources/dictionary.png
  * contrib/hbide/resources/editor.png
  * contrib/hbide/resources/launch_r.png
  * contrib/hbide/resources/stringify.png
    % optimized (significantly)

  * contrib/hbwin/hbwin.hbx
  * contrib/hbwin/win_osc.c
  * contrib/xhb/xhb.hbx
  * contrib/xhb/xwin_ver.c
    + added WIN_OSIS8() and xhb compatibility OS_ISWIN8()
2012-08-31 03:36:45 +00:00
Pritpal Bedi
7b7eb16e28 2012-08-30 16:22 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/browse.prg
    % Changed: IdeDBU will be available both ways, new implemented 
       or previous one. Switching one mode to another will switch 
       the parenting too. This has rendered IdeDBU versatile, really!!!
2012-08-30 23:25:10 +00:00
Pritpal Bedi
25102934c9 2012-08-30 15:56 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/resources/browser.png
    % Replaced with new image.
  + contrib/hbide/resources/editor.png
    + Added: new image
  * contrib/hbide/hbide.qrc

  * contrib/hbide/actions.prg
  * contrib/hbide/browse.prg
  * contrib/hbide/docks.prg
  * contrib/hbide/main.prg
    + Implemented: future ready stacked widget as central widget of 
       main window. For now IdeDBU is transferred to one of the stacks.
       If preferred by the user, he/she can continue to work as 
       current. Two button on main toolbar are added. One for IdeDBU 
       and another for IdeEDITOR. The functionality is as such:
        1. Click on the IdeDBU icon on the main toolbar.
        2. Editing interface will hide and DBU will appear occupying 
           all of the HbIDE's real-estate.
        3. Status-bar will disappear.
        4. Once activated, IdeDBU will not show up in right-side 
           docking area. If not activated via IdeDBU icon, IdeDBU 
           can be used as before.
        5. Clicking on the IdeEDITOR icon, editing interface will be 
           restored and status-bar will show-up again.

       This implementation makes HbIDE future ready in the sense that 
       application real-estate will never be a problem, and hence, a 
       lot of diversified actions can be brought into play.

       I am interested in groups views as which other parts can be 
       brought to this new implementation, existing as well as futuristic.
2012-08-30 23:10:51 +00:00
Pritpal Bedi
8be335fdd1 2012-08-30 13:02 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qtgui/hbqt_hbqplaintextedit.cpp
    ! Done: pairing of #ifdef|#if - #endif.

    With this commit pair highlighting is complete until someone 
    points to which escaped my knowledge.
2012-08-30 20:10:48 +00:00
Przemyslaw Czerpak
6fb4bbcdde 2012-08-30 15:30 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/include/hbinit.h
    * added HB_INIT_SYMBOLS_COUNT macro
2012-08-30 13:31:05 +00:00