Photon microGUI widgets library 0.6.0
Compound.h
1#ifndef PHWIDGETS_COMPOUND_H
2#define PHWIDGETS_COMPOUND_H
3
4#include <photon/PtCompound.h>
5
6#include "./Container.h"
7
8
9namespace PhWidgets
10{
17
23 class Compound:
24 public Container
25 {
26 public:
27
29 struct Arguments:
31 { };
32
33 protected:
34 virtual void check();
35
36 public:
38
42 explicit Compound(int abn);
43
45
49 explicit Compound(PtWidget_t *wdg);
50
53
54
56 };
57
58} // namespace PhWidgets
59
60
61#endif // PHWIDGETS_COMPOUND_H
Superclass for all compound widgets.
Definition: Compound.h:25
Compound(int abn)
(constructor)
Compound(PtWidget_t *wdg)
(constructor)
Layout and geometry management for all container widgets.
Definition: Container.h:24
The main namespace for all widgets.
Definition: Basic.h:11
Contains resource IDs for all Compound arguments.
Definition: Compound.h:31
Contains resource IDs for all Container arguments.
Definition: Container.h:303