Quantum GIS API Documentation  1.7.5-Wroclaw
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
qgisgui.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgisgui.h - Constants used throughout the QGIS GUI.
3  --------------------------------------
4  Date : 11-Jan-2006
5  Copyright : (C) 2006 by Tom Elwertowski
6  Email : telwertowski at users dot sourceforge dot net
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 /* $Id$ */
16 #ifndef QGISGUI_H
17 #define QGISGUI_H
18 
19 #include <Qt>
20 #include <QPair>
21 
22 class QStringList;
23 
28 namespace QgisGui
29 {
30 
48  static const Qt::WFlags ModalDialogFlags = 0;
49 
75  bool GUI_EXPORT openFilesRememberingFilter( QString const &filterName,
76  QString const &filters, QStringList & selectedFiles, QString& enc, QString &title,
77  bool cancelAll = false );
78 
87  QPair<QString, QString> GUI_EXPORT getSaveAsImageName( QWidget * theParent, QString theMessage );
88 
100  QString createFileFilter_( QString const &longName, QString const &glob );
101 }
102 
103 #endif