/[thuban]/branches/WIP-pyshapelib-bramz/Thuban/UI/dialogs.py
ViewVC logotype

Contents of /branches/WIP-pyshapelib-bramz/Thuban/UI/dialogs.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1198 - (show annotations)
Fri Jun 13 15:03:32 2003 UTC (21 years, 9 months ago) by jonathan
Original Path: trunk/thuban/Thuban/UI/dialogs.py
File MIME type: text/x-python
File size: 1953 byte(s)
(ThubanFrame): New: a class that inherits
        from wxFrame (as opposed to wxDialog like the other classes)
        but otherwise behaves like the other classes. This is needed
        for the TableView which isn't really a dialog and needs to
        have a status bar and control buttons.

1 # Copyright (c) 2001, 2003 by Intevation GmbH
2 # Authors:
3 # Bernhard Herzog <[email protected]>
4 # Frank Koormann <[email protected]>
5 #
6 # This program is free software under the GPL (>=v2)
7 # Read the file COPYING coming with Thuban for details.
8
9 """Base classes for dialogs"""
10
11 __version__ = "$Revision$"
12
13 from wxPython.wx import *
14
15 class ThubanFrame(wxFrame):
16
17 def __init__(self, parent, name, title):
18 wxFrame.__init__(self, parent, -1, title,
19 style = wxDEFAULT_FRAME_STYLE )
20 self.parent = parent
21 self.name = name
22 EVT_CLOSE(self, self.OnClose)
23
24 def OnClose(self, event):
25 if self.parent.dialogs.has_key(self.name):
26 self.parent.remove_dialog(self.name)
27 self.Destroy()
28
29 class NonModalDialog(wxDialog):
30 def __init__(self, parent, name, title):
31 wxDialog.__init__(self, parent, -1, title,
32 style = wxDEFAULT_DIALOG_STYLE
33 | wxSYSTEM_MENU
34 | wxMINIMIZE_BOX
35 | wxMAXIMIZE_BOX
36 | wxRESIZE_BORDER
37 )
38 self.parent = parent
39 self.name = name
40 EVT_CLOSE(self, self.OnClose)
41
42 def OnClose(self, event):
43 if self.parent.dialogs.has_key(self.name):
44 self.parent.remove_dialog(self.name)
45 self.Destroy()
46
47 class NonModalNonParentDialog(wxDialog):
48 def __init__(self, parent, name, title):
49 wxDialog.__init__(self, None, -1, title,
50 style = wxDEFAULT_DIALOG_STYLE
51 | wxSYSTEM_MENU
52 | wxMINIMIZE_BOX
53 | wxMAXIMIZE_BOX
54 | wxRESIZE_BORDER
55 | wxDIALOG_NO_PARENT
56 )
57 self.parent = parent
58 self.name = name
59 EVT_CLOSE(self, self.OnClose)
60
61 def OnClose(self, event):
62 if self.parent.dialogs.has_key(self.name):
63 self.parent.remove_dialog(self.name)
64 self.Destroy()

Properties

Name Value
svn:eol-style native
svn:keywords Author Date Id Revision

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26