1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * FileQtQueryPipe.cpp
|
---|
10 | *
|
---|
11 | * Created on: Oct 25, 2010
|
---|
12 | * Author: heber
|
---|
13 | */
|
---|
14 |
|
---|
15 | // include config.h
|
---|
16 | #ifdef HAVE_CONFIG_H
|
---|
17 | #include <config.h>
|
---|
18 | #endif
|
---|
19 |
|
---|
20 | #include <QtGui/QFileDialog>
|
---|
21 | #include <Qt/qcombobox.h>
|
---|
22 | #include <Qt/qlineedit.h>
|
---|
23 | #include <Qt/qpushbutton.h>
|
---|
24 |
|
---|
25 | #include "CodePatterns/MemDebug.hpp"
|
---|
26 |
|
---|
27 | #include <iostream>
|
---|
28 | #include <boost/filesystem.hpp>
|
---|
29 |
|
---|
30 | #include "UIElements/Qt4/Pipe/FileQtQueryPipe.hpp"
|
---|
31 | #include "UIElements/Qt4/QtDialog.hpp"
|
---|
32 |
|
---|
33 | FileQtQueryPipe::FileQtQueryPipe(Parameter<boost::filesystem::path> &_content, QtDialog *_dialog, QLineEdit *_filenameLineEdit, QPushButton *_filedialogButton) :
|
---|
34 | content(_content),
|
---|
35 | dialog(_dialog),
|
---|
36 | filenameLineEdit(_filenameLineEdit),
|
---|
37 | filedialogButton(_filedialogButton)
|
---|
38 | {
|
---|
39 | theFileDialog = NULL;
|
---|
40 | }
|
---|
41 |
|
---|
42 | FileQtQueryPipe::~FileQtQueryPipe()
|
---|
43 | {
|
---|
44 | if (theFileDialog != NULL)
|
---|
45 | delete theFileDialog;
|
---|
46 | }
|
---|
47 |
|
---|
48 | void FileQtQueryPipe::update() {
|
---|
49 | QStringList ListOfFilenames = theFileDialog->selectedFiles();
|
---|
50 | std::cout << "Selected File is " << ListOfFilenames.at(0).toStdString() << std::endl;
|
---|
51 | content.set(ListOfFilenames.at(0).toStdString());
|
---|
52 | filenameLineEdit->setText(QString::fromStdString(content.get().string()));
|
---|
53 | dialog->update();
|
---|
54 | }
|
---|
55 |
|
---|
56 | void FileQtQueryPipe::showFileDialog() {
|
---|
57 | filedialogButton->setFlat(true);
|
---|
58 | if (theFileDialog == NULL) {
|
---|
59 | theFileDialog = new QFileDialog(NULL, tr("Open input file"), QString(), tr("ParallelCarParrinello (*.conf);;MassivelyParallelQuantumChemistry (*.mpqc);;ParticleDataBase (*.pdb);;XYZ (*.xyz)"));
|
---|
60 | theFileDialog->setAcceptMode(QFileDialog::AcceptOpen);
|
---|
61 | theFileDialog->setFileMode(QFileDialog::AnyFile);
|
---|
62 | theFileDialog->setViewMode(QFileDialog::List);
|
---|
63 | }
|
---|
64 | theFileDialog->exec();
|
---|
65 |
|
---|
66 | update();
|
---|
67 | filedialogButton->setFlat(false);
|
---|
68 | }
|
---|
69 |
|
---|
70 |
|
---|