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