implemented transient windows for all cases

git-svn-id: trunk@2574 -
This commit is contained in:
mattias 2002-08-17 23:41:29 +00:00
parent d137b270a6
commit ce8c04d10f
2 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -274,8 +274,15 @@ type
Signal: string;
Realized: boolean;
end;
// modal windows
var
ModalWindows: TList; // list of PGtkWindow
implementation
initialization
ModalWindows:=nil;
end.