]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: filedlg.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
a81258be | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
a3622daa | 7 | // Licence: wxWindows licence |
c801d85f KB |
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" | |
035b704a | 17 | #include "wx/generic/msgdlgg.h" |
c801d85f | 18 | |
83624f79 RR |
19 | #include "gtk/gtk.h" |
20 | ||
acfd422a RR |
21 | //----------------------------------------------------------------------------- |
22 | // idle system | |
23 | //----------------------------------------------------------------------------- | |
24 | ||
25 | extern void wxapp_install_idle_handler(); | |
26 | extern bool g_isIdle; | |
27 | ||
c801d85f | 28 | //----------------------------------------------------------------------------- |
291a8f20 RR |
29 | // "delete_event" |
30 | //----------------------------------------------------------------------------- | |
31 | ||
0e1399b3 | 32 | static |
291a8f20 | 33 | bool gtk_filedialog_delete_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxDialog *win ) |
0e1399b3 | 34 | { |
acfd422a RR |
35 | if (g_isIdle) wxapp_install_idle_handler(); |
36 | ||
291a8f20 RR |
37 | /* |
38 | printf( "OnDelete from " ); | |
39 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
40 | printf( win->GetClassInfo()->GetClassName() ); | |
41 | printf( ".\n" ); | |
42 | */ | |
0e1399b3 | 43 | |
291a8f20 RR |
44 | win->Close(); |
45 | ||
46 | return TRUE; | |
47 | } | |
48 | ||
49 | //----------------------------------------------------------------------------- | |
50 | // "clicked" for OK-button | |
c801d85f KB |
51 | //----------------------------------------------------------------------------- |
52 | ||
0e1399b3 | 53 | static |
2748d251 | 54 | void gtk_filedialog_ok_callback( GtkWidget *WXUNUSED(widget), wxFileDialog *dialog ) |
c801d85f | 55 | { |
acfd422a RR |
56 | if (g_isIdle) wxapp_install_idle_handler(); |
57 | ||
2748d251 | 58 | int style = dialog->GetStyle(); |
035b704a | 59 | |
bfc6fde4 VZ |
60 | GtkFileSelection *filedlg = GTK_FILE_SELECTION(dialog->m_widget); |
61 | char *filename = gtk_file_selection_get_filename(filedlg); | |
0e1399b3 | 62 | |
bfc6fde4 VZ |
63 | if ( (style & wxSAVE) && ( style & wxOVERWRITE_PROMPT ) ) |
64 | { | |
2748d251 | 65 | if (wxFileExists( filename )) |
0e1399b3 VZ |
66 | { |
67 | wxString msg; | |
2748d251 | 68 | msg.Printf( _("File '%s' already exists, do you really want to " |
0e1399b3 VZ |
69 | "overwrite it?"), filename); |
70 | ||
2748d251 | 71 | if (wxMessageBox(msg, _("Confirm"), wxYES_NO) != wxYES) |
0e1399b3 VZ |
72 | return; |
73 | } | |
83624f79 | 74 | } |
bfc6fde4 VZ |
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 | } | |
035b704a | 84 | |
bfc6fde4 | 85 | dialog->SetPath( filename ); |
b7f4714a | 86 | |
bfc6fde4 | 87 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK); |
2748d251 RR |
88 | event.SetEventObject( dialog ); |
89 | dialog->GetEventHandler()->ProcessEvent( event ); | |
ff7b1510 | 90 | } |
c801d85f | 91 | |
291a8f20 RR |
92 | //----------------------------------------------------------------------------- |
93 | // "clicked" for Cancel-button | |
94 | //----------------------------------------------------------------------------- | |
95 | ||
0e1399b3 | 96 | static |
b7f4714a | 97 | void gtk_filedialog_cancel_callback( GtkWidget *WXUNUSED(w), wxFileDialog *dialog ) |
c801d85f | 98 | { |
acfd422a RR |
99 | if (g_isIdle) wxapp_install_idle_handler(); |
100 | ||
bfc6fde4 | 101 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); |
2748d251 RR |
102 | event.SetEventObject( dialog ); |
103 | dialog->GetEventHandler()->ProcessEvent( event ); | |
ff7b1510 | 104 | } |
c801d85f | 105 | |
291a8f20 RR |
106 | //----------------------------------------------------------------------------- |
107 | // wxFileDialog | |
108 | //----------------------------------------------------------------------------- | |
109 | ||
c801d85f KB |
110 | IMPLEMENT_DYNAMIC_CLASS(wxFileDialog,wxDialog) |
111 | ||
83624f79 RR |
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 ) | |
c801d85f | 116 | { |
83624f79 RR |
117 | m_needParent = FALSE; |
118 | ||
119 | PreCreation( parent, -1, pos, wxDefaultSize, style | wxDIALOG_MODAL, "filedialog" ); | |
120 | m_message = message; | |
ed9b9841 | 121 | m_path = _T(""); |
83624f79 RR |
122 | m_fileName = defaultFileName; |
123 | m_dir = defaultDir; | |
124 | m_wildCard = wildCard; | |
125 | m_dialogStyle = style; | |
126 | m_filterIndex = 1; | |
127 | ||
ed9b9841 | 128 | m_widget = gtk_file_selection_new( m_message.mbc_str() ); |
0e1399b3 | 129 | |
83624f79 RR |
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 ); | |
0e1399b3 | 133 | |
83624f79 | 134 | GtkFileSelection *sel = GTK_FILE_SELECTION(m_widget); |
3502e687 | 135 | gtk_file_selection_hide_fileop_buttons( sel ); // they don't work anyway |
035b704a | 136 | |
83624f79 | 137 | m_path.Append(m_dir); |
ed9b9841 | 138 | if( ! m_path.IsEmpty() && m_path.Last()!=_T('/') ) |
3218cf58 | 139 | m_path.Append('/'); |
83624f79 | 140 | m_path.Append(m_fileName); |
035b704a | 141 | |
ed9b9841 | 142 | if(m_path.Length()>1) gtk_file_selection_set_filename(sel,m_path.mbc_str()); |
a3622daa | 143 | |
83624f79 RR |
144 | gtk_signal_connect( GTK_OBJECT(sel->ok_button), "clicked", |
145 | GTK_SIGNAL_FUNC(gtk_filedialog_ok_callback), (gpointer*)this ); | |
c801d85f | 146 | |
3502e687 | 147 | // strange way to internationalize |
ed9b9841 | 148 | gtk_label_set( GTK_LABEL( GTK_BUTTON(sel->ok_button)->child ), wxConv_current->cWX2MB(_("OK")) ); |
3502e687 | 149 | |
83624f79 RR |
150 | gtk_signal_connect( GTK_OBJECT(sel->cancel_button), "clicked", |
151 | GTK_SIGNAL_FUNC(gtk_filedialog_cancel_callback), (gpointer*)this ); | |
3502e687 RR |
152 | |
153 | // strange way to internationalize | |
ed9b9841 | 154 | gtk_label_set( GTK_LABEL( GTK_BUTTON(sel->cancel_button)->child ), wxConv_current->cWX2MB(_("Cancel")) ); |
3502e687 | 155 | |
0e1399b3 | 156 | gtk_signal_connect( GTK_OBJECT(m_widget), "delete_event", |
291a8f20 | 157 | GTK_SIGNAL_FUNC(gtk_filedialog_delete_callback), (gpointer)this ); |
ff7b1510 | 158 | } |
c801d85f | 159 | |
3218cf58 VZ |
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 | ||
ed9b9841 OK |
176 | wxString wxFileSelector( const wxChar *title, |
177 | const wxChar *defaultDir, const wxChar *defaultFileName, | |
178 | const wxChar *defaultExtension, const wxChar *filter, int flags, | |
83624f79 | 179 | wxWindow *parent, int x, int y ) |
c801d85f | 180 | { |
3218cf58 | 181 | wxString filter2; |
83624f79 | 182 | if ( defaultExtension && !filter ) |
ed9b9841 | 183 | filter2 = wxString(_T("*.")) + wxString(defaultExtension) ; |
83624f79 RR |
184 | else if ( filter ) |
185 | filter2 = filter; | |
186 | ||
187 | wxString defaultDirString; | |
188 | if (defaultDir) | |
189 | defaultDirString = defaultDir; | |
83624f79 RR |
190 | |
191 | wxString defaultFilenameString; | |
192 | if (defaultFileName) | |
193 | defaultFilenameString = defaultFileName; | |
0e1399b3 | 194 | |
83624f79 RR |
195 | wxFileDialog fileDialog( parent, title, defaultDirString, defaultFilenameString, filter2, flags, wxPoint(x, y) ); |
196 | ||
197 | if ( fileDialog.ShowModal() == wxID_OK ) | |
198 | { | |
7482b220 | 199 | return fileDialog.GetPath(); |
83624f79 RR |
200 | } |
201 | else | |
202 | { | |
7482b220 | 203 | return wxEmptyString; |
83624f79 | 204 | } |
ff7b1510 | 205 | } |
c801d85f | 206 | |
ed9b9841 | 207 | wxString wxLoadFileSelector( const wxChar *what, const wxChar *extension, const wxChar *default_name, wxWindow *parent ) |
c801d85f | 208 | { |
ed9b9841 | 209 | wxChar *ext = (wxChar *)extension; |
a3622daa | 210 | |
ed9b9841 | 211 | wxChar prompt[50]; |
83624f79 | 212 | wxString str = _("Load %s file"); |
ed9b9841 | 213 | wxSprintf(prompt, str, what); |
c801d85f | 214 | |
ed9b9841 OK |
215 | if (*ext == _T('.')) ext++; |
216 | wxChar wild[60]; | |
217 | wxSprintf(wild, _T("*.%s"), ext); | |
c801d85f | 218 | |
ed9b9841 | 219 | return wxFileSelector (prompt, (const wxChar *) NULL, default_name, ext, wild, 0, parent); |
ff7b1510 | 220 | } |
c801d85f | 221 | |
ed9b9841 | 222 | wxString wxSaveFileSelector(const wxChar *what, const wxChar *extension, const wxChar *default_name, |
c801d85f KB |
223 | wxWindow *parent ) |
224 | { | |
ed9b9841 | 225 | wxChar *ext = (wxChar *)extension; |
a3622daa | 226 | |
ed9b9841 | 227 | wxChar prompt[50]; |
83624f79 | 228 | wxString str = _("Save %s file"); |
ed9b9841 | 229 | wxSprintf(prompt, str, what); |
c801d85f | 230 | |
ed9b9841 OK |
231 | if (*ext == _T('.')) ext++; |
232 | wxChar wild[60]; | |
233 | wxSprintf(wild, _T("*.%s"), ext); | |
c801d85f | 234 | |
ed9b9841 | 235 | return wxFileSelector (prompt, (const wxChar *) NULL, default_name, ext, wild, 0, parent); |
ff7b1510 | 236 | } |
c801d85f | 237 |