summaryrefslogtreecommitdiff
path: root/src/corelib/gfxbase.pas
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-08-14 15:04:05 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-08-14 15:04:05 +0000
commitacc50fa5d7ef195ae5f1746130a7edee646feab7 (patch)
tree35f0d6b51b76727ad0743685aaceeae42b00f20a /src/corelib/gfxbase.pas
parent856316cb9bdcc51fc9ccd9d0dd0276197e69ad69 (diff)
downloadfpGUI-acc50fa5d7ef195ae5f1746130a7edee646feab7.tar.xz
* Updated a few scripts in the docs directory.
* Minor changes in the style unit. * Added a new examples/apps/docedit project. Once complete it will be a demo application of fpGUI and at the same time show most used widgets in action. DocEdit will become something like lazde is to Lazarus.
Diffstat (limited to 'src/corelib/gfxbase.pas')
-rw-r--r--src/corelib/gfxbase.pas8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/corelib/gfxbase.pas b/src/corelib/gfxbase.pas
index 8d7f814f..5554fbcd 100644
--- a/src/corelib/gfxbase.pas
+++ b/src/corelib/gfxbase.pas
@@ -337,10 +337,12 @@ type
procedure ReleaseWindowHandle;
procedure SetWindowTitle(const ATitle: string); virtual;
public
+ // The standard constructor.
constructor Create(AOwner: TComponent); override;
- // make some setup before the window shows
- procedure AdjustWindowStyle; virtual; // forms modify the window creation parameters
- procedure SetWindowParameters; virtual; // invoked after the window is created
+ // Make some setup before the window shows. Forms modify the window creation parameters.
+ procedure AdjustWindowStyle; virtual;
+ // Make some setup before the window shows. Invoked after the window is created.
+ procedure SetWindowParameters; virtual;
// general properties and functions
function Right: TfpgCoord;
function Bottom: TfpgCoord;