Scanframe Modular Application 0.1.0
Loading...
Searching...
No Matches
SerialNumberPropertyPage.h
Go to the documentation of this file.
1#pragma once
2#include "Namespace.h"
3#include <QAbstractButton>
6
7namespace sf
8{
9
10namespace Ui
11{
12// Forward definition of auto generated class.
13class SerialNumberPropertyPage;
14}// namespace Ui
15
20{
21 // Macro required for Qt's meta-object system (signals/slots)
22 Q_OBJECT
23
24 public:
29 explicit SerialNumberPropertyPage(QWidget* parent = nullptr);
30
35
36 void setIniFile(const IniEnvelope& ini);
37
38 private:
39 void boxClicked(QAbstractButton* button);
40
41 // Pointer to the UI object generated by the Qt UI compiler (uic)
42 // This object contains all the widgets defined in the .ui file.
43 Ui::SerialNumberPropertyPage* ui;
44
45 IniEnvelope _iniFile;
46};
47
48}// namespace sf
Widget to create a page in a PropertySheet dialog.
Definition PropertyPage.h:16
The SerialNumberPropertyPage class represents a custom dialog window.
Definition SerialNumberPropertyPage.h:20
void setIniFile(const IniEnvelope &ini)
~SerialNumberPropertyPage() override
Destructor for the SerialNumberPropertyPage class.
SerialNumberPropertyPage(QWidget *parent=nullptr)
Constructor for the SerialNumberPropertyPage class.
Definition ApplicationPropertyPage.h:7
Definition Application.h:10