source: src/UIElements/Views/Qt4/Plotting/QSeisPageRegistry.cpp

Candidate_v1.6.1
Last change on this file was 9eb71b3, checked in by Frederik Heber <frederik.heber@…>, 8 years ago

Commented out MemDebug include and Memory::ignore.

  • MemDebug clashes with various allocation operators that use a specific placement in memory. It is so far not possible to wrap new/delete fully. Hence, we stop this effort which so far has forced us to put ever more includes (with clashes) into MemDebug and thereby bloat compilation time.
  • MemDebug does not add that much usefulness which is not also provided by valgrind.
  • Property mode set to 100644
File size: 2.4 KB
Line 
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
23QSeisPageRegistry::QSeisPageRegistry()
24{
25
26}
27
28QSeisPageRegistry::~QSeisPageRegistry()
29{
30
31}
32
33void 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
40QSeisPlotPage* 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
52void 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
64void QSeisPageRegistry::registerInstance(QSeisPlotPage *instance)
65{
66 Registry<QSeisPlotPage>::registerInstance(instance);
67}
68
69void QSeisPageRegistry::unregisterInstance(QSeisPlotPage *instance)
70{
71 Registry<QSeisPlotPage>::unregisterInstance(instance);
72}
73
74void QSeisPageRegistry::addCurve(std::string name, QString dataType)
75{
76 QSeisPlotPage *page = getByName(dataType.toStdString());
77 page->addCurve(name);
78}
79
80void QSeisPageRegistry::removeCurve(std::string name, QString dataType)
81{
82 QSeisPlotPage *page = getByName(dataType.toStdString());
83 page->removeCurve(name);
84}
85
86void QSeisPageRegistry::updateCurve(std::string name, QString dataType)
87{
88 QSeisPlotPage *page = getByName(dataType.toStdString());
89 page->updateCurve(name);
90}
91
92void QSeisPageRegistry::resetPlotView(QString dataType)
93{
94 QSeisPlotPage *page = getByName(dataType.toStdString());
95 page->resetPlot();
96}
97
98CONSTRUCT_SINGLETON(QSeisPageRegistry)
99CONSTRUCT_REGISTRY(QSeisPlotPage)
Note: See TracBrowser for help on using the repository browser.