QGIS API Documentation  2.2.0-Valmiera
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgsexpressionbuilderdialog.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgisexpressionbuilderdialog.h - A genric expression string builder dialog.
3  --------------------------------------
4  Date : 29-May-2011
5  Copyright : (C) 2011 by Nathan Woodrow
6  Email : woodrow.nathan at gmail dot com
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 
17 #include <QSettings>
18 
19 QgsExpressionBuilderDialog::QgsExpressionBuilderDialog( QgsVectorLayer* layer, QString startText, QWidget* parent, QString key )
20  : QDialog( parent ), mRecentKey( key )
21 {
22  setupUi( this );
23 
24  QPushButton* okButton = buttonBox->button( QDialogButtonBox::Ok );
25  connect( builder, SIGNAL( expressionParsed( bool ) ), okButton, SLOT( setEnabled( bool ) ) );
26 
27  builder->setLayer( layer );
28  builder->setExpressionText( startText );
29  builder->loadFieldNames();
30  builder->loadRecent( mRecentKey );
31 
32  QSettings settings;
33  restoreGeometry( settings.value( "/Windows/ExpressionBuilderDialog/geometry" ).toByteArray() );
34 }
35 
37 {
38  return builder;
39 }
40 
42 {
43  builder->setExpressionText( text );
44 }
45 
47 {
48  return builder->expressionText();
49 }
50 
52 {
53  QDialog::done( r );
54 
55  QSettings settings;
56  settings.setValue( "/Windows/ExpressionBuilderDialog/geometry", saveGeometry() );
57 }
58 
60 {
61  builder->saveToRecent( mRecentKey );
63 }
64 
66 {
67  // Store in child widget only.
68  builder->setGeomCalculator( da );
69 }