]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: filedlg.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "filedlg.h" | |
12 | #endif | |
13 | ||
14 | #include "wx/filedlg.h" | |
15 | #include "wx/utils.h" | |
16 | #include "wx/intl.h" | |
17 | #include "wx/generic/msgdlgg.h" | |
18 | ||
19 | #include "gtk/gtk.h" | |
20 | ||
21 | //----------------------------------------------------------------------------- | |
22 | // idle system | |
23 | //----------------------------------------------------------------------------- | |
24 | ||
25 | extern void wxapp_install_idle_handler(); | |
26 | extern bool g_isIdle; | |
27 | ||
28 | //----------------------------------------------------------------------------- | |
29 | // "delete_event" | |
30 | //----------------------------------------------------------------------------- | |
31 | ||
32 | static | |
33 | bool gtk_filedialog_delete_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxDialog *win ) | |
34 | { | |
35 | if (g_isIdle) wxapp_install_idle_handler(); | |
36 | ||
37 | /* | |
38 | printf( "OnDelete from " ); | |
39 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
40 | printf( win->GetClassInfo()->GetClassName() ); | |
41 | printf( ".\n" ); | |
42 | */ | |
43 | ||
44 | win->Close(); | |
45 | ||
46 | return TRUE; | |
47 | } | |
48 | ||
49 | //----------------------------------------------------------------------------- | |
50 | // "clicked" for OK-button | |
51 | //----------------------------------------------------------------------------- | |
52 | ||
53 | static | |
54 | void gtk_filedialog_ok_callback( GtkWidget *WXUNUSED(widget), wxFileDialog *dialog ) | |
55 | { | |
56 | if (g_isIdle) wxapp_install_idle_handler(); | |
57 | ||
58 | int style = dialog->GetStyle(); | |
59 | ||
60 | GtkFileSelection *filedlg = GTK_FILE_SELECTION(dialog->m_widget); | |
61 | char *filename = gtk_file_selection_get_filename(filedlg); | |
62 | ||
63 | if ( (style & wxSAVE) && ( style & wxOVERWRITE_PROMPT ) ) | |
64 | { | |
65 | if (wxFileExists( filename )) | |
66 | { | |
67 | wxString msg; | |
68 | msg.Printf( _("File '%s' already exists, do you really want to " | |
69 | "overwrite it?"), filename); | |
70 | ||
71 | if (wxMessageBox(msg, _("Confirm"), wxYES_NO) != wxYES) | |
72 | return; | |
73 | } | |
74 | } | |
75 | else if ( (style & wxOPEN) && ( style & wxFILE_MUST_EXIST) ) | |
76 | { | |
77 | if ( !wxFileExists( filename ) ) | |
78 | { | |
79 | wxMessageBox(_("Please choose an existing file."), _("Error"), wxOK); | |
80 | ||
81 | return; | |
82 | } | |
83 | } | |
84 | ||
85 | dialog->SetPath( filename ); | |
86 | ||
87 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK); | |
88 | event.SetEventObject( dialog ); | |
89 | dialog->GetEventHandler()->ProcessEvent( event ); | |
90 | } | |
91 | ||
92 | //----------------------------------------------------------------------------- | |
93 | // "clicked" for Cancel-button | |
94 | //----------------------------------------------------------------------------- | |
95 | ||
96 | static | |
97 | void gtk_filedialog_cancel_callback( GtkWidget *WXUNUSED(w), wxFileDialog *dialog ) | |
98 | { | |
99 | if (g_isIdle) wxapp_install_idle_handler(); | |
100 | ||
101 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); | |
102 | event.SetEventObject( dialog ); | |
103 | dialog->GetEventHandler()->ProcessEvent( event ); | |
104 | } | |
105 | ||
106 | //----------------------------------------------------------------------------- | |
107 | // wxFileDialog | |
108 | //----------------------------------------------------------------------------- | |
109 | ||
110 | IMPLEMENT_DYNAMIC_CLASS(wxFileDialog,wxDialog) | |
111 | ||
112 | wxFileDialog::wxFileDialog( wxWindow *parent, const wxString& message, | |
113 | const wxString& defaultDir, const wxString& defaultFileName, | |
114 | const wxString& wildCard, | |
115 | long style, const wxPoint& pos ) | |
116 | { | |
117 | m_needParent = FALSE; | |
118 | ||
119 | PreCreation( parent, -1, pos, wxDefaultSize, style | wxDIALOG_MODAL, "filedialog" ); | |
120 | m_message = message; | |
121 | m_path = _T(""); | |
122 | m_fileName = defaultFileName; | |
123 | m_dir = defaultDir; | |
124 | m_wildCard = wildCard; | |
125 | m_dialogStyle = style; | |
126 | m_filterIndex = 1; | |
127 | ||
128 | m_widget = gtk_file_selection_new( m_message.mbc_str() ); | |
129 | ||
130 | int x = (gdk_screen_width () - 400) / 2; | |
131 | int y = (gdk_screen_height () - 400) / 2; | |
132 | gtk_widget_set_uposition( m_widget, x, y ); | |
133 | ||
134 | GtkFileSelection *sel = GTK_FILE_SELECTION(m_widget); | |
135 | gtk_file_selection_hide_fileop_buttons( sel ); // they don't work anyway | |
136 | ||
137 | m_path.Append(m_dir); | |
138 | if( ! m_path.IsEmpty() && m_path.Last()!=_T('/') ) | |
139 | m_path.Append('/'); | |
140 | m_path.Append(m_fileName); | |
141 | ||
142 | if(m_path.Length()>1) gtk_file_selection_set_filename(sel,m_path.mbc_str()); | |
143 | ||
144 | gtk_signal_connect( GTK_OBJECT(sel->ok_button), "clicked", | |
145 | GTK_SIGNAL_FUNC(gtk_filedialog_ok_callback), (gpointer*)this ); | |
146 | ||
147 | // strange way to internationalize | |
148 | gtk_label_set( GTK_LABEL( GTK_BUTTON(sel->ok_button)->child ), wxConv_current->cWX2MB(_("OK")) ); | |
149 | ||
150 | gtk_signal_connect( GTK_OBJECT(sel->cancel_button), "clicked", | |
151 | GTK_SIGNAL_FUNC(gtk_filedialog_cancel_callback), (gpointer*)this ); | |
152 | ||
153 | // strange way to internationalize | |
154 | gtk_label_set( GTK_LABEL( GTK_BUTTON(sel->cancel_button)->child ), wxConv_current->cWX2MB(_("Cancel")) ); | |
155 | ||
156 | gtk_signal_connect( GTK_OBJECT(m_widget), "delete_event", | |
157 | GTK_SIGNAL_FUNC(gtk_filedialog_delete_callback), (gpointer)this ); | |
158 | } | |
159 | ||
160 | void wxFileDialog::SetPath(const wxString& path) | |
161 | { | |
162 | // not only set the full path but also update filename and dir | |
163 | m_path = path; | |
164 | if ( !!path ) | |
165 | { | |
166 | wxString ext; | |
167 | wxSplitPath(path, &m_dir, &m_fileName, &ext); | |
168 | m_fileName += ext; | |
169 | } | |
170 | } | |
171 | ||
172 | // ---------------------------------------------------------------------------- | |
173 | // global functions | |
174 | // ---------------------------------------------------------------------------- | |
175 | ||
176 | wxString | |
177 | wxFileSelectorEx(const wxChar *message, | |
178 | const wxChar *default_path, | |
179 | const wxChar *default_filename, | |
180 | int *indexDefaultExtension, | |
181 | const wxChar *wildcard, | |
182 | int flags, | |
183 | wxWindow *parent, | |
184 | int x, int y) | |
185 | { | |
186 | // TODO: implement this somehow | |
187 | return wxFileSelector(message, default_path, default_filename, _T(""), | |
188 | wildcard, flags, parent, x, y); | |
189 | } | |
190 | ||
191 | wxString wxFileSelector( const wxChar *title, | |
192 | const wxChar *defaultDir, const wxChar *defaultFileName, | |
193 | const wxChar *defaultExtension, const wxChar *filter, int flags, | |
194 | wxWindow *parent, int x, int y ) | |
195 | { | |
196 | wxString filter2; | |
197 | if ( defaultExtension && !filter ) | |
198 | filter2 = wxString(_T("*.")) + wxString(defaultExtension) ; | |
199 | else if ( filter ) | |
200 | filter2 = filter; | |
201 | ||
202 | wxString defaultDirString; | |
203 | if (defaultDir) | |
204 | defaultDirString = defaultDir; | |
205 | ||
206 | wxString defaultFilenameString; | |
207 | if (defaultFileName) | |
208 | defaultFilenameString = defaultFileName; | |
209 | ||
210 | wxFileDialog fileDialog( parent, title, defaultDirString, defaultFilenameString, filter2, flags, wxPoint(x, y) ); | |
211 | ||
212 | if ( fileDialog.ShowModal() == wxID_OK ) | |
213 | { | |
214 | return fileDialog.GetPath(); | |
215 | } | |
216 | else | |
217 | { | |
218 | return wxEmptyString; | |
219 | } | |
220 | } | |
221 | ||
222 | wxString wxLoadFileSelector( const wxChar *what, const wxChar *extension, const wxChar *default_name, wxWindow *parent ) | |
223 | { | |
224 | wxChar *ext = (wxChar *)extension; | |
225 | ||
226 | wxChar prompt[50]; | |
227 | wxString str = _("Load %s file"); | |
228 | wxSprintf(prompt, str, what); | |
229 | ||
230 | if (*ext == _T('.')) ext++; | |
231 | wxChar wild[60]; | |
232 | wxSprintf(wild, _T("*.%s"), ext); | |
233 | ||
234 | return wxFileSelector (prompt, (const wxChar *) NULL, default_name, ext, wild, 0, parent); | |
235 | } | |
236 | ||
237 | wxString wxSaveFileSelector(const wxChar *what, const wxChar *extension, const wxChar *default_name, | |
238 | wxWindow *parent ) | |
239 | { | |
240 | wxChar *ext = (wxChar *)extension; | |
241 | ||
242 | wxChar prompt[50]; | |
243 | wxString str = _("Save %s file"); | |
244 | wxSprintf(prompt, str, what); | |
245 | ||
246 | if (*ext == _T('.')) ext++; | |
247 | wxChar wild[60]; | |
248 | wxSprintf(wild, _T("*.%s"), ext); | |
249 | ||
250 | return wxFileSelector (prompt, (const wxChar *) NULL, default_name, ext, wild, 0, parent); | |
251 | } | |
252 |