diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-07-07 09:47:08 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-07-07 09:47:08 +0000 |
commit | b4450ba52960d6859cac021b27d0d3e13c5c7571 (patch) | |
tree | 237bb663be538fc11ab4bf7aa57dfb923edc6aa8 /prototypes/fpgui2/tests | |
parent | 210550842b0dccfa442f2daf6894d8e460caa025 (diff) | |
download | fpGUI-b4450ba52960d6859cac021b27d0d3e13c5c7571.tar.xz |
* Refactored the Window class.
* Added some basic predefined colors to gfxbase.
* Some more code cleanup in the test projects.
* Fixed a dependency issue with the core/imgtest example project.
Diffstat (limited to 'prototypes/fpgui2/tests')
-rw-r--r-- | prototypes/fpgui2/tests/bitmaptest.dpr | 2 | ||||
-rw-r--r-- | prototypes/fpgui2/tests/fpgcanvas.lpr | 7 |
2 files changed, 1 insertions, 8 deletions
diff --git a/prototypes/fpgui2/tests/bitmaptest.dpr b/prototypes/fpgui2/tests/bitmaptest.dpr index 4c058339..c8b98193 100644 --- a/prototypes/fpgui2/tests/bitmaptest.dpr +++ b/prototypes/fpgui2/tests/bitmaptest.dpr @@ -26,7 +26,7 @@ type procedure TMainForm.AfterCreate; begin SetPosition(100, 100, 256, 256); - WindowTitle := 'fpGUI2 Bitmap Test'; + WindowTitle := 'fpGUI Bitmap Test'; end; procedure TMainForm.HandlePaint; diff --git a/prototypes/fpgui2/tests/fpgcanvas.lpr b/prototypes/fpgui2/tests/fpgcanvas.lpr index 7cae700f..978d21b2 100644 --- a/prototypes/fpgui2/tests/fpgcanvas.lpr +++ b/prototypes/fpgui2/tests/fpgcanvas.lpr @@ -12,13 +12,6 @@ uses gui_form, gfx_imgfmt_bmp; -const - // We need to define more such constants in fpGFX as standard - // RRGGBB - clRed = $FF0000; - clGreen = $00FF00; - clBlue = $0000FF; - clBlack = $000000; type |