/* $Id: filechooserdialog.hg,v 1.4 2005/01/09 12:42:07 murrayc Exp $ */ /* filechooserdialog.h * * Copyright (C) 1998-2002 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include _DEFS(gtkmm,gtk) _PINCLUDE(gtkmm/private/dialog_p.h) namespace Gtk { /** Convenient file chooser window. * * @ingroup Dialogs */ class FileChooserDialog : public Dialog, public FileChooser { _CLASS_GTKOBJECT(FileChooserDialog, GtkFileChooserDialog, GTK_FILE_CHOOSER_DIALOG, Gtk::Dialog, GtkDialog) _IMPLEMENTS_INTERFACE(FileChooser) _UNMANAGEABLE public: _IGNORE(gtk_file_chooser_dialog_new) explicit FileChooserDialog(Gtk::Window& parent, const Glib::ustring& title, FileChooserAction action = FILE_CHOOSER_ACTION_OPEN); explicit FileChooserDialog(const Glib::ustring& title, FileChooserAction action = FILE_CHOOSER_ACTION_OPEN); _IGNORE(gtk_file_chooser_dialog_new_with_backend) explicit FileChooserDialog(Gtk::Window& parent, const Glib::ustring& title, FileChooserAction action, const Glib::ustring& backend); explicit FileChooserDialog(const Glib::ustring& title, FileChooserAction action, const Glib::ustring& backend); }; } // namespace Gtk