blob: d51e61d33dd0135d74dfe0638c686b12f24ab109 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef RALEIGH_W_VBOX_H
#define RALEIGH_W_VBOX_H
#include <raleigh/w/multicontainer.h>
namespace raleigh {
class vbox : public multicontainer {
public:
//do not modify this list afterward
vbox(dllist<widget &> widgets);
private:
coord determine_size() override;
void set_child_offsets() override;
};
}
#endif
|