]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/filedlg.cpp
Explicit casting/instantiation to resolve ambiguous overload.
[wxWidgets.git] / src / gtk / filedlg.cpp
CommitLineData
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
25extern void wxapp_install_idle_handler();
26extern bool g_isIdle;
27
c801d85f 28//-----------------------------------------------------------------------------
291a8f20
RR
29// "delete_event"
30//-----------------------------------------------------------------------------
31
0e1399b3 32static
291a8f20 33bool 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 53static
2748d251 54void 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
a2053b27 60 GtkFileSelection *filedlg = GTK_FILE_SELECTION(dialog->m_widget);
bfc6fde4 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 96static
b7f4714a 97void 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
110IMPLEMENT_DYNAMIC_CLASS(wxFileDialog,wxDialog)
111
83624f79
RR
112wxFileDialog::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
160void 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
36453d0f
VZ
176wxString
177wxFileSelectorEx(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
ed9b9841
OK
191wxString wxFileSelector( const wxChar *title,
192 const wxChar *defaultDir, const wxChar *defaultFileName,
193 const wxChar *defaultExtension, const wxChar *filter, int flags,
83624f79 194 wxWindow *parent, int x, int y )
c801d85f 195{
3218cf58 196 wxString filter2;
83624f79 197 if ( defaultExtension && !filter )
ed9b9841 198 filter2 = wxString(_T("*.")) + wxString(defaultExtension) ;
83624f79
RR
199 else if ( filter )
200 filter2 = filter;
201
202 wxString defaultDirString;
203 if (defaultDir)
204 defaultDirString = defaultDir;
83624f79
RR
205
206 wxString defaultFilenameString;
207 if (defaultFileName)
208 defaultFilenameString = defaultFileName;
0e1399b3 209
83624f79
RR
210 wxFileDialog fileDialog( parent, title, defaultDirString, defaultFilenameString, filter2, flags, wxPoint(x, y) );
211
212 if ( fileDialog.ShowModal() == wxID_OK )
213 {
7482b220 214 return fileDialog.GetPath();
83624f79
RR
215 }
216 else
217 {
7482b220 218 return wxEmptyString;
83624f79 219 }
ff7b1510 220}
c801d85f 221
ed9b9841 222wxString wxLoadFileSelector( const wxChar *what, const wxChar *extension, const wxChar *default_name, wxWindow *parent )
c801d85f 223{
ed9b9841 224 wxChar *ext = (wxChar *)extension;
a3622daa 225
ed9b9841 226 wxChar prompt[50];
83624f79 227 wxString str = _("Load %s file");
ed9b9841 228 wxSprintf(prompt, str, what);
c801d85f 229
ed9b9841
OK
230 if (*ext == _T('.')) ext++;
231 wxChar wild[60];
232 wxSprintf(wild, _T("*.%s"), ext);
c801d85f 233
ed9b9841 234 return wxFileSelector (prompt, (const wxChar *) NULL, default_name, ext, wild, 0, parent);
ff7b1510 235}
c801d85f 236
ed9b9841 237wxString wxSaveFileSelector(const wxChar *what, const wxChar *extension, const wxChar *default_name,
c801d85f
KB
238 wxWindow *parent )
239{
ed9b9841 240 wxChar *ext = (wxChar *)extension;
a3622daa 241
ed9b9841 242 wxChar prompt[50];
83624f79 243 wxString str = _("Save %s file");
ed9b9841 244 wxSprintf(prompt, str, what);
c801d85f 245
ed9b9841
OK
246 if (*ext == _T('.')) ext++;
247 wxChar wild[60];
248 wxSprintf(wild, _T("*.%s"), ext);
c801d85f 249
ed9b9841 250 return wxFileSelector (prompt, (const wxChar *) NULL, default_name, ext, wild, 0, parent);
ff7b1510 251}
c801d85f 252