Quantum GIS API Documentation  1.7.5-Wroclaw
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
qgsludialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsludialog.h - description
3  -------------------
4  begin : September 2004
5  copyright : (C) 2004 by Marco Hugentobler
6  email : marco.hugentobler@autoform.ch
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 /* $Id$ */
18 
19 #ifndef QGSLUDIALOG_H
20 #define QGSLUDIALOG_H
21 
22 #include "ui_qgsludialogbase.h"
23 #include "qgisgui.h"
24 
25 
26 class GUI_EXPORT QgsLUDialog: public QDialog, private Ui::QgsLUDialogBase
27 {
28  Q_OBJECT
29  public:
30  QgsLUDialog( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
31  ~QgsLUDialog();
32  QString lowerValue() const;
33  void setLowerValue( QString val );
34  QString upperValue() const;
35  void setUpperValue( QString val );
36 };
37 
38 #endif