]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/filedlg.cpp
some compilation "enhancements"
[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
c801d85f 21//-----------------------------------------------------------------------------
291a8f20
RR
22// "delete_event"
23//-----------------------------------------------------------------------------
24
0e1399b3 25static
291a8f20 26bool 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 44static
2748d251 45void gtk_filedialog_ok_callback( GtkWidget *WXUNUSED(widget), wxFileDialog *dialog )
c801d85f 46{
2748d251 47 int style = dialog->GetStyle();
035b704a 48
2748d251 49 if ((style&wxSAVE)&&(style&wxOVERWRITE_PROMPT))
83624f79 50 {
0e1399b3 51 char *filename = gtk_file_selection_get_filename(
2748d251 52 GTK_FILE_SELECTION(dialog->m_widget) );
0e1399b3 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 }
035b704a 64
2748d251 65 dialog->SetPath( gtk_file_selection_get_filename( GTK_FILE_SELECTION(dialog->m_widget) ) );
b7f4714a 66
2748d251
RR
67 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED,wxID_OK);
68 event.SetEventObject( dialog );
69 dialog->GetEventHandler()->ProcessEvent( event );
ff7b1510 70}
c801d85f 71
291a8f20
RR
72//-----------------------------------------------------------------------------
73// "clicked" for Cancel-button
74//-----------------------------------------------------------------------------
75
0e1399b3 76static
b7f4714a 77void gtk_filedialog_cancel_callback( GtkWidget *WXUNUSED(w), wxFileDialog *dialog )
c801d85f 78{
2748d251
RR
79 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED,wxID_CANCEL);
80 event.SetEventObject( dialog );
81 dialog->GetEventHandler()->ProcessEvent( event );
ff7b1510 82}
c801d85f 83
291a8f20
RR
84//-----------------------------------------------------------------------------
85// wxFileDialog
86//-----------------------------------------------------------------------------
87
c801d85f
KB
88IMPLEMENT_DYNAMIC_CLASS(wxFileDialog,wxDialog)
89
83624f79
RR
90wxFileDialog::wxFileDialog( wxWindow *parent, const wxString& message,
91 const wxString& defaultDir, const wxString& defaultFileName,
92 const wxString& wildCard,
93 long style, const wxPoint& pos )
c801d85f 94{
83624f79
RR
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 );
0e1399b3 107
83624f79
RR
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 );
0e1399b3 111
83624f79 112 GtkFileSelection *sel = GTK_FILE_SELECTION(m_widget);
035b704a 113
83624f79
RR
114 m_path.Append(m_dir);
115 if(! m_path.IsEmpty() && m_path.Last()!='/') m_path.Append('/');
116 m_path.Append(m_fileName);
035b704a 117
83624f79 118 if(m_path.Length()>1) gtk_file_selection_set_filename(sel,m_path);
a3622daa 119
83624f79
RR
120 gtk_signal_connect( GTK_OBJECT(sel->ok_button), "clicked",
121 GTK_SIGNAL_FUNC(gtk_filedialog_ok_callback), (gpointer*)this );
c801d85f 122
83624f79
RR
123 gtk_signal_connect( GTK_OBJECT(sel->cancel_button), "clicked",
124 GTK_SIGNAL_FUNC(gtk_filedialog_cancel_callback), (gpointer*)this );
291a8f20 125
0e1399b3 126 gtk_signal_connect( GTK_OBJECT(m_widget), "delete_event",
291a8f20 127 GTK_SIGNAL_FUNC(gtk_filedialog_delete_callback), (gpointer)this );
ff7b1510 128}
c801d85f 129
7482b220 130wxString wxFileSelector( const char *title,
83624f79
RR
131 const char *defaultDir, const char *defaultFileName,
132 const char *defaultExtension, const char *filter, int flags,
133 wxWindow *parent, int x, int y )
c801d85f 134{
83624f79
RR
135 wxString filter2("");
136 if ( defaultExtension && !filter )
137 filter2 = wxString("*.") + wxString(defaultExtension) ;
138 else if ( filter )
139 filter2 = filter;
140
141 wxString defaultDirString;
142 if (defaultDir)
143 defaultDirString = defaultDir;
144 else
145 defaultDirString = "";
146
147 wxString defaultFilenameString;
148 if (defaultFileName)
149 defaultFilenameString = defaultFileName;
150 else
151 defaultFilenameString = "";
0e1399b3 152
83624f79
RR
153 wxFileDialog fileDialog( parent, title, defaultDirString, defaultFilenameString, filter2, flags, wxPoint(x, y) );
154
155 if ( fileDialog.ShowModal() == wxID_OK )
156 {
7482b220 157 return fileDialog.GetPath();
83624f79
RR
158 }
159 else
160 {
7482b220 161 return wxEmptyString;
83624f79 162 }
ff7b1510 163}
c801d85f 164
7482b220 165wxString wxLoadFileSelector( const char *what, const char *extension, const char *default_name, wxWindow *parent )
c801d85f 166{
83624f79 167 char *ext = (char *)extension;
a3622daa 168
83624f79
RR
169 char prompt[50];
170 wxString str = _("Load %s file");
171 sprintf(prompt, str, what);
c801d85f 172
83624f79
RR
173 if (*ext == '.') ext++;
174 char wild[60];
175 sprintf(wild, "*.%s", ext);
c801d85f 176
83624f79 177 return wxFileSelector (prompt, (const char *) NULL, default_name, ext, wild, 0, parent);
ff7b1510 178}
c801d85f 179
7482b220 180wxString wxSaveFileSelector(const char *what, const char *extension, const char *default_name,
c801d85f
KB
181 wxWindow *parent )
182{
83624f79 183 char *ext = (char *)extension;
a3622daa 184
83624f79
RR
185 char prompt[50];
186 wxString str = _("Save %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