Scanframe Modular Application 0.1.0
Loading...
Searching...
No Matches
ProjectDataPropertyPage.h
Go to the documentation of this file.
1#pragma once
4
5namespace sf
6{
7
8namespace Ui
9{
10// Forward definition of auto generated class.
11class ProjectDataPropertyPage;
12}// namespace Ui
13
15{
16 Q_OBJECT
17
18 public:
22 ProjectDataPropertyPage(ProjectData* target, QWidget* parent);
23
28
30 bool isPageModified() const override;
31
33 void applyPage() override;
34
36 void updatePage() override;
37
39 void storeState(ConfigStore& cfg_store, bool save) override;
40
41 private:
43 Ui::ProjectDataPropertyPage* ui;
45 ProjectData* _projectData;
47 Variable::PtrVector _varList;
48};
49
50}// namespace sf
Class to store application configuration. Uses the global application settings or a given ini-file.
Definition ConfigStore.h:17
Definition ProjectDataPropertyPage.h:15
void updatePage() override
Overridden from base class.
void storeState(ConfigStore &cfg_store, bool save) override
Overridden from base class.
ProjectDataPropertyPage(ProjectData *target, QWidget *parent)
Constructor.
~ProjectDataPropertyPage() override
Virtual overridden destructor.
void applyPage() override
Overridden from base class.
bool isPageModified() const override
Overridden from base class.
Keeps the project and all scan areas to inspect.
Definition ProjectData.h:25
Widget to create a page in a PropertySheet dialog.
Definition PropertyPage.h:15
Definition ApplicationPropertyPage.h:7
Definition Application.h:10