Quantum GIS API Documentation  1.7.5-Wroclaw
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
qgsludialog.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsludialog.cpp - 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 #include "qgsludialog.h"
20 
21 
22 QgsLUDialog::QgsLUDialog( QWidget *parent, Qt::WFlags fl )
23  : QDialog( parent, fl )
24 {
25  setupUi( this );
26 }
27 
29 {
30 
31 }
32 
33 QString QgsLUDialog::lowerValue() const
34 {
35  return mLowerEdit->text();
36 }
37 
38 QString QgsLUDialog::upperValue() const
39 {
40  return mUpperEdit->text();
41 }
42 
43 void QgsLUDialog::setLowerValue( QString val )
44 {
45  mLowerEdit->setText( val );
46 }
47 
48 void QgsLUDialog::setUpperValue( QString val )
49 {
50  mUpperEdit->setText( val );
51 }