summaryrefslogtreecommitdiff
path: root/src/corelib/x11
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-11-26 14:16:26 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-11-26 14:16:26 +0000
commitb3dd8a2df721e5dde2498bdee7b59691e202c7a2 (patch)
tree7c36e8ffe436b89dc5d69c523a80bb43911921c8 /src/corelib/x11
parent185798546587486561b894003f91aec3fe1409f6 (diff)
downloadfpGUI-b3dd8a2df721e5dde2498bdee7b59691e202c7a2.tar.xz
* Created a new unit that implements a WideString version of TStringList.
* I've also implemented a few WideString helper functions that are not included in FPC. * I've created a few fpGUI generic types which hides the actualy Object Pascal types used. This would allow us to make type changes in the future without having to search and replace thousands of lisens of text.
Diffstat (limited to 'src/corelib/x11')
-rw-r--r--src/corelib/x11/fpgfx_package.lpk8
-rw-r--r--src/corelib/x11/fpgfx_package.pas2
2 files changed, 7 insertions, 3 deletions
diff --git a/src/corelib/x11/fpgfx_package.lpk b/src/corelib/x11/fpgfx_package.lpk
index a3a9b033..c5aaf68a 100644
--- a/src/corelib/x11/fpgfx_package.lpk
+++ b/src/corelib/x11/fpgfx_package.lpk
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<CONFIG>
- <Package Version="2">
+ <Package Version="3">
<Name Value="fpgfx_package"/>
<Author Value="Graeme Geldenhuys"/>
<CompilerOptions>
@@ -24,7 +24,7 @@
<License Value="Modified LGPL
"/>
<Version Minor="5" Release="1"/>
- <Files Count="15">
+ <Files Count="16">
<Item1>
<Filename Value="x11_xft.pas"/>
<UnitName Value="x11_xft"/>
@@ -85,6 +85,10 @@
<Filename Value="gfx_impl.pas"/>
<UnitName Value="gfx_impl"/>
</Item15>
+ <Item16>
+ <Filename Value="../gfx_strings.pas"/>
+ <UnitName Value="gfx_strings"/>
+ </Item16>
</Files>
<RequiredPkgs Count="1">
<Item1>
diff --git a/src/corelib/x11/fpgfx_package.pas b/src/corelib/x11/fpgfx_package.pas
index b4d63034..58a3fcac 100644
--- a/src/corelib/x11/fpgfx_package.pas
+++ b/src/corelib/x11/fpgfx_package.pas
@@ -9,7 +9,7 @@ interface
uses
x11_xft, x11_keyconv, gfxbase, gfx_x11, fpgfx, gfx_stdimages, gfx_imgfmt_bmp,
gfx_widget, gfx_UTF8utils, gfx_extinterpolation, gfx_cmdlineparams,
- gfx_clipboard, gfx_utils, gfx_popupwindow, gfx_impl;
+ gfx_clipboard, gfx_utils, gfx_popupwindow, gfx_impl, gfx_strings;
implementation