mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-06 20:26:13 +02:00
implemented transient windows for all cases
git-svn-id: trunk@2574 -
This commit is contained in:
parent
d137b270a6
commit
ce8c04d10f
@ -213,7 +213,7 @@ type
|
||||
gfTIMESTAMP, gfUSER);
|
||||
|
||||
TGtkClipboardFormats = set of TGtkClipboardFormat;
|
||||
|
||||
|
||||
const
|
||||
GtkClipboardFormatName: array[TGtkClipboardFormat] of string = (
|
||||
'CLASS', 'COMPOUND_TEXT', 'DELETE', 'FILE_NAME', 'HOST_NAME', 'LENGTH',
|
||||
@ -221,7 +221,6 @@ const
|
||||
'TIMESTAMP', 'USER'
|
||||
);
|
||||
|
||||
|
||||
function NewPGDIObject: PGDIObject;
|
||||
procedure DisposePGDIObject(GDIObject: PGdiObject);
|
||||
|
||||
@ -436,6 +435,9 @@ end.
|
||||
{ =============================================================================
|
||||
|
||||
$Log$
|
||||
Revision 1.34 2003/03/15 18:32:38 mattias
|
||||
implemented transient windows for all cases
|
||||
|
||||
Revision 1.33 2003/01/27 13:49:16 mattias
|
||||
reduced speedbutton invalidates, added TCanvas.Frame
|
||||
|
||||
|
@ -274,8 +274,15 @@ type
|
||||
Signal: string;
|
||||
Realized: boolean;
|
||||
end;
|
||||
|
||||
// modal windows
|
||||
var
|
||||
ModalWindows: TList; // list of PGtkWindow
|
||||
|
||||
implementation
|
||||
|
||||
initialization
|
||||
ModalWindows:=nil;
|
||||
|
||||
end.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user