1 | /*
|
---|
2 | * QSeisPageRegistry.cpp
|
---|
3 | *
|
---|
4 | * Created on: Mar 14, 2011
|
---|
5 | * Author: landvogt
|
---|
6 | */
|
---|
7 |
|
---|
8 | // include config.h
|
---|
9 | #ifdef HAVE_CONFIG_H
|
---|
10 | #include <config.h>
|
---|
11 | #endif
|
---|
12 |
|
---|
13 | #include "UIElements/Views/Qt4/Plotting/QSeisPageRegistry.hpp"
|
---|
14 | #include "UIElements/Views/Qt4/Plotting/QSeisPlotPage.hpp"
|
---|
15 |
|
---|
16 | // have this after(!) all Qt includes
|
---|
17 | #include "CodePatterns/MemDebug.hpp"
|
---|
18 |
|
---|
19 | #include "CodePatterns/Registry_impl.hpp"
|
---|
20 | #include "CodePatterns/Singleton_impl.hpp"
|
---|
21 |
|
---|
22 |
|
---|
23 | QSeisPageRegistry::QSeisPageRegistry()
|
---|
24 | {
|
---|
25 |
|
---|
26 | }
|
---|
27 |
|
---|
28 | QSeisPageRegistry::~QSeisPageRegistry()
|
---|
29 | {
|
---|
30 |
|
---|
31 | }
|
---|
32 |
|
---|
33 | void QSeisPageRegistry::cleanup()
|
---|
34 | {
|
---|
35 | for (std::map<const std::string,QSeisPlotPage*>::iterator iter = getBeginIter(); iter != getEndIter(); ++iter)
|
---|
36 | emit pageDeleted(QString::fromStdString(iter->first));
|
---|
37 | Registry<QSeisPlotPage>::cleanup();
|
---|
38 | }
|
---|
39 |
|
---|
40 | QSeisPlotPage* QSeisPageRegistry::getByName(const std::string name)
|
---|
41 | {
|
---|
42 | if (!isPresentByName(name))
|
---|
43 | {
|
---|
44 | //create new plot tab
|
---|
45 | QSeisPlotPage *new_page = new QSeisPlotPage(QString::fromStdString(name));
|
---|
46 | registerInstance(new_page);
|
---|
47 | emit pageCreated((QWidget *)new_page, QString::fromStdString(name));
|
---|
48 | }
|
---|
49 | return Registry<QSeisPlotPage>::getByName(name);
|
---|
50 | }
|
---|
51 |
|
---|
52 | void QSeisPageRegistry::deleteByName(const std::string name)
|
---|
53 | {
|
---|
54 | if (!isPresentByName(name))
|
---|
55 | return;
|
---|
56 |
|
---|
57 | QSeisPlotPage *page = Registry<QSeisPlotPage>::getByName(name);
|
---|
58 | unregisterInstance(page);
|
---|
59 | QString delName = page->plotType;
|
---|
60 | delete page;
|
---|
61 | emit pageDeleted(delName);
|
---|
62 | }
|
---|
63 |
|
---|
64 | void QSeisPageRegistry::registerInstance(QSeisPlotPage *instance)
|
---|
65 | {
|
---|
66 | Registry<QSeisPlotPage>::registerInstance(instance);
|
---|
67 | }
|
---|
68 |
|
---|
69 | void QSeisPageRegistry::unregisterInstance(QSeisPlotPage *instance)
|
---|
70 | {
|
---|
71 | Registry<QSeisPlotPage>::unregisterInstance(instance);
|
---|
72 | }
|
---|
73 |
|
---|
74 | void QSeisPageRegistry::addCurve(std::string name, QString dataType)
|
---|
75 | {
|
---|
76 | QSeisPlotPage *page = getByName(dataType.toStdString());
|
---|
77 | page->addCurve(name);
|
---|
78 | }
|
---|
79 |
|
---|
80 | void QSeisPageRegistry::removeCurve(std::string name, QString dataType)
|
---|
81 | {
|
---|
82 | QSeisPlotPage *page = getByName(dataType.toStdString());
|
---|
83 | page->removeCurve(name);
|
---|
84 | }
|
---|
85 |
|
---|
86 | void QSeisPageRegistry::updateCurve(std::string name, QString dataType)
|
---|
87 | {
|
---|
88 | QSeisPlotPage *page = getByName(dataType.toStdString());
|
---|
89 | page->updateCurve(name);
|
---|
90 | }
|
---|
91 |
|
---|
92 | void QSeisPageRegistry::resetPlotView(QString dataType)
|
---|
93 | {
|
---|
94 | QSeisPlotPage *page = getByName(dataType.toStdString());
|
---|
95 | page->resetPlot();
|
---|
96 | }
|
---|
97 |
|
---|
98 | CONSTRUCT_SINGLETON(QSeisPageRegistry)
|
---|
99 | CONSTRUCT_REGISTRY(QSeisPlotPage)
|
---|