[fpguiapp | fpGUI template application] uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Classes, fpgfx, gui_form; type TMainForm = class(TfpgForm) public constructor Create(AOwner: TComponent); override; end; { TMainForm } constructor TMainForm.Create(AOwner: TComponent); begin inherited Create(AOwner); WindowTitle := 'My Title'; WindowPosition := wpUser; SetPosition(100, 100, 300, 200); end; procedure MainProc; var frm: TMainForm; begin fpgApplication.Initialize; frm := TMainForm.Create(nil); try frm.Show; fpgApplication.Run; finally frm.Free; end; end; begin MainProc; end. [fpguihdr | fpGUI unit header] { fpGUI - Free Pascal GUI Library Copyright (C) 2006 - 2007 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. Description: |. }