source: molecuilder/src/UIElements/TextDialog.hpp@ 07d2cd

Last change on this file since 07d2cd was 83afe0, checked in by Frederik Heber <heber@…>, 15 years ago

Extended UIFactory to a CommandLine derivate.

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 2.2 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 *, std::string = "");
22 virtual void queryString(const char*, std::string *, std::string = "");
23 virtual void queryDouble(const char*, double*, std::string = "");
24 virtual void queryMolecule(const char*,molecule**,MoleculeListClass*, std::string = "");
25 virtual void queryVector(const char*,Vector *,const double * const,bool, std::string = "");
26 virtual void queryElement(const char*,const element **, std::string = "");
27
28protected:
29 // specialized stuff for text queries
30 class IntTextQuery : public Dialog::IntQuery {
31 public:
32 IntTextQuery(std::string title, int *_target, std::string _description = NULL);
33 virtual ~IntTextQuery();
34 virtual bool handle();
35 };
36
37 class DoubleTextQuery : public Dialog::DoubleQuery {
38 public:
39 DoubleTextQuery(std::string title, double *_target, std::string _description = NULL);
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, std::string _description = NULL);
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, std::string _description = NULL);
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, std::string _description = NULL);
61 virtual ~VectorTextQuery();
62 virtual bool handle();
63 };
64
65 class ElementTextQuery : public Dialog::ElementQuery {
66 public:
67 ElementTextQuery(std::string title, const element **_target, std::string _description = NULL);
68 virtual ~ElementTextQuery();
69 virtual bool handle();
70 };
71};
72
73#endif /* TEXTDIALOG_HPP_ */
Note: See TracBrowser for help on using the repository browser.