2008-06-27 03:27 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* contrib/gtwvg/Makefile
   * contrib/gtwvg/common.mak
   - contrib/gtwvg/wvtclass.prg
   + contrib/gtwvg/wvgclass.prg
   - contrib/gtwvg/wvtpaint.prg
   + contrib/gtwvg/wvgpaint.prg
   - contrib/gtwvg/wvtcore.c
   + contrib/gtwvg/wvgcore.c
   - contrib/gtwvg/wvtutils.c
   + contrib/gtwvg/wvgutils.c
   * contrib/gtwvg/hbgtwvg.ch
   * contrib/gtwvg/wvtwin.ch
     + Added self-guards for headers.
     ! Added missing SVN header and copyright to hbgtwvg.ch.
     ! Deleted ISBLOCK() from wvtwin.ch since it's already  
       #defined in common.ch.
     * Renamed local source files from wvt*.* -> wvg*.*
This commit is contained in:
Viktor Szakats
2008-06-27 01:51:45 +00:00
parent d2ec0a2903
commit a1eb99932d
9 changed files with 89 additions and 18 deletions

View File

@@ -8,6 +8,25 @@
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2008-06-27 03:27 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/gtwvg/Makefile
* contrib/gtwvg/common.mak
- contrib/gtwvg/wvtclass.prg
+ contrib/gtwvg/wvgclass.prg
- contrib/gtwvg/wvtpaint.prg
+ contrib/gtwvg/wvgpaint.prg
- contrib/gtwvg/wvtcore.c
+ contrib/gtwvg/wvgcore.c
- contrib/gtwvg/wvtutils.c
+ contrib/gtwvg/wvgutils.c
* contrib/gtwvg/hbgtwvg.ch
* contrib/gtwvg/wvtwin.ch
+ Added self-guards for headers.
! Added missing SVN header and copyright to hbgtwvg.ch.
! Deleted ISBLOCK() from wvtwin.ch since it's already
#defined in common.ch.
* Renamed local source files from wvt*.* -> wvg*.*
2008-06-26 15:58 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/pp/hbpp.c
! Fixed typo in recent modification.

View File

@@ -8,15 +8,15 @@ ROOT = ../../
C_SOURCES=\
gtwvg.c \
wvtcore.c \
wvtutils.c \
wvgcore.c \
wvgutils.c \
C_HEADERS=\
gtwvg.h \
PRG_SOURCES=\
wvtclass.prg \
wvtpaint.prg \
wvgclass.prg \
wvgpaint.prg \
PRG_HEADERS=\
hbgtwvg.ch \

View File

@@ -14,12 +14,12 @@ PRG_HEADERS=\
wvtwin.ch \
LIB_OBJS = \
$(OBJ_DIR)wvtclass$(OBJEXT) \
$(OBJ_DIR)wvtpaint$(OBJEXT) \
$(OBJ_DIR)wvgclass$(OBJEXT) \
$(OBJ_DIR)wvgpaint$(OBJEXT) \
\
$(OBJ_DIR)gtwvg$(OBJEXT) \
$(OBJ_DIR)wvtcore$(OBJEXT) \
$(OBJ_DIR)wvtutils$(OBJEXT) \
$(OBJ_DIR)wvgcore$(OBJEXT) \
$(OBJ_DIR)wvgutils$(OBJEXT) \
all: \
$(LIB_PATH) \

View File

@@ -1,13 +1,60 @@
/*
* $Id$
*/
/*
* Harbour Project source code:
* Header file for the WVG*Classes
*
* Copyright 2004 Pritpal Bedi <pritpal@vouchcac.com>
* www - http://www.xharbour.org http://www.harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
#ifndef _HBGTWVG_CH
#define _HBGTWVG_CH
//----------------------------------------------------------------------//
//----------------------------------------------------------------------//
//----------------------------------------------------------------------//
//
// Extended GT Manipulation Constants
//
// Pritpal Bedi <pritpal@vouchcac.com>
//
//----------------------------------------------------------------------//
//----------------------------------------------------------------------//
//----------------------------------------------------------------------//
#define HB_GTI_SETFONT 71
@@ -37,3 +84,4 @@
//----------------------------------------------------------------------//
#endif

View File

@@ -49,6 +49,10 @@
* If you do not wish that, delete this exception notice.
*
*/
#ifndef _WVGWIN_CH
#define _WVGWIN_CH
//-------------------------------------------------------------------//
//
// GTWVT Specific
@@ -192,8 +196,6 @@
//-------------------------------------------------------------------//
#define ISBLOCK( x ) valtype( x ) == 'B'
#define RGB( nR,nG,nB ) ( nR + ( nG * 256 ) + ( nB * 256 * 256 ) )
//-------------------------------------------------------------------//
@@ -1233,3 +1235,5 @@
#define OFN_FORCESHOWHIDDEN 268435456 // Show All files including System and hidden files
//----------------------------------------------------------------------//
#endif