source: molecuilder/src/UIElements/TextDialog.hpp@ f467c6

Last change on this file since f467c6 was f467c6, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added a method to query Elements using the Dialog structure

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*
2 * TextDialog.hpp
3 *
4 * Created on: Jan 5, 2010
5 * Author: crueger
6 */
7
8#ifndef TEXTDIALOG_HPP_
9#define TEXTDIALOG_HPP_
10
11#include <string>
12
13#include "UIElements/Dialog.hpp"
14
15class TextDialog : public Dialog
16{
17public:
18 TextDialog();
19 virtual ~TextDialog();
20
21 virtual void queryInt(const char *, int *);
22 virtual void queryString(const char*, std::string *);
23 virtual void queryDouble(const char*, double*);
24 virtual void queryMolecule(const char*,molecule**,MoleculeListClass*);
25 virtual void queryVector(const char*,Vector *,const double * const,bool);
26 virtual void queryElement(const char*,element **);
27
28protected:
29 // specialized stuff for text queries
30 class IntTextQuery : public Dialog::IntQuery {
31 public:
32 IntTextQuery(std::string title, int *_target);
33 virtual ~IntTextQuery();
34 virtual bool handle();
35 };
36
37 class DoubleTextQuery : public Dialog::DoubleQuery {
38 public:
39 DoubleTextQuery(std::string title, double *_target);
40 virtual ~DoubleTextQuery();
41 virtual bool handle();
42 };
43
44 class StringTextQuery : public Dialog::StringQuery {
45 public:
46 StringTextQuery(std::string title, std::string *_target);
47 virtual ~StringTextQuery();
48 virtual bool handle();
49 };
50
51 class MoleculeTextQuery : public Dialog::MoleculeQuery {
52 public:
53 MoleculeTextQuery(std::string title, molecule **_target, MoleculeListClass *_molecules);
54 virtual ~MoleculeTextQuery();
55 virtual bool handle();
56 };
57
58 class VectorTextQuery : public Dialog::VectorQuery {
59 public:
60 VectorTextQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check);
61 virtual ~VectorTextQuery();
62 virtual bool handle();
63 };
64
65 class ElementTextQuery : public Dialog::ElementQuery {
66 public:
67 ElementTextQuery(std::string title, element **_target);
68 virtual ~ElementTextQuery();
69 virtual bool handle();
70 };
71};
72
73#endif /* TEXTDIALOG_HPP_ */
Note: See TracBrowser for help on using the repository browser.