Quantum GIS API Documentation
1.7.4
|
00001 /*************************************************************************** 00002 qgsludialog.cpp - description 00003 ------------------- 00004 begin : September 2004 00005 copyright : (C) 2004 by Marco Hugentobler 00006 email : marco.hugentobler@autoform.ch 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 /* $Id$ */ 00018 00019 #include "qgsludialog.h" 00020 00021 00022 QgsLUDialog::QgsLUDialog( QWidget *parent, Qt::WFlags fl ) 00023 : QDialog( parent, fl ) 00024 { 00025 setupUi( this ); 00026 } 00027 00028 QgsLUDialog::~QgsLUDialog() 00029 { 00030 00031 } 00032 00033 QString QgsLUDialog::lowerValue() const 00034 { 00035 return mLowerEdit->text(); 00036 } 00037 00038 QString QgsLUDialog::upperValue() const 00039 { 00040 return mUpperEdit->text(); 00041 } 00042 00043 void QgsLUDialog::setLowerValue( QString val ) 00044 { 00045 mLowerEdit->setText( val ); 00046 } 00047 00048 void QgsLUDialog::setUpperValue( QString val ) 00049 { 00050 mUpperEdit->setText( val ); 00051 }