Quantum GIS API Documentation  1.8
src/gui/qgsludialog.cpp
Go to the documentation of this file.
00001 /***************************************************************************
00002                          qgsludialog.cpp  -  description
00003                              -------------------
00004     begin                : September 2004
00005     copyright            : (C) 2004 by Marco Hugentobler
00006     email                : [email protected]
00007  ***************************************************************************/
00008 
00009 /***************************************************************************
00010  *                                                                         *
00011  *   This program is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU General Public License as published by  *
00013  *   the Free Software Foundation; either version 2 of the License, or     *
00014  *   (at your option) any later version.                                   *
00015  *                                                                         *
00016  ***************************************************************************/
00017 
00018 #include "qgsludialog.h"
00019 
00020 
00021 QgsLUDialog::QgsLUDialog( QWidget *parent, Qt::WFlags fl )
00022     : QDialog( parent, fl )
00023 {
00024   setupUi( this );
00025 }
00026 
00027 QgsLUDialog::~QgsLUDialog()
00028 {
00029 
00030 }
00031 
00032 QString QgsLUDialog::lowerValue() const
00033 {
00034   return mLowerEdit->text();
00035 }
00036 
00037 QString QgsLUDialog::upperValue() const
00038 {
00039   return mUpperEdit->text();
00040 }
00041 
00042 void QgsLUDialog::setLowerValue( QString val )
00043 {
00044   mLowerEdit->setText( val );
00045 }
00046 
00047 void QgsLUDialog::setUpperValue( QString val )
00048 {
00049   mUpperEdit->setText( val );
00050 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines