summaryrefslogtreecommitdiff
path: root/gfx/template/gfxinterface.pas
diff options
context:
space:
mode:
authorFelipe Menteiro de Carvalho <sekelsenmat@users.sourceforge.net>2006-11-23 00:32:37 +0000
committerFelipe Menteiro de Carvalho <sekelsenmat@users.sourceforge.net>2006-11-23 00:32:37 +0000
commit9dd17d1808bf8e8d945d7d0bc332bd5ba4ef4880 (patch)
tree098c4f3848edd9cb21a23851aa6b999f2fc0282d /gfx/template/gfxinterface.pas
parentcc5ac395fd9445e73b53e0a6881e127322ed28e3 (diff)
downloadfpGUI-9dd17d1808bf8e8d945d7d0bc332bd5ba4ef4880.tar.xz
updated templates
Diffstat (limited to 'gfx/template/gfxinterface.pas')
-rw-r--r--gfx/template/gfxinterface.pas43
1 files changed, 18 insertions, 25 deletions
diff --git a/gfx/template/gfxinterface.pas b/gfx/template/gfxinterface.pas
index 189b772c..0f5374b8 100644
--- a/gfx/template/gfxinterface.pas
+++ b/gfx/template/gfxinterface.pas
@@ -1,46 +1,39 @@
{
- fpGFX - Free Pascal Graphics Library
- Copyright (C) 2000 by
- Areca Systems GmbH / Sebastian Guenther, sg@freepascal.org
- Copyright (C) 2006 by Graeme Geldenhuys
- member of the fpGFX development team.
+ fpGUI - Free Pascal GUI Library
- Default target selection unit for template unit
+ GFXInterface - Default target selection unit
- See the file COPYING.fpGFX, included in this distribution,
- for details about the copyright.
+ Copyright (C) 2000 - 2006 See the file AUTHORS.txt, included in this
+ distribution, for details of the copyright.
+
+ See the file COPYING.modifiedLGPL, included in this distribution,
+ for details about redistributing fpGUI.
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.
-
- **********************************************************************}
-
-
-unit GFXImpl;
+}
+unit GFXInterface;
interface
uses GFX_xxx;
-
type
- TDefDisplay = TxxxDisplay;
- TDefWindow = TxxxWindow;
+ TDefFont = TxxxFont;
+ TDefCanvas = TxxxCanvas;
-implementation
+ TDefBitmap = TxxxBitmap;
-end.
+ TDefScreen = TxxxScreen;
+ TDefApplication = TxxxApplication;
-{
- $Log: gfximpl.pp,v $
- Revision 1.2 2000/10/28 20:28:27 sg
- * First version
+ TDefWindow = TxxxWindow;
- Revision 1.1 2000/08/04 21:05:53 sg
- * First version in CVS
+implementation
+
+end.
-}