Photon microGUI widgets library 0.6.0
Pane.h
1#ifndef PHWIDGETS_PANE_H
2#define PHWIDGETS_PANE_H
3
4#include <photon/PtPane.h>
5
6#include "./Container.h"
7
8
9namespace PhWidgets
10{
17
21 class Pane:
22 public Container
23 {
24 public:
25
27 struct Arguments:
29 { };
30
31 protected:
32 virtual void check();
33
34 public:
36
40 explicit Pane(int abn);
41
43
47 explicit Pane(PtWidget_t *wdg);
48
51
52
54 };
55
56} // namespace PhWidgets
57
58
59#endif // PHWIDGETS_PANE_H
Layout and geometry management for all container widgets.
Definition: Container.h:24
A container for organizing widgets.
Definition: Pane.h:23
Pane(PtWidget_t *wdg)
(constructor)
Pane(int abn)
(constructor)
The main namespace for all widgets.
Definition: Basic.h:11
Contains resource IDs for all Container arguments.
Definition: Container.h:303
Contains resource IDs for all Pane arguments.
Definition: Pane.h:29