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