]>
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 | ||
c801d85f | 21 | //----------------------------------------------------------------------------- |
291a8f20 RR |
22 | // "delete_event" |
23 | //----------------------------------------------------------------------------- | |
24 | ||
0e1399b3 | 25 | static |
291a8f20 | 26 | bool gtk_filedialog_delete_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxDialog *win ) |
0e1399b3 | 27 | { |
291a8f20 RR |
28 | /* |
29 | printf( "OnDelete from " ); | |
30 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
31 | printf( win->GetClassInfo()->GetClassName() ); | |
32 | printf( ".\n" ); | |
33 | */ | |
0e1399b3 | 34 | |
291a8f20 RR |
35 | win->Close(); |
36 | ||
37 | return TRUE; | |
38 | } | |
39 | ||
40 | //----------------------------------------------------------------------------- | |
41 | // "clicked" for OK-button | |
c801d85f KB |
42 | //----------------------------------------------------------------------------- |
43 | ||
0e1399b3 | 44 | static |
2748d251 | 45 | void gtk_filedialog_ok_callback( GtkWidget *WXUNUSED(widget), wxFileDialog *dialog ) |
c801d85f | 46 | { |
2748d251 | 47 | int style = dialog->GetStyle(); |
035b704a | 48 | |
bfc6fde4 VZ |
49 | GtkFileSelection *filedlg = GTK_FILE_SELECTION(dialog->m_widget); |
50 | char *filename = gtk_file_selection_get_filename(filedlg); | |
0e1399b3 | 51 | |
bfc6fde4 VZ |
52 | if ( (style & wxSAVE) && ( style & wxOVERWRITE_PROMPT ) ) |
53 | { | |
2748d251 | 54 | if (wxFileExists( filename )) |
0e1399b3 VZ |
55 | { |
56 | wxString msg; | |
2748d251 | 57 | msg.Printf( _("File '%s' already exists, do you really want to " |
0e1399b3 VZ |
58 | "overwrite it?"), filename); |
59 | ||
2748d251 | 60 | if (wxMessageBox(msg, _("Confirm"), wxYES_NO) != wxYES) |
0e1399b3 VZ |
61 | return; |
62 | } | |
83624f79 | 63 | } |
bfc6fde4 VZ |
64 | else if ( (style & wxOPEN) && ( style & wxFILE_MUST_EXIST) ) |
65 | { | |
66 | if ( !wxFileExists( filename ) ) | |
67 | { | |
68 | wxMessageBox(_("Please choose an existing file."), _("Error"), wxOK); | |
69 | ||
70 | return; | |
71 | } | |
72 | } | |
035b704a | 73 | |
bfc6fde4 | 74 | dialog->SetPath( filename ); |
b7f4714a | 75 | |
bfc6fde4 | 76 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK); |
2748d251 RR |
77 | event.SetEventObject( dialog ); |
78 | dialog->GetEventHandler()->ProcessEvent( event ); | |
ff7b1510 | 79 | } |
c801d85f | 80 | |
291a8f20 RR |
81 | //----------------------------------------------------------------------------- |
82 | // "clicked" for Cancel-button | |
83 | //----------------------------------------------------------------------------- | |
84 | ||
0e1399b3 | 85 | static |
b7f4714a | 86 | void gtk_filedialog_cancel_callback( GtkWidget *WXUNUSED(w), wxFileDialog *dialog ) |
c801d85f | 87 | { |
bfc6fde4 | 88 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); |
2748d251 RR |
89 | event.SetEventObject( dialog ); |
90 | dialog->GetEventHandler()->ProcessEvent( event ); | |
ff7b1510 | 91 | } |
c801d85f | 92 | |
291a8f20 RR |
93 | //----------------------------------------------------------------------------- |
94 | // wxFileDialog | |
95 | //----------------------------------------------------------------------------- | |
96 | ||
c801d85f KB |
97 | IMPLEMENT_DYNAMIC_CLASS(wxFileDialog,wxDialog) |
98 | ||
83624f79 RR |
99 | wxFileDialog::wxFileDialog( wxWindow *parent, const wxString& message, |
100 | const wxString& defaultDir, const wxString& defaultFileName, | |
101 | const wxString& wildCard, | |
102 | long style, const wxPoint& pos ) | |
c801d85f | 103 | { |
83624f79 RR |
104 | m_needParent = FALSE; |
105 | ||
106 | PreCreation( parent, -1, pos, wxDefaultSize, style | wxDIALOG_MODAL, "filedialog" ); | |
107 | m_message = message; | |
108 | m_path = ""; | |
109 | m_fileName = defaultFileName; | |
110 | m_dir = defaultDir; | |
111 | m_wildCard = wildCard; | |
112 | m_dialogStyle = style; | |
113 | m_filterIndex = 1; | |
114 | ||
115 | m_widget = gtk_file_selection_new( m_message ); | |
0e1399b3 | 116 | |
83624f79 RR |
117 | int x = (gdk_screen_width () - 400) / 2; |
118 | int y = (gdk_screen_height () - 400) / 2; | |
119 | gtk_widget_set_uposition( m_widget, x, y ); | |
0e1399b3 | 120 | |
83624f79 | 121 | GtkFileSelection *sel = GTK_FILE_SELECTION(m_widget); |
3502e687 | 122 | gtk_file_selection_hide_fileop_buttons( sel ); // they don't work anyway |
035b704a | 123 | |
83624f79 RR |
124 | m_path.Append(m_dir); |
125 | if(! m_path.IsEmpty() && m_path.Last()!='/') m_path.Append('/'); | |
126 | m_path.Append(m_fileName); | |
035b704a | 127 | |
83624f79 | 128 | if(m_path.Length()>1) gtk_file_selection_set_filename(sel,m_path); |
a3622daa | 129 | |
83624f79 RR |
130 | gtk_signal_connect( GTK_OBJECT(sel->ok_button), "clicked", |
131 | GTK_SIGNAL_FUNC(gtk_filedialog_ok_callback), (gpointer*)this ); | |
c801d85f | 132 | |
3502e687 RR |
133 | // strange way to internationalize |
134 | gtk_label_set( GTK_LABEL( GTK_BUTTON(sel->ok_button)->child ), _("OK") ); | |
135 | ||
83624f79 RR |
136 | gtk_signal_connect( GTK_OBJECT(sel->cancel_button), "clicked", |
137 | GTK_SIGNAL_FUNC(gtk_filedialog_cancel_callback), (gpointer*)this ); | |
3502e687 RR |
138 | |
139 | // strange way to internationalize | |
140 | gtk_label_set( GTK_LABEL( GTK_BUTTON(sel->cancel_button)->child ), _("Cancel") ); | |
141 | ||
0e1399b3 | 142 | gtk_signal_connect( GTK_OBJECT(m_widget), "delete_event", |
291a8f20 | 143 | GTK_SIGNAL_FUNC(gtk_filedialog_delete_callback), (gpointer)this ); |
ff7b1510 | 144 | } |
c801d85f | 145 | |
7482b220 | 146 | wxString wxFileSelector( const char *title, |
83624f79 RR |
147 | const char *defaultDir, const char *defaultFileName, |
148 | const char *defaultExtension, const char *filter, int flags, | |
149 | wxWindow *parent, int x, int y ) | |
c801d85f | 150 | { |
83624f79 RR |
151 | wxString filter2(""); |
152 | if ( defaultExtension && !filter ) | |
153 | filter2 = wxString("*.") + wxString(defaultExtension) ; | |
154 | else if ( filter ) | |
155 | filter2 = filter; | |
156 | ||
157 | wxString defaultDirString; | |
158 | if (defaultDir) | |
159 | defaultDirString = defaultDir; | |
160 | else | |
161 | defaultDirString = ""; | |
162 | ||
163 | wxString defaultFilenameString; | |
164 | if (defaultFileName) | |
165 | defaultFilenameString = defaultFileName; | |
166 | else | |
167 | defaultFilenameString = ""; | |
0e1399b3 | 168 | |
83624f79 RR |
169 | wxFileDialog fileDialog( parent, title, defaultDirString, defaultFilenameString, filter2, flags, wxPoint(x, y) ); |
170 | ||
171 | if ( fileDialog.ShowModal() == wxID_OK ) | |
172 | { | |
7482b220 | 173 | return fileDialog.GetPath(); |
83624f79 RR |
174 | } |
175 | else | |
176 | { | |
7482b220 | 177 | return wxEmptyString; |
83624f79 | 178 | } |
ff7b1510 | 179 | } |
c801d85f | 180 | |
7482b220 | 181 | wxString wxLoadFileSelector( const char *what, const char *extension, const char *default_name, wxWindow *parent ) |
c801d85f | 182 | { |
83624f79 | 183 | char *ext = (char *)extension; |
a3622daa | 184 | |
83624f79 RR |
185 | char prompt[50]; |
186 | wxString str = _("Load %s file"); | |
187 | sprintf(prompt, str, what); | |
c801d85f | 188 | |
83624f79 RR |
189 | if (*ext == '.') ext++; |
190 | char wild[60]; | |
191 | sprintf(wild, "*.%s", ext); | |
c801d85f | 192 | |
83624f79 | 193 | return wxFileSelector (prompt, (const char *) NULL, default_name, ext, wild, 0, parent); |
ff7b1510 | 194 | } |
c801d85f | 195 | |
7482b220 | 196 | wxString wxSaveFileSelector(const char *what, const char *extension, const char *default_name, |
c801d85f KB |
197 | wxWindow *parent ) |
198 | { | |
83624f79 | 199 | char *ext = (char *)extension; |
a3622daa | 200 | |
83624f79 RR |
201 | char prompt[50]; |
202 | wxString str = _("Save %s file"); | |
203 | sprintf(prompt, str, what); | |
c801d85f | 204 | |
83624f79 RR |
205 | if (*ext == '.') ext++; |
206 | char wild[60]; | |
207 | sprintf(wild, "*.%s", ext); | |
c801d85f | 208 | |
83624f79 | 209 | return wxFileSelector (prompt, (const char *) NULL, default_name, ext, wild, 0, parent); |
ff7b1510 | 210 | } |
c801d85f | 211 |