1 | /*
|
---|
2 | * MoleculeView.hpp
|
---|
3 | *
|
---|
4 | * Created on: Mar 4, 2010
|
---|
5 | * Author: crueger
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef MOLECULEVIEW_HPP_
|
---|
9 | #define MOLECULEVIEW_HPP_
|
---|
10 |
|
---|
11 | #include <string>
|
---|
12 | #include <QtGui/QTabWidget>
|
---|
13 | #include "Patterns/Observer.hpp"
|
---|
14 |
|
---|
15 | class molecule;
|
---|
16 |
|
---|
17 | // Forwarding of the Tab-Pages
|
---|
18 | class QTAllMoleculePage;
|
---|
19 | class QTMoleculePage;
|
---|
20 |
|
---|
21 | class QtMoleculeView : public QTabWidget
|
---|
22 | {
|
---|
23 | Q_OBJECT
|
---|
24 | public:
|
---|
25 | QtMoleculeView();
|
---|
26 | virtual ~QtMoleculeView();
|
---|
27 |
|
---|
28 | public slots:
|
---|
29 | void moleculeSelected(molecule *);
|
---|
30 | void moleculeUnSelected(molecule *);
|
---|
31 |
|
---|
32 | void nameChanged(QTMoleculePage *page, std::string name);
|
---|
33 |
|
---|
34 | signals:
|
---|
35 | void addMolecule(molecule *);
|
---|
36 | void removeMolecule(molecule *);
|
---|
37 |
|
---|
38 |
|
---|
39 | private:
|
---|
40 | QTAllMoleculePage *allPage; //!< contained widget to cary information of all selected molecules
|
---|
41 | std::map<molecule*,QTMoleculePage *> pages;//!< contained widget to cary information on a specific molecule
|
---|
42 | };
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * Widget to display the tab page for all selected molecules
|
---|
46 | */
|
---|
47 | class QTAllMoleculePage : public QWidget, public Observer {
|
---|
48 | Q_OBJECT
|
---|
49 | public:
|
---|
50 | QTAllMoleculePage();
|
---|
51 | void update(Observable *subject);
|
---|
52 | void subjectKilled(Observable *subject);
|
---|
53 | public slots:
|
---|
54 | void addMolecule(molecule *mol);
|
---|
55 | void removeMolecule(molecule *mol);
|
---|
56 | };
|
---|
57 |
|
---|
58 | /**
|
---|
59 | * Widget to display the tab page for a single molecule
|
---|
60 | */
|
---|
61 | class QTMoleculePage : public QWidget, public Observer {
|
---|
62 | Q_OBJECT
|
---|
63 | public:
|
---|
64 | QTMoleculePage(molecule *_mol,std::string _name);
|
---|
65 | virtual ~QTMoleculePage();
|
---|
66 |
|
---|
67 | void update(Observable *subject);
|
---|
68 | void subjectKilled(Observable *subject);
|
---|
69 |
|
---|
70 | signals:
|
---|
71 | void nameChanged(QTMoleculePage*,std::string);
|
---|
72 |
|
---|
73 | private:
|
---|
74 | molecule *mol;
|
---|
75 | std::string name;
|
---|
76 | };
|
---|
77 | #endif /* MOLECULEVIEW_HPP_ */
|
---|