1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * QTDialog.cpp
|
---|
10 | *
|
---|
11 | * Created on: Jan 18, 2010
|
---|
12 | * Author: crueger
|
---|
13 | */
|
---|
14 |
|
---|
15 | // include config.h
|
---|
16 | #ifdef HAVE_CONFIG_H
|
---|
17 | #include <config.h>
|
---|
18 | #endif
|
---|
19 |
|
---|
20 | #include "UIElements/QT4/QTDialog.hpp"
|
---|
21 |
|
---|
22 | #include <boost/lexical_cast.hpp>
|
---|
23 |
|
---|
24 | #include <string>
|
---|
25 | #include <sstream>
|
---|
26 | #include <limits>
|
---|
27 |
|
---|
28 | #include <Qt/qboxlayout.h>
|
---|
29 | #include <Qt/qlabel.h>
|
---|
30 | #include <Qt/qspinbox.h>
|
---|
31 | #include <QtGui/QDoubleSpinBox>
|
---|
32 | #include <Qt/qlineedit.h>
|
---|
33 | #include <Qt/qlistwidget.h>
|
---|
34 | #include <Qt/qdialogbuttonbox.h>
|
---|
35 | #include <Qt/qpushbutton.h>
|
---|
36 | #include <Qt/qcombobox.h>
|
---|
37 |
|
---|
38 | #include <boost/lexical_cast.hpp>
|
---|
39 |
|
---|
40 | #include "Helpers/MemDebug.hpp"
|
---|
41 |
|
---|
42 | #include "World.hpp"
|
---|
43 | #include "periodentafel.hpp"
|
---|
44 | #include "atom.hpp"
|
---|
45 | #include "element.hpp"
|
---|
46 | #include "molecule.hpp"
|
---|
47 | #include "Descriptors/AtomIdDescriptor.hpp"
|
---|
48 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
---|
49 | #include "LinearAlgebra/Matrix.hpp"
|
---|
50 | #include "Box.hpp"
|
---|
51 |
|
---|
52 |
|
---|
53 | using namespace std;
|
---|
54 |
|
---|
55 | QTDialog::QTDialog() :
|
---|
56 | QDialog(0)
|
---|
57 | {
|
---|
58 | // creating and filling of the Dialog window
|
---|
59 | mainLayout = new QVBoxLayout();
|
---|
60 | inputLayout = new QVBoxLayout();
|
---|
61 | buttonLayout = new QVBoxLayout();
|
---|
62 | setLayout(mainLayout);
|
---|
63 | mainLayout->addLayout(inputLayout);
|
---|
64 | mainLayout->addLayout(buttonLayout);
|
---|
65 | buttons = new QDialogButtonBox(QDialogButtonBox::Ok| QDialogButtonBox::Cancel);
|
---|
66 | buttonLayout->addWidget(buttons);
|
---|
67 |
|
---|
68 | // Disable the ok button until something was entered
|
---|
69 | buttons->button(QDialogButtonBox::Ok)->setEnabled(false);
|
---|
70 |
|
---|
71 | // connect the buttons to their appropriate slots
|
---|
72 | connect(buttons, SIGNAL(accepted()), this, SLOT(accept()));
|
---|
73 | connect(buttons, SIGNAL(rejected()), this, SLOT(reject()));
|
---|
74 | }
|
---|
75 |
|
---|
76 | QTDialog::~QTDialog()
|
---|
77 | {
|
---|
78 | }
|
---|
79 |
|
---|
80 | bool QTDialog::display(){
|
---|
81 | // Button state might have changed by some update that
|
---|
82 | // was done during query construction. To make sure
|
---|
83 | // the state is correct, we just call update one more time.
|
---|
84 | update();
|
---|
85 | if(exec()) {
|
---|
86 | setAll();
|
---|
87 | return true;
|
---|
88 | }
|
---|
89 | else {
|
---|
90 | return false;
|
---|
91 | }
|
---|
92 | }
|
---|
93 |
|
---|
94 | void QTDialog::update(){
|
---|
95 | buttons->button(QDialogButtonBox::Ok)->setEnabled(checkAll());
|
---|
96 | }
|
---|
97 |
|
---|
98 | /************************** Query Infrastructure ************************/
|
---|
99 |
|
---|
100 | void QTDialog::queryEmpty(const char* title, std::string)
|
---|
101 | {
|
---|
102 | registerQuery(new EmptyQTQuery(title,inputLayout,this));
|
---|
103 | }
|
---|
104 |
|
---|
105 | void QTDialog::queryBoolean(const char*,string){
|
---|
106 | // TODO
|
---|
107 | ASSERT(false, "Not implemented yet");
|
---|
108 | }
|
---|
109 |
|
---|
110 | void QTDialog::queryAtom(const char*, std::string){
|
---|
111 | // TODO
|
---|
112 | ASSERT(false, "Not implemented yet");
|
---|
113 | }
|
---|
114 |
|
---|
115 | void QTDialog::queryAtoms(const char*, std::string){
|
---|
116 | // TODO
|
---|
117 | ASSERT(false, "Not implemented yet");
|
---|
118 | }
|
---|
119 |
|
---|
120 | void QTDialog::queryBox(const char*, std::string){
|
---|
121 | // TODO
|
---|
122 | ASSERT(false, "Not implemented yet");
|
---|
123 | }
|
---|
124 |
|
---|
125 |
|
---|
126 | void QTDialog::queryInt(const char *title,string)
|
---|
127 | {
|
---|
128 | registerQuery(new IntQTQuery(title,inputLayout,this));
|
---|
129 | }
|
---|
130 |
|
---|
131 | void QTDialog::queryInts(const char *title,string)
|
---|
132 | {
|
---|
133 | registerQuery(new IntsQTQuery(title,inputLayout,this));
|
---|
134 | }
|
---|
135 |
|
---|
136 | void QTDialog::queryDouble(const char* title,string)
|
---|
137 | {
|
---|
138 | registerQuery(new DoubleQTQuery(title,inputLayout,this));
|
---|
139 | }
|
---|
140 |
|
---|
141 | void QTDialog::queryDoubles(const char* title,string)
|
---|
142 | {
|
---|
143 | registerQuery(new DoublesQTQuery(title,inputLayout,this));
|
---|
144 | }
|
---|
145 |
|
---|
146 | void QTDialog::queryString(const char* title,string)
|
---|
147 | {
|
---|
148 | registerQuery(new StringQTQuery(title,inputLayout,this));
|
---|
149 | }
|
---|
150 |
|
---|
151 | void QTDialog::queryStrings(const char* title,string)
|
---|
152 | {
|
---|
153 | registerQuery(new StringsQTQuery(title,inputLayout,this));
|
---|
154 | }
|
---|
155 |
|
---|
156 | void QTDialog::queryMolecule(const char *title,string)
|
---|
157 | {
|
---|
158 | registerQuery(new MoleculeQTQuery(title,inputLayout,this));
|
---|
159 | }
|
---|
160 |
|
---|
161 | void QTDialog::queryMolecules(const char *title,string)
|
---|
162 | {
|
---|
163 | // TODO
|
---|
164 | ASSERT(false, "Not implemented yet");
|
---|
165 | }
|
---|
166 |
|
---|
167 | void QTDialog::queryVector(const char* title, bool check,string)
|
---|
168 | {
|
---|
169 | registerQuery(new VectorQTQuery(title,check,inputLayout,this));
|
---|
170 | }
|
---|
171 |
|
---|
172 | void QTDialog::queryVectors(const char* title, bool check,string)
|
---|
173 | {
|
---|
174 | // TODO
|
---|
175 | ASSERT(false, "Not implemented yet");
|
---|
176 | }
|
---|
177 |
|
---|
178 | void QTDialog::queryElement(const char* title, std::string)
|
---|
179 | {
|
---|
180 | registerQuery(new ElementQTQuery(title,inputLayout,this));
|
---|
181 | }
|
---|
182 |
|
---|
183 | void QTDialog::queryElements(const char* title, std::string)
|
---|
184 | {
|
---|
185 | // TODO
|
---|
186 | ASSERT(false, "Not implemented yet");
|
---|
187 | }
|
---|
188 |
|
---|
189 | void QTDialog::queryFile(const char* title, std::string)
|
---|
190 | {
|
---|
191 | registerQuery(new FileQTQuery(title,inputLayout,this));
|
---|
192 | }
|
---|
193 |
|
---|
194 | /************************** Query Objects *******************************/
|
---|
195 |
|
---|
196 | QTDialog::IntQTQuery::IntQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
197 | Dialog::IntQuery(_title),
|
---|
198 | parent(_parent)
|
---|
199 | {
|
---|
200 | thisLayout = new QHBoxLayout();
|
---|
201 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
202 | inputBox = new QSpinBox();
|
---|
203 | inputBox->setValue(0);
|
---|
204 | parent->addLayout(thisLayout);
|
---|
205 | thisLayout->addWidget(titleLabel);
|
---|
206 | thisLayout->addWidget(inputBox);
|
---|
207 |
|
---|
208 | pipe = new IntQTQueryPipe(&tmp,_dialog);
|
---|
209 | pipe->update(inputBox->value());
|
---|
210 | connect(inputBox,SIGNAL(valueChanged(int)),pipe,SLOT(update(int)));
|
---|
211 | }
|
---|
212 |
|
---|
213 | QTDialog::IntQTQuery::~IntQTQuery()
|
---|
214 | {
|
---|
215 | delete pipe;
|
---|
216 | }
|
---|
217 |
|
---|
218 | bool QTDialog::IntQTQuery::handle() {
|
---|
219 | return true;
|
---|
220 | }
|
---|
221 |
|
---|
222 |
|
---|
223 | QTDialog::IntsQTQuery::IntsQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
224 | Dialog::IntsQuery(_title),
|
---|
225 | parent(_parent)
|
---|
226 | {
|
---|
227 | QHBoxLayout * thisHLayout = new QHBoxLayout();
|
---|
228 | QVBoxLayout * thisV1Layout = new QVBoxLayout();
|
---|
229 | QVBoxLayout * thisV2Layout = new QVBoxLayout();
|
---|
230 |
|
---|
231 | QLabel *titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
232 | QLabel *inputLabel = new QLabel("Enter to add");
|
---|
233 | QListWidget* inputList = new QListWidget();
|
---|
234 | inputList->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
---|
235 | QLineEdit* inputBox = new QLineEdit();
|
---|
236 | inputLabel->setBuddy(inputBox);
|
---|
237 | titleLabel->setBuddy(inputList);
|
---|
238 | QPushButton* AddButton = new QPushButton("Add");
|
---|
239 | AddButton->setEnabled(false);
|
---|
240 | QPushButton* RemoveButton = new QPushButton("Remove");
|
---|
241 | RemoveButton->setEnabled(false);
|
---|
242 |
|
---|
243 | thisV1Layout->addWidget(titleLabel);
|
---|
244 | thisV1Layout->addWidget(inputList);
|
---|
245 | thisV2Layout->addWidget(inputLabel);
|
---|
246 | thisV2Layout->addWidget(inputBox);
|
---|
247 | thisV2Layout->addWidget(AddButton);
|
---|
248 | thisV2Layout->addWidget(RemoveButton);
|
---|
249 | parent->addLayout(thisHLayout);
|
---|
250 | thisHLayout->addLayout(thisV1Layout);
|
---|
251 | thisHLayout->addLayout(thisV2Layout);
|
---|
252 |
|
---|
253 | pipe = new QTQueryListPipe<int>(&tmp,_dialog,inputBox,inputList,AddButton,RemoveButton);
|
---|
254 | connect(inputBox,SIGNAL(textChanged(const QString&)),pipe,SLOT(IntegerEntered(const QString&)));
|
---|
255 | connect(inputList,SIGNAL(itemSelectionChanged()),pipe,SLOT(IntegerSelected()));
|
---|
256 | connect(AddButton,SIGNAL(Clicked()),pipe,SLOT(AddValue()));
|
---|
257 | connect(RemoveButton,SIGNAL(Clicked()),pipe,SLOT(RemoveRow()));
|
---|
258 | }
|
---|
259 |
|
---|
260 | QTDialog::IntsQTQuery::~IntsQTQuery()
|
---|
261 | {
|
---|
262 | delete pipe;
|
---|
263 | }
|
---|
264 |
|
---|
265 | bool QTDialog::IntsQTQuery::handle() {
|
---|
266 | return true;
|
---|
267 | }
|
---|
268 |
|
---|
269 |
|
---|
270 | QTDialog::DoubleQTQuery::DoubleQTQuery(string title,QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
271 | Dialog::DoubleQuery(title),
|
---|
272 | parent(_parent)
|
---|
273 | {
|
---|
274 | thisLayout = new QHBoxLayout();
|
---|
275 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
276 | inputBox = new QDoubleSpinBox();
|
---|
277 | inputBox->setValue(0);
|
---|
278 | inputBox->setRange(-numeric_limits<double>::max(),numeric_limits<double>::max());
|
---|
279 | inputBox->setDecimals(3);
|
---|
280 | parent->addLayout(thisLayout);
|
---|
281 | thisLayout->addWidget(titleLabel);
|
---|
282 | thisLayout->addWidget(inputBox);
|
---|
283 |
|
---|
284 | pipe = new DoubleQTQueryPipe(&tmp,_dialog);
|
---|
285 | pipe->update(inputBox->value());
|
---|
286 | connect(inputBox,SIGNAL(valueChanged(double)),pipe,SLOT(update(double)));
|
---|
287 | }
|
---|
288 |
|
---|
289 | QTDialog::DoubleQTQuery::~DoubleQTQuery()
|
---|
290 | {
|
---|
291 | delete pipe;
|
---|
292 | }
|
---|
293 |
|
---|
294 | bool QTDialog::DoubleQTQuery::handle() {
|
---|
295 | return true;
|
---|
296 | }
|
---|
297 |
|
---|
298 |
|
---|
299 | QTDialog::DoublesQTQuery::DoublesQTQuery(string title,QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
300 | Dialog::DoublesQuery(title),
|
---|
301 | parent(_parent)
|
---|
302 | {
|
---|
303 | QHBoxLayout * thisHLayout = new QHBoxLayout();
|
---|
304 | QVBoxLayout * thisV1Layout = new QVBoxLayout();
|
---|
305 | QVBoxLayout * thisV2Layout = new QVBoxLayout();
|
---|
306 |
|
---|
307 | QLabel *titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
308 | QLabel *inputLabel = new QLabel("Enter to add");
|
---|
309 | QListWidget* inputList = new QListWidget();
|
---|
310 | inputList->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
---|
311 | QLineEdit* inputBox = new QLineEdit();
|
---|
312 | inputLabel->setBuddy(inputBox);
|
---|
313 | titleLabel->setBuddy(inputList);
|
---|
314 | QPushButton* AddButton = new QPushButton("Add");
|
---|
315 | AddButton->setEnabled(false);
|
---|
316 | QPushButton* RemoveButton = new QPushButton("Remove");
|
---|
317 | RemoveButton->setEnabled(false);
|
---|
318 |
|
---|
319 | thisV1Layout->addWidget(titleLabel);
|
---|
320 | thisV1Layout->addWidget(inputList);
|
---|
321 | thisV2Layout->addWidget(inputLabel);
|
---|
322 | thisV2Layout->addWidget(inputBox);
|
---|
323 | thisV2Layout->addWidget(AddButton);
|
---|
324 | thisV2Layout->addWidget(RemoveButton);
|
---|
325 | parent->addLayout(thisHLayout);
|
---|
326 | thisHLayout->addLayout(thisV1Layout);
|
---|
327 | thisHLayout->addLayout(thisV2Layout);
|
---|
328 |
|
---|
329 | pipe = new QTQueryListPipe<double>(&tmp,_dialog,inputBox,inputList,AddButton,RemoveButton);
|
---|
330 | connect(inputBox,SIGNAL(textChanged(const QString&)),pipe,SLOT(IntegerEntered(const QString&)));
|
---|
331 | connect(inputList,SIGNAL(itemSelectionChanged()),pipe,SLOT(IntegerSelected()));
|
---|
332 | connect(AddButton,SIGNAL(Clicked()),pipe,SLOT(AddValue()));
|
---|
333 | connect(RemoveButton,SIGNAL(Clicked()),pipe,SLOT(RemoveRow()));}
|
---|
334 |
|
---|
335 | QTDialog::DoublesQTQuery::~DoublesQTQuery()
|
---|
336 | {
|
---|
337 | delete pipe;
|
---|
338 | }
|
---|
339 |
|
---|
340 | bool QTDialog::DoublesQTQuery::handle() {
|
---|
341 | return true;
|
---|
342 | }
|
---|
343 |
|
---|
344 |
|
---|
345 | QTDialog::StringQTQuery::StringQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
346 | Dialog::StringQuery(_title),
|
---|
347 | parent(_parent)
|
---|
348 | {
|
---|
349 | thisLayout = new QHBoxLayout();
|
---|
350 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
351 | inputBox = new QLineEdit();
|
---|
352 | parent->addLayout(thisLayout);
|
---|
353 | thisLayout->addWidget(titleLabel);
|
---|
354 | thisLayout->addWidget(inputBox);
|
---|
355 |
|
---|
356 | pipe = new StringQTQueryPipe(&tmp,_dialog);
|
---|
357 | pipe->update(inputBox->text());
|
---|
358 | connect(inputBox,SIGNAL(textChanged(const QString&)),pipe,SLOT(update(const QString&)));
|
---|
359 | }
|
---|
360 |
|
---|
361 | QTDialog::StringQTQuery::~StringQTQuery()
|
---|
362 | {
|
---|
363 | delete pipe;
|
---|
364 | }
|
---|
365 |
|
---|
366 | // All values besides the empty std::string are valid
|
---|
367 | bool QTDialog::StringQTQuery::handle()
|
---|
368 | {
|
---|
369 | return tmp!="";
|
---|
370 | }
|
---|
371 |
|
---|
372 | QTDialog::StringsQTQuery::StringsQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
373 | Dialog::StringsQuery(_title),
|
---|
374 | parent(_parent)
|
---|
375 | {
|
---|
376 | QHBoxLayout * thisHLayout = new QHBoxLayout();
|
---|
377 | QVBoxLayout * thisV1Layout = new QVBoxLayout();
|
---|
378 | QVBoxLayout * thisV2Layout = new QVBoxLayout();
|
---|
379 |
|
---|
380 | QLabel *titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
381 | QLabel *inputLabel = new QLabel("Enter to add");
|
---|
382 | QListWidget* inputList = new QListWidget();
|
---|
383 | inputList->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
---|
384 | QLineEdit* inputBox = new QLineEdit();
|
---|
385 | inputLabel->setBuddy(inputBox);
|
---|
386 | titleLabel->setBuddy(inputList);
|
---|
387 | QPushButton* AddButton = new QPushButton("Add");
|
---|
388 | AddButton->setEnabled(false);
|
---|
389 | QPushButton* RemoveButton = new QPushButton("Remove");
|
---|
390 | RemoveButton->setEnabled(false);
|
---|
391 |
|
---|
392 | thisV1Layout->addWidget(titleLabel);
|
---|
393 | thisV1Layout->addWidget(inputList);
|
---|
394 | thisV2Layout->addWidget(inputLabel);
|
---|
395 | thisV2Layout->addWidget(inputBox);
|
---|
396 | thisV2Layout->addWidget(AddButton);
|
---|
397 | thisV2Layout->addWidget(RemoveButton);
|
---|
398 | parent->addLayout(thisHLayout);
|
---|
399 | thisHLayout->addLayout(thisV1Layout);
|
---|
400 | thisHLayout->addLayout(thisV2Layout);
|
---|
401 |
|
---|
402 | pipe = new QTQueryListPipe<std::string>(&tmp,_dialog,inputBox,inputList,AddButton,RemoveButton);
|
---|
403 | connect(inputBox,SIGNAL(textChanged(const QString&)),pipe,SLOT(IntegerEntered(const QString&)));
|
---|
404 | connect(inputList,SIGNAL(itemSelectionChanged()),pipe,SLOT(IntegerSelected()));
|
---|
405 | connect(AddButton,SIGNAL(Clicked()),pipe,SLOT(AddValue()));
|
---|
406 | connect(RemoveButton,SIGNAL(Clicked()),pipe,SLOT(RemoveRow()));}
|
---|
407 |
|
---|
408 | QTDialog::StringsQTQuery::~StringsQTQuery()
|
---|
409 | {
|
---|
410 | delete pipe;
|
---|
411 | }
|
---|
412 |
|
---|
413 | // All values besides the empty std::string are valid
|
---|
414 | bool QTDialog::StringsQTQuery::handle()
|
---|
415 | {
|
---|
416 | // dissect by ","
|
---|
417 | std::string::iterator olditer = temp.begin();
|
---|
418 | for(string::iterator iter = temp.begin(); iter != temp.end(); ++iter) {
|
---|
419 | if (*iter == ' ') {
|
---|
420 | tmp.push_back(string(iter, olditer));
|
---|
421 | olditer = iter;
|
---|
422 | }
|
---|
423 | }
|
---|
424 | if (olditer != temp.begin()) // insert last part also
|
---|
425 | tmp.push_back(string(olditer, temp.end()));
|
---|
426 |
|
---|
427 | return temp!="";
|
---|
428 | }
|
---|
429 |
|
---|
430 | QTDialog::MoleculeQTQuery::MoleculeQTQuery(string _title, QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
431 | Dialog::MoleculeQuery(_title),
|
---|
432 | parent(_parent)
|
---|
433 | {
|
---|
434 | thisLayout = new QHBoxLayout();
|
---|
435 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
436 | inputBox = new QComboBox();
|
---|
437 | // add all molecules to the combo box
|
---|
438 | vector<molecule*> molecules = World::getInstance().getAllMolecules();
|
---|
439 | for(vector<molecule*>::iterator iter = molecules.begin();
|
---|
440 | iter != molecules.end();
|
---|
441 | ++iter) {
|
---|
442 | std::stringstream sstr;
|
---|
443 | sstr << (*iter)->IndexNr << "\t" << (*iter)->getName();
|
---|
444 | inputBox->addItem(QString(sstr.str().c_str()),QVariant((*iter)->IndexNr));
|
---|
445 | }
|
---|
446 | parent->addLayout(thisLayout);
|
---|
447 | thisLayout->addWidget(titleLabel);
|
---|
448 | thisLayout->addWidget(inputBox);
|
---|
449 |
|
---|
450 | pipe = new MoleculeQTQueryPipe(&tmp,_dialog,inputBox);
|
---|
451 | pipe->update(inputBox->currentIndex());
|
---|
452 | connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int)));
|
---|
453 | }
|
---|
454 |
|
---|
455 | QTDialog::MoleculeQTQuery::~MoleculeQTQuery()
|
---|
456 | {
|
---|
457 | delete pipe;
|
---|
458 | }
|
---|
459 |
|
---|
460 | // Handling is easy, since the GUI makes it impossible to select invalid values
|
---|
461 | bool QTDialog::MoleculeQTQuery::handle()
|
---|
462 | {
|
---|
463 | return true;
|
---|
464 | }
|
---|
465 |
|
---|
466 | QTDialog::MoleculesQTQuery::MoleculesQTQuery(string _title, QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
467 | Dialog::MoleculesQuery(_title),
|
---|
468 | parent(_parent)
|
---|
469 | {
|
---|
470 | thisLayout = new QHBoxLayout();
|
---|
471 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
472 | inputBox = new QComboBox();
|
---|
473 | // add all molecules to the combo box
|
---|
474 | vector<molecule*> molecules = World::getInstance().getAllMolecules();
|
---|
475 | for(vector<molecule*>::iterator iter = molecules.begin();
|
---|
476 | iter != molecules.end();
|
---|
477 | ++iter) {
|
---|
478 | std::stringstream sstr;
|
---|
479 | sstr << (*iter)->IndexNr << "\t" << (*iter)->getName();
|
---|
480 | inputBox->addItem(QString(sstr.str().c_str()),QVariant((*iter)->IndexNr));
|
---|
481 | }
|
---|
482 | parent->addLayout(thisLayout);
|
---|
483 | thisLayout->addWidget(titleLabel);
|
---|
484 | thisLayout->addWidget(inputBox);
|
---|
485 |
|
---|
486 | pipe = new MoleculesQTQueryPipe(&tmp,_dialog,inputBox);
|
---|
487 | pipe->update(inputBox->currentIndex());
|
---|
488 | connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int)));
|
---|
489 | }
|
---|
490 |
|
---|
491 | QTDialog::MoleculesQTQuery::~MoleculesQTQuery()
|
---|
492 | {
|
---|
493 | delete pipe;
|
---|
494 | }
|
---|
495 |
|
---|
496 | // Handling is easy, since the GUI makes it impossible to select invalid values
|
---|
497 | bool QTDialog::MoleculesQTQuery::handle()
|
---|
498 | {
|
---|
499 | return true;
|
---|
500 | }
|
---|
501 |
|
---|
502 | QTDialog::VectorQTQuery::VectorQTQuery(std::string title, bool _check,QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
503 | Dialog::VectorQuery(title,_check),
|
---|
504 | parent(_parent)
|
---|
505 | {
|
---|
506 | mainLayout= new QHBoxLayout();
|
---|
507 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
508 | mainLayout->addWidget(titleLabel);
|
---|
509 | subLayout = new QVBoxLayout();
|
---|
510 | mainLayout->addLayout(subLayout);
|
---|
511 | QComboBox* inputBox = new QComboBox();
|
---|
512 | coordLayout = new QHBoxLayout();
|
---|
513 | subLayout->addLayout(coordLayout);
|
---|
514 | coordLabel = new QLabel(QString("x,y,z"));
|
---|
515 | coordLayout->addWidget(coordLabel);
|
---|
516 | coordInput = new QDoubleSpinBox();
|
---|
517 | // coordInput->setRange(0,M.at(i,i));
|
---|
518 | coordInput->setDecimals(3);
|
---|
519 | coordLayout->addWidget(coordInput);
|
---|
520 | pipe = new VectorQTQueryPipe(&(tmp),_dialog,inputBox);
|
---|
521 | //pipe->update(coordInput->value());
|
---|
522 | connect(coordInput,SIGNAL(valueChanged(double)),pipe,SLOT(update(double)));
|
---|
523 | parent->addLayout(mainLayout);
|
---|
524 | }
|
---|
525 |
|
---|
526 | QTDialog::VectorQTQuery::~VectorQTQuery()
|
---|
527 | {}
|
---|
528 |
|
---|
529 | bool QTDialog::VectorQTQuery::handle() {
|
---|
530 | return true;
|
---|
531 | }
|
---|
532 |
|
---|
533 |
|
---|
534 | QTDialog::VectorsQTQuery::VectorsQTQuery(std::string title, bool _check,QBoxLayout *_parent,QTDialog *_dialog) :
|
---|
535 | Dialog::VectorsQuery(title,_check),
|
---|
536 | parent(_parent)
|
---|
537 | {
|
---|
538 | mainLayout= new QHBoxLayout();
|
---|
539 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
540 | mainLayout->addWidget(titleLabel);
|
---|
541 | subLayout = new QVBoxLayout();
|
---|
542 | mainLayout->addLayout(subLayout);
|
---|
543 | QComboBox* inputBox = new QComboBox();
|
---|
544 | coordLayout = new QHBoxLayout();
|
---|
545 | subLayout->addLayout(coordLayout);
|
---|
546 | coordLabel = new QLabel(QString("x,y,z"));
|
---|
547 | coordLayout->addWidget(coordLabel);
|
---|
548 | coordInput = new QDoubleSpinBox();
|
---|
549 | // coordInput->setRange(0,M.at(i,i));
|
---|
550 | coordInput->setDecimals(3);
|
---|
551 | coordLayout->addWidget(coordInput);
|
---|
552 | pipe = new VectorsQTQueryPipe(&(tmp),_dialog,inputBox);
|
---|
553 | //pipe->update(coordInput->value());
|
---|
554 | connect(coordInput,SIGNAL(valueChanged(double)),pipe,SLOT(update(double)));
|
---|
555 | parent->addLayout(mainLayout);
|
---|
556 | }
|
---|
557 |
|
---|
558 | QTDialog::VectorsQTQuery::~VectorsQTQuery()
|
---|
559 | {}
|
---|
560 |
|
---|
561 | bool QTDialog::VectorsQTQuery::handle() {
|
---|
562 | return true;
|
---|
563 | }
|
---|
564 |
|
---|
565 |
|
---|
566 | QTDialog::ElementQTQuery::ElementQTQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog) :
|
---|
567 | Dialog::ElementQuery(_title),
|
---|
568 | parent(_parent)
|
---|
569 | {
|
---|
570 | periodentafel *periode = World::getInstance().getPeriode();
|
---|
571 | thisLayout = new QHBoxLayout();
|
---|
572 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
573 | inputBox = new QComboBox();
|
---|
574 | for(periodentafel::const_iterator iter = periode->begin();
|
---|
575 | iter!=periode->end();
|
---|
576 | ++iter)
|
---|
577 | {
|
---|
578 | std::stringstream sstr;
|
---|
579 | sstr << (*iter).first << "\t" << (*iter).second->getName();
|
---|
580 | inputBox->addItem(QString(sstr.str().c_str()),QVariant((*iter).first));
|
---|
581 | }
|
---|
582 | parent->addLayout(thisLayout);
|
---|
583 | thisLayout->addWidget(titleLabel);
|
---|
584 | thisLayout->addWidget(inputBox);
|
---|
585 |
|
---|
586 | pipe = new ElementQTQueryPipe(&tmp,_dialog,inputBox);
|
---|
587 | pipe->update(inputBox->currentIndex());
|
---|
588 | connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int)));
|
---|
589 | }
|
---|
590 |
|
---|
591 | QTDialog::ElementQTQuery::~ElementQTQuery()
|
---|
592 | {
|
---|
593 | delete pipe;
|
---|
594 | }
|
---|
595 |
|
---|
596 | bool QTDialog::ElementQTQuery::handle(){
|
---|
597 | return true;
|
---|
598 | }
|
---|
599 |
|
---|
600 |
|
---|
601 | QTDialog::ElementsQTQuery::ElementsQTQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog) :
|
---|
602 | Dialog::ElementsQuery(_title),
|
---|
603 | parent(_parent)
|
---|
604 | {
|
---|
605 | periodentafel *periode = World::getInstance().getPeriode();
|
---|
606 | thisLayout = new QHBoxLayout();
|
---|
607 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
608 | inputBox = new QComboBox();
|
---|
609 | for(periodentafel::const_iterator iter = periode->begin();
|
---|
610 | iter!=periode->end();
|
---|
611 | ++iter)
|
---|
612 | {
|
---|
613 | std::stringstream sstr;
|
---|
614 | sstr << (*iter).first << "\t" << (*iter).second->getName();
|
---|
615 | inputBox->addItem(QString(sstr.str().c_str()),QVariant((*iter).first));
|
---|
616 | }
|
---|
617 | parent->addLayout(thisLayout);
|
---|
618 | thisLayout->addWidget(titleLabel);
|
---|
619 | thisLayout->addWidget(inputBox);
|
---|
620 |
|
---|
621 | pipe = new ElementsQTQueryPipe(&tmp,_dialog,inputBox);
|
---|
622 | pipe->update(inputBox->currentIndex());
|
---|
623 | connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int)));
|
---|
624 | }
|
---|
625 |
|
---|
626 | QTDialog::ElementsQTQuery::~ElementsQTQuery()
|
---|
627 | {
|
---|
628 | delete pipe;
|
---|
629 | }
|
---|
630 |
|
---|
631 | bool QTDialog::ElementsQTQuery::handle(){
|
---|
632 | return true;
|
---|
633 | }
|
---|
634 |
|
---|
635 | QTDialog::EmptyQTQuery::EmptyQTQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog) :
|
---|
636 | Dialog::EmptyQuery(_title),
|
---|
637 | parent(_parent)
|
---|
638 | {
|
---|
639 | titleLabel = new QLabel(QString(getTitle().c_str()));
|
---|
640 |
|
---|
641 | parent->addLayout(thisLayout);
|
---|
642 | thisLayout->addWidget(titleLabel);
|
---|
643 |
|
---|
644 | pipe = new EmptyQTQueryPipe(_dialog,titleLabel);
|
---|
645 | }
|
---|
646 |
|
---|
647 | QTDialog::EmptyQTQuery::~EmptyQTQuery()
|
---|
648 | {
|
---|
649 | delete pipe;
|
---|
650 | }
|
---|
651 |
|
---|
652 | bool QTDialog::EmptyQTQuery::handle(){
|
---|
653 | return true;
|
---|
654 | }
|
---|
655 |
|
---|
656 |
|
---|
657 | QTDialog::FileQTQuery::FileQTQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog) :
|
---|
658 | Dialog::FileQuery(_title),
|
---|
659 | parent(_parent)
|
---|
660 | {
|
---|
661 |
|
---|
662 | filenameLineEdit = new QLineEdit(_dialog);
|
---|
663 | filenameLineEdit->setText(QString());
|
---|
664 | filenameLineEdit->setReadOnly(true);
|
---|
665 |
|
---|
666 | filenameLabel = new QLabel(QString("Input file:"));
|
---|
667 | filenameLabel->setBuddy(filenameLineEdit);
|
---|
668 |
|
---|
669 | filedialogButton = new QPushButton("&Choose", _dialog);
|
---|
670 |
|
---|
671 | pipe = new FileQTQueryPipe(&tmp,_dialog,filenameLineEdit,filedialogButton);
|
---|
672 |
|
---|
673 | thisLayout = new QHBoxLayout();
|
---|
674 | parent->addLayout(thisLayout);
|
---|
675 | thisLayout->addWidget(filenameLabel);
|
---|
676 | thisLayout->addWidget(filenameLineEdit);
|
---|
677 | thisLayout->addWidget(filedialogButton);
|
---|
678 |
|
---|
679 | QObject::connect(filedialogButton,SIGNAL(clicked()),pipe,SLOT(showFileDialog()));
|
---|
680 | }
|
---|
681 |
|
---|
682 | QTDialog::FileQTQuery::~FileQTQuery()
|
---|
683 | {
|
---|
684 | delete pipe;
|
---|
685 | }
|
---|
686 |
|
---|
687 | bool QTDialog::FileQTQuery::handle(){
|
---|
688 | return true;
|
---|
689 | }
|
---|
690 |
|
---|
691 | /*************************** Plumbing *******************************/
|
---|
692 |
|
---|
693 |
|
---|
694 | template<typename T> QTQueryListPipe<T>::QTQueryListPipe(std::vector<T> *_content, QTDialog *_dialog, QLineEdit *_inputBox, QListWidget *_inputList, QPushButton *_AddButton, QPushButton *_RemoveButton) :
|
---|
695 | content(_content),
|
---|
696 | dialog(_dialog),
|
---|
697 | inputBox(_inputBox),
|
---|
698 | inputList(_inputList),
|
---|
699 | AddButton(_AddButton),
|
---|
700 | RemoveButton(_RemoveButton)
|
---|
701 | {}
|
---|
702 |
|
---|
703 | template<typename T> QTQueryListPipe<T>::~QTQueryListPipe()
|
---|
704 | {}
|
---|
705 |
|
---|
706 | template<typename T> void QTQueryListPipe<T>::IntegerEntered(const QString&)
|
---|
707 | {
|
---|
708 | AddButton->setEnabled(true);
|
---|
709 | }
|
---|
710 |
|
---|
711 | template<typename T> void QTQueryListPipe<T>::IntegerSelected()
|
---|
712 | {
|
---|
713 | if (inputList->selectedItems().empty())
|
---|
714 | RemoveButton->setEnabled(false);
|
---|
715 | else
|
---|
716 | RemoveButton->setEnabled(true);
|
---|
717 | }
|
---|
718 |
|
---|
719 | template<typename T> void QTQueryListPipe<T>::AddInteger() {
|
---|
720 | // type-check
|
---|
721 | std::string text = inputBox->text().toStdString();
|
---|
722 | int number = 0;
|
---|
723 | try {
|
---|
724 | number = boost::lexical_cast<int>(text);
|
---|
725 | } catch (boost::bad_lexical_cast&) {
|
---|
726 | return;
|
---|
727 | };
|
---|
728 | // add item to both
|
---|
729 | inputList->addItem(QString(number));
|
---|
730 | AddValue(number);
|
---|
731 | }
|
---|
732 |
|
---|
733 | template<typename T> void QTQueryListPipe<T>::AddValue(T item) {
|
---|
734 | content->push_back(item);
|
---|
735 |
|
---|
736 | dialog->update();
|
---|
737 | }
|
---|
738 |
|
---|
739 | template<typename T> void QTQueryListPipe<T>::RemoveInteger() {
|
---|
740 | QList<QListWidgetItem *> items = inputList->selectedItems();
|
---|
741 | for (QList<QListWidgetItem *>::iterator iter = items.begin(); !items.empty(); iter = items.begin()) {
|
---|
742 | // obtain which position item has (by making it current item)
|
---|
743 | inputList->setCurrentItem(*iter);
|
---|
744 | // remove
|
---|
745 | QTQueryListPipe<T>::RemoteRow(inputList->currentRow()); // template parameters needs to be known, such that compiler knows which to call
|
---|
746 | inputList->removeItemWidget(*iter);
|
---|
747 | }
|
---|
748 | }
|
---|
749 |
|
---|
750 | template<typename T> void QTQueryListPipe<T>::RemoveRow(int row) {
|
---|
751 | int counter = 0;
|
---|
752 | typename std::vector<T>::iterator iter = content->begin();
|
---|
753 | for (; iter != content->end(); ++iter)
|
---|
754 | if (counter++ == row)
|
---|
755 | break;
|
---|
756 | if (iter != content->end())
|
---|
757 | content->erase(iter);
|
---|
758 | }
|
---|
759 |
|
---|
760 |
|
---|
761 | StringQTQueryPipe::StringQTQueryPipe(string *_content, QTDialog *_dialog) :
|
---|
762 | content(_content),
|
---|
763 | dialog(_dialog)
|
---|
764 | {}
|
---|
765 |
|
---|
766 | StringQTQueryPipe::~StringQTQueryPipe()
|
---|
767 | {}
|
---|
768 |
|
---|
769 | void StringQTQueryPipe::update(const QString& newText) {
|
---|
770 | content->assign(newText.toStdString());
|
---|
771 | dialog->update();
|
---|
772 | }
|
---|
773 |
|
---|
774 | IntQTQueryPipe::IntQTQueryPipe(int *_content, QTDialog *_dialog) :
|
---|
775 | content(_content),
|
---|
776 | dialog(_dialog)
|
---|
777 | {}
|
---|
778 |
|
---|
779 | IntQTQueryPipe::~IntQTQueryPipe()
|
---|
780 | {}
|
---|
781 |
|
---|
782 | void IntQTQueryPipe::update(int newInt) {
|
---|
783 | (*content) = newInt;
|
---|
784 | dialog->update();
|
---|
785 | }
|
---|
786 |
|
---|
787 | DoubleQTQueryPipe::DoubleQTQueryPipe(double *_content, QTDialog *_dialog) :
|
---|
788 | content(_content),
|
---|
789 | dialog(_dialog)
|
---|
790 | {}
|
---|
791 |
|
---|
792 | DoubleQTQueryPipe::~DoubleQTQueryPipe()
|
---|
793 | {}
|
---|
794 |
|
---|
795 | void DoubleQTQueryPipe::update(double newDbl) {
|
---|
796 | (*content) = newDbl;
|
---|
797 | dialog->update();
|
---|
798 | }
|
---|
799 |
|
---|
800 | VectorQTQueryPipe::VectorQTQueryPipe(Vector *_content, QTDialog *_dialog, QComboBox *_theBox) :
|
---|
801 | content(_content),
|
---|
802 | dialog(_dialog),
|
---|
803 | theBox(_theBox)
|
---|
804 | {}
|
---|
805 |
|
---|
806 | VectorQTQueryPipe::~VectorQTQueryPipe()
|
---|
807 | {}
|
---|
808 |
|
---|
809 | void VectorQTQueryPipe::update() {
|
---|
810 | dialog->update();
|
---|
811 | }
|
---|
812 |
|
---|
813 | VectorsQTQueryPipe::VectorsQTQueryPipe(std::vector<Vector> *_content, QTDialog *_dialog, QComboBox *_theBox) :
|
---|
814 | content(_content),
|
---|
815 | dialog(_dialog),
|
---|
816 | theBox(_theBox)
|
---|
817 | {}
|
---|
818 |
|
---|
819 | VectorsQTQueryPipe::~VectorsQTQueryPipe()
|
---|
820 | {}
|
---|
821 |
|
---|
822 | void VectorsQTQueryPipe::update() {
|
---|
823 | dialog->update();
|
---|
824 | }
|
---|
825 |
|
---|
826 | AtomQTQueryPipe::AtomQTQueryPipe(atom **_content, QTDialog *_dialog, QComboBox *_theBox) :
|
---|
827 | content(_content),
|
---|
828 | dialog(_dialog),
|
---|
829 | theBox(_theBox)
|
---|
830 | {}
|
---|
831 |
|
---|
832 | AtomQTQueryPipe::~AtomQTQueryPipe()
|
---|
833 | {}
|
---|
834 |
|
---|
835 | void AtomQTQueryPipe::update(int newIndex) {
|
---|
836 | QVariant data = theBox->itemData(newIndex);
|
---|
837 | int idx = data.toInt();
|
---|
838 | (*content) = World::getInstance().getAtom(AtomById(idx));
|
---|
839 | dialog->update();
|
---|
840 | }
|
---|
841 |
|
---|
842 |
|
---|
843 | AtomsQTQueryPipe::AtomsQTQueryPipe(std::vector<atom *>*_content, QTDialog *_dialog, QComboBox *_theBox) :
|
---|
844 | content(_content),
|
---|
845 | dialog(_dialog),
|
---|
846 | theBox(_theBox)
|
---|
847 | {}
|
---|
848 |
|
---|
849 | AtomsQTQueryPipe::~AtomsQTQueryPipe()
|
---|
850 | {}
|
---|
851 |
|
---|
852 | void AtomsQTQueryPipe::update(int newIndex) {
|
---|
853 | QVariant data = theBox->itemData(newIndex);
|
---|
854 | int idx = data.toInt();
|
---|
855 | atom *Walker = World::getInstance().getAtom(AtomById(idx));
|
---|
856 | if (Walker)
|
---|
857 | (*content).push_back(Walker) ;
|
---|
858 | dialog->update();
|
---|
859 | }
|
---|
860 |
|
---|
861 |
|
---|
862 | MoleculeQTQueryPipe::MoleculeQTQueryPipe(molecule **_content, QTDialog *_dialog, QComboBox *_theBox) :
|
---|
863 | content(_content),
|
---|
864 | dialog(_dialog),
|
---|
865 | theBox(_theBox)
|
---|
866 | {}
|
---|
867 |
|
---|
868 | MoleculeQTQueryPipe::~MoleculeQTQueryPipe()
|
---|
869 | {}
|
---|
870 |
|
---|
871 | void MoleculeQTQueryPipe::update(int newIndex) {
|
---|
872 | QVariant data = theBox->itemData(newIndex);
|
---|
873 | int idx = data.toInt();
|
---|
874 | (*content) = World::getInstance().getMolecule(MoleculeById(idx));
|
---|
875 | dialog->update();
|
---|
876 | }
|
---|
877 |
|
---|
878 |
|
---|
879 | MoleculesQTQueryPipe::MoleculesQTQueryPipe(std::vector<molecule *>*_content, QTDialog *_dialog, QComboBox *_theBox) :
|
---|
880 | content(_content),
|
---|
881 | dialog(_dialog),
|
---|
882 | theBox(_theBox)
|
---|
883 | {}
|
---|
884 |
|
---|
885 | MoleculesQTQueryPipe::~MoleculesQTQueryPipe()
|
---|
886 | {}
|
---|
887 |
|
---|
888 | void MoleculesQTQueryPipe::update(int newIndex) {
|
---|
889 | QVariant data = theBox->itemData(newIndex);
|
---|
890 | int idx = data.toInt();
|
---|
891 | molecule *mol = World::getInstance().getMolecule(MoleculeById(idx));
|
---|
892 | if (mol)
|
---|
893 | (*content).push_back(mol);
|
---|
894 | dialog->update();
|
---|
895 | }
|
---|
896 |
|
---|
897 | ElementQTQueryPipe::ElementQTQueryPipe(const element **_content, QTDialog *_dialog, QComboBox *_theBox) :
|
---|
898 | content(_content),
|
---|
899 | dialog(_dialog),
|
---|
900 | theBox(_theBox)
|
---|
901 | {}
|
---|
902 |
|
---|
903 | ElementQTQueryPipe::~ElementQTQueryPipe()
|
---|
904 | {}
|
---|
905 |
|
---|
906 | void ElementQTQueryPipe::update(int newIndex) {
|
---|
907 | QVariant data = theBox->itemData(newIndex);
|
---|
908 | int idx = data.toInt();
|
---|
909 | *content = World::getInstance().getPeriode()->FindElement(idx);
|
---|
910 | dialog->update();
|
---|
911 | }
|
---|
912 |
|
---|
913 | ElementsQTQueryPipe::ElementsQTQueryPipe(std::vector<const element *>*_content, QTDialog *_dialog, QComboBox *_theBox) :
|
---|
914 | content(_content),
|
---|
915 | dialog(_dialog),
|
---|
916 | theBox(_theBox)
|
---|
917 | {}
|
---|
918 |
|
---|
919 | ElementsQTQueryPipe::~ElementsQTQueryPipe()
|
---|
920 | {}
|
---|
921 |
|
---|
922 | void ElementsQTQueryPipe::update(int newIndex) {
|
---|
923 | QVariant data = theBox->itemData(newIndex);
|
---|
924 | int idx = data.toInt();
|
---|
925 | const element *elemental = World::getInstance().getPeriode()->FindElement(idx);
|
---|
926 | if(elemental)
|
---|
927 | (*content).push_back(elemental);
|
---|
928 | dialog->update();
|
---|
929 | }
|
---|
930 |
|
---|
931 | EmptyQTQueryPipe::EmptyQTQueryPipe(QTDialog *_dialog, QLabel *_textLabel) :
|
---|
932 | dialog(_dialog),
|
---|
933 | textLabel(_textLabel)
|
---|
934 | {}
|
---|
935 |
|
---|
936 | EmptyQTQueryPipe::~EmptyQTQueryPipe()
|
---|
937 | {}
|
---|
938 |
|
---|
939 | void EmptyQTQueryPipe::update() {
|
---|
940 | dialog->update();
|
---|
941 | }
|
---|
942 |
|
---|
943 | FileQTQueryPipe::FileQTQueryPipe(boost::filesystem::path *_content, QTDialog *_dialog, QLineEdit *_filenameLineEdit, QPushButton *_filedialogButton) :
|
---|
944 | content(_content),
|
---|
945 | dialog(_dialog),
|
---|
946 | filenameLineEdit(_filenameLineEdit),
|
---|
947 | filedialogButton(_filedialogButton)
|
---|
948 | {
|
---|
949 | theFileDialog = NULL;
|
---|
950 | }
|
---|
951 |
|
---|
952 | FileQTQueryPipe::~FileQTQueryPipe()
|
---|
953 | {
|
---|
954 | if (theFileDialog != NULL)
|
---|
955 | delete theFileDialog;
|
---|
956 | }
|
---|
957 |
|
---|
958 | void FileQTQueryPipe::update() {
|
---|
959 | QStringList ListOfFilenames = theFileDialog->selectedFiles();
|
---|
960 | std::cout << "Selected File is " << ListOfFilenames.at(0).toStdString() << std::endl;
|
---|
961 | (*content) = ListOfFilenames.at(0).toStdString();
|
---|
962 | filenameLineEdit->setText(QString::fromStdString((*content).string()));
|
---|
963 | dialog->update();
|
---|
964 | }
|
---|
965 |
|
---|
966 | void FileQTQueryPipe::showFileDialog() {
|
---|
967 | filedialogButton->setFlat(true);
|
---|
968 | if (theFileDialog == NULL) {
|
---|
969 | theFileDialog = new QFileDialog(NULL, tr("Open input file"), QString(), tr("ParallelCarParrinello (*.conf);;MassivelyParallelQuantumChemistry (*.mpqc);;ParticleDataBase (*.pdb);;XYZ (*.xyz)"));
|
---|
970 | theFileDialog->setAcceptMode(QFileDialog::AcceptOpen);
|
---|
971 | theFileDialog->setFileMode(QFileDialog::ExistingFile);
|
---|
972 | theFileDialog->setViewMode(QFileDialog::List);
|
---|
973 | }
|
---|
974 | theFileDialog->exec();
|
---|
975 |
|
---|
976 | update();
|
---|
977 | filedialogButton->setFlat(false);
|
---|
978 | }
|
---|
979 |
|
---|
980 |
|
---|
981 |
|
---|