[f5a86a] | 1 | /*
|
---|
| 2 | * Dialog.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jan 5, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #include <cassert>
|
---|
| 9 |
|
---|
| 10 | #include "UIElements/Dialog.hpp"
|
---|
| 11 |
|
---|
[2ededc2] | 12 | #include "vector.hpp"
|
---|
| 13 |
|
---|
[f5a86a] | 14 | using namespace std;
|
---|
| 15 |
|
---|
| 16 | Dialog::Dialog()
|
---|
| 17 | {
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | Dialog::~Dialog()
|
---|
| 21 | {
|
---|
[45f5d6] | 22 | list<Query*>::iterator iter;
|
---|
| 23 | for(iter=queries.begin();iter!=queries.end();iter++){
|
---|
| 24 | delete (*iter);
|
---|
| 25 | }
|
---|
[f5a86a] | 26 | }
|
---|
| 27 |
|
---|
[45f5d6] | 28 | void Dialog::registerQuery(Query *query){
|
---|
| 29 | queries.push_back(query);
|
---|
| 30 | }
|
---|
[f5a86a] | 31 |
|
---|
[45f5d6] | 32 | bool Dialog::display(){
|
---|
| 33 | list<Query*>::iterator iter;
|
---|
| 34 | bool retval = true;
|
---|
| 35 | for(iter=queries.begin(); iter!=queries.end(); iter++){
|
---|
| 36 | retval &= (*iter)->handle();
|
---|
| 37 | // if any query fails (is canceled), we can end the handling process
|
---|
| 38 | if(!retval)
|
---|
| 39 | break;
|
---|
| 40 | }
|
---|
| 41 | if (retval){
|
---|
| 42 | // if all queries succeeded we can set the targets to appropriate values
|
---|
| 43 | for(iter=queries.begin(); iter!=queries.end(); iter++) {
|
---|
| 44 | (*iter)->setResult();
|
---|
| 45 | }
|
---|
| 46 | }
|
---|
| 47 | return retval;
|
---|
[f5a86a] | 48 | }
|
---|
| 49 |
|
---|
[7aa000] | 50 | /****************** Query types Infrastructure **************************/
|
---|
| 51 |
|
---|
| 52 | // Base class
|
---|
[a2ab15] | 53 | Dialog::Query::Query(string _title, string _description) :
|
---|
| 54 | title(_title),
|
---|
| 55 | description(_description)
|
---|
[45f5d6] | 56 | {}
|
---|
[f5a86a] | 57 |
|
---|
[45f5d6] | 58 | Dialog::Query::~Query() {}
|
---|
| 59 |
|
---|
| 60 | const std::string Dialog::Query::getTitle() const{
|
---|
| 61 | return title;
|
---|
[f5a86a] | 62 | }
|
---|
| 63 |
|
---|
[a2ab15] | 64 | const std::string Dialog::Query::getDescription() const{
|
---|
| 65 | return description;
|
---|
| 66 | }
|
---|
[86466e] | 67 | // empty Queries
|
---|
| 68 |
|
---|
| 69 | Dialog::EmptyQuery::EmptyQuery(string title, std::string description) :
|
---|
| 70 | Query(title, description)
|
---|
| 71 | {}
|
---|
| 72 |
|
---|
| 73 | Dialog::EmptyQuery::~EmptyQuery() {}
|
---|
| 74 |
|
---|
| 75 | void Dialog::EmptyQuery::setResult() {
|
---|
| 76 | }
|
---|
| 77 |
|
---|
[7aa000] | 78 | // Int Queries
|
---|
| 79 |
|
---|
[a2ab15] | 80 | Dialog::IntQuery::IntQuery(string title,int *_target, std::string description) :
|
---|
| 81 | Query(title, description), target(_target)
|
---|
[45f5d6] | 82 | {}
|
---|
| 83 |
|
---|
| 84 | Dialog::IntQuery::~IntQuery() {}
|
---|
| 85 |
|
---|
| 86 | void Dialog::IntQuery::setResult() {
|
---|
| 87 | *target = tmp;
|
---|
[f5a86a] | 88 | }
|
---|
[45f5d6] | 89 |
|
---|
[7aa000] | 90 | // String Queries
|
---|
| 91 |
|
---|
[a2ab15] | 92 | Dialog::StringQuery::StringQuery(string title,string *_target, std::string _description) :
|
---|
| 93 | Query(title, _description), target(_target)
|
---|
[45f5d6] | 94 | {}
|
---|
| 95 |
|
---|
| 96 | Dialog::StringQuery::~StringQuery() {};
|
---|
| 97 |
|
---|
| 98 | void Dialog::StringQuery::setResult() {
|
---|
| 99 | *target = tmp;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
[2ededc2] | 102 | // Double Queries
|
---|
| 103 |
|
---|
[a2ab15] | 104 | Dialog::DoubleQuery::DoubleQuery(string title,double *_target, std::string _description) :
|
---|
| 105 | Query(title, _description), target(_target)
|
---|
[2ededc2] | 106 | {}
|
---|
| 107 |
|
---|
| 108 | Dialog::DoubleQuery::~DoubleQuery() {};
|
---|
| 109 |
|
---|
| 110 | void Dialog::DoubleQuery::setResult() {
|
---|
| 111 | *target = tmp;
|
---|
| 112 | }
|
---|
| 113 |
|
---|
| 114 |
|
---|
[7aa000] | 115 | // Molecule Queries
|
---|
| 116 |
|
---|
[a2ab15] | 117 | Dialog::MoleculeQuery::MoleculeQuery(string title, molecule **_target, MoleculeListClass *_molecules, std::string _description) :
|
---|
| 118 | Query(title, _description),
|
---|
[24a5e0] | 119 | tmp(0),
|
---|
[7aa000] | 120 | molecules(_molecules),
|
---|
[24a5e0] | 121 | target(_target)
|
---|
| 122 |
|
---|
[7aa000] | 123 | {}
|
---|
| 124 |
|
---|
| 125 | Dialog::MoleculeQuery::~MoleculeQuery() {}
|
---|
| 126 |
|
---|
| 127 | void Dialog::MoleculeQuery::setResult() {
|
---|
| 128 | *target = tmp;
|
---|
| 129 | }
|
---|
[2ededc2] | 130 |
|
---|
| 131 | // Vector Queries
|
---|
| 132 |
|
---|
[a2ab15] | 133 | Dialog::VectorQuery::VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check, std::string _description) :
|
---|
| 134 | Query(title, _description),
|
---|
[24a5e0] | 135 | cellSize(_cellSize),
|
---|
| 136 | check(_check),
|
---|
| 137 | target(_target)
|
---|
[2ededc2] | 138 | {
|
---|
| 139 | tmp = new Vector();
|
---|
| 140 | }
|
---|
| 141 |
|
---|
| 142 | Dialog::VectorQuery::~VectorQuery()
|
---|
| 143 | {
|
---|
| 144 | delete tmp;
|
---|
| 145 | }
|
---|
| 146 |
|
---|
| 147 | void Dialog::VectorQuery::setResult() {
|
---|
| 148 | *target = *tmp;
|
---|
| 149 | }
|
---|
[5a7243] | 150 |
|
---|
| 151 | // Element Queries
|
---|
[a2ab15] | 152 | Dialog::ElementQuery::ElementQuery(std::string title, const element **_target, std::string _description) :
|
---|
| 153 | Query(title, _description),
|
---|
[5605032] | 154 | tmp(0),
|
---|
| 155 | target(_target)
|
---|
[5a7243] | 156 | {}
|
---|
| 157 |
|
---|
| 158 | Dialog::ElementQuery::~ElementQuery(){}
|
---|
| 159 |
|
---|
| 160 | void Dialog::ElementQuery::setResult(){
|
---|
| 161 | *target=tmp;
|
---|
| 162 | }
|
---|