summaryrefslogtreecommitdiff
path: root/gfx/x11/gfxinterface.pas
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/x11/gfxinterface.pas')
-rw-r--r--gfx/x11/gfxinterface.pas41
1 files changed, 41 insertions, 0 deletions
diff --git a/gfx/x11/gfxinterface.pas b/gfx/x11/gfxinterface.pas
new file mode 100644
index 00000000..248c935f
--- /dev/null
+++ b/gfx/x11/gfxinterface.pas
@@ -0,0 +1,41 @@
+{
+ fpGUI - Free Pascal Graphical User Interface
+
+ GFXInterface - Default target selection unit for X11 target
+
+ Copyright (C) 2000 - 2006 See the file AUTHORS, 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 gfxinterface;
+
+interface
+
+uses
+ GFX_X11;
+
+type
+
+ TDefCanvas = TX11Canvas;
+
+ TDefFont = TX11Font;
+
+ TDefScreen = TX11Screen;
+
+ TDefApplication = TX11Application;
+
+ TDefWindow = TX11Window;
+
+ TDefImage = TX11Image;
+
+
+implementation
+
+end.
+