~ubuntu-branches/ubuntu/precise/widelands/precise-backports

« back to all changes in this revision

Viewing changes to src/ui/ui_basic/ui_box.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Quinson
  • Date: 2005-02-14 10:41:12 UTC
  • Revision ID: james.westby@ubuntu.com-20050214104112-6v08iux9fptxpva9
Tags: upstream-build9
Import upstream version build9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2003 by the Widelands Development Team
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef included_ui_box_h
 
21
#define included_ui_box_h
 
22
 
 
23
#include <vector>
 
24
#include "ui_panel.h"
 
25
 
 
26
/**
 
27
A layouting panel that holds a number of child panels.
 
28
The UIPanels you add to the UIBox must be children of the UIBox.
 
29
The UIBox automatically resizes itself and positions the added children.
 
30
*/
 
31
class UIBox : public UIPanel {
 
32
public:
 
33
        enum {
 
34
                Horizontal = 0,
 
35
                Vertical = 1,
 
36
 
 
37
                AlignLeft = 0,
 
38
                AlignTop = 0,
 
39
                AlignCenter = 1,
 
40
                AlignRight = 2,
 
41
                AlignBottom = 2,
 
42
        };
 
43
public:
 
44
        UIBox(UIPanel* parent, int x, int y, uint orientation);
 
45
 
 
46
        void resize();
 
47
 
 
48
        int get_nritems() const { return m_items.size(); }
 
49
 
 
50
        void add(UIPanel* panel, uint align);
 
51
        void add_space(uint space);
 
52
 
 
53
private:
 
54
        void get_item_size(uint idx, int* depth, int* breadth);
 
55
        void set_item_pos(uint idx, int pos);
 
56
 
 
57
private:
 
58
        struct Item {
 
59
                enum Type {
 
60
                        ItemPanel,
 
61
                        ItemSpace
 
62
                };
 
63
 
 
64
                Type            type;
 
65
 
 
66
                union {
 
67
                        struct {
 
68
                                UIPanel*        panel;
 
69
                                uint            align;
 
70
                        } panel;
 
71
                        uint            space;
 
72
                } u;
 
73
        };
 
74
 
 
75
        uint    m_orientation;
 
76
 
 
77
        std::vector<Item>       m_items;
 
78
};
 
79
 
 
80
 
 
81
#endif // included_ui_box_h