MG: broke interfacebase uses circles

git-svn-id: trunk@3558 -
This commit is contained in:
lazarus 2002-10-25 10:06:34 +00:00
parent cf9743275e
commit 37b96cb4ee
3 changed files with 34 additions and 19 deletions

View File

@ -233,6 +233,7 @@ type
function CreateMessageDialog(const aMsg: string; DlgType: TMsgDlgType;
Buttons: TMsgDlgButtons): TForm;
function MessageDlg(const aMsg: string; DlgType: TMsgDlgType;
Buttons: TMsgDlgButtons; HelpCtx: Longint): Integer;
function MessageDlg(const aCaption, aMsg: string; DlgType: TMsgDlgType;
@ -242,6 +243,7 @@ type
function MessageDlgPosHelp(const aMsg: string; DlgType: TMsgDlgType;
Buttons: TMsgDlgButtons; HelpCtx: Longint; X, Y: Integer;
const HelpFileName: string): Integer;
procedure ShowMessage(const aMsg: string);
procedure ShowMessageFmt(const aMsg: string; Params: array of const);
procedure ShowMessagePos(const aMsg: string; X, Y: Integer);
@ -277,6 +279,18 @@ const
idButtonRetry, idButtonIgnore, idButtonAll,idButtonAll, idButtonAll,
idButtonHelp);
const
//
//TODO: all the constants below should be replaced in the future
// their only purpose is to overcome some current design flaws &
// missing features in the GTK libraries
//
cBitmapX = 10; // x-position for bitmap in messagedialog
cBitmapY = 10; // y-position for bitmap in messagedialog
cBitmapWidth = 32; // width of the dialogs icon
cBitmapHeight= 32; // height of the dialogs icon
cLabelSpacing= 10; // distance between icon & label
function ShowMessageBox(Text, Caption : PChar; Flags : Longint) : Integer;
var
@ -323,21 +337,18 @@ begin
end;
{$I colordialog.inc}
{$I commondialog.inc}
{$I filedialog.inc}
{$I colordialog.inc}
procedure TFontDialog.SetFont(const AValue: TFont);
begin
FFont.Assign(AValue);
end;
{$I fontdialog.inc}
{$I messagedialogs.inc}
{$I inputdialog.inc}
{$I messagedialogs.inc}
{$I promptdialog.inc}
initialization
Forms.MessageBoxFunction:=@ShowMessageBox;
InterfaceBase.InputDialogFunction:=@ShowInputDialog;
InterfaceBase.PromptDialogFunction:=@ShowPromptDialog;
finalization
@ -346,6 +357,9 @@ end.
{ =============================================================================
$Log$
Revision 1.24 2002/10/25 10:06:34 lazarus
MG: broke interfacebase uses circles
Revision 1.23 2002/10/25 09:47:37 lazarus
MG: added inputdialog.inc

View File

@ -15,6 +15,7 @@
* *
*****************************************************************************
}
{------------------------------------------------------------------------------
Method: TFontDialog.Apply
Params: Wnd: HWND
@ -49,9 +50,18 @@ begin
inherited Destroy;
end;
procedure TFontDialog.SetFont(const AValue: TFont);
begin
FFont.Assign(AValue);
end;
{ =============================================================================
$Log$
Revision 1.4 2002/10/25 10:06:34 lazarus
MG: broke interfacebase uses circles
Revision 1.3 2002/06/04 15:17:22 lazarus
MG: improved TFont for XLFD font names

View File

@ -70,18 +70,6 @@ type
procedure EndUpdate;
end;
const
//
//TODO: all the constants below should be replaced in the future
// their only purpose is to overcome some current design flaws &
// missing features in the GTK libraries
//
cBitmapX = 10; // x-position for bitmap in messagedialog
cBitmapY = 10; // y-position for bitmap in messagedialog
cBitmapWidth = 32; // width of the dialogs icon
cBitmapHeight= 32; // height of the dialogs icon
cLabelSpacing= 10; // distance between icon & label
{------------------------------------------------------------------------------
Method: TMessageBox.Create
Params: AOwner: the owner of the class
@ -536,6 +524,9 @@ end;
{
$Log$
Revision 1.20 2002/10/25 10:06:34 lazarus
MG: broke interfacebase uses circles
Revision 1.19 2002/10/25 09:47:38 lazarus
MG: added inputdialog.inc