~ubuntu-branches/ubuntu/trusty/manaplus/trusty

« back to all changes in this revision

Viewing changes to src/gui/widgets/widgetgroup.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-10-07 10:26:14 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20131007102614-tg2zjdz8vmtl6n7i
Tags: 1.3.9.29-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
                    public gcn::ActionListener
34
34
{
35
35
    public:
36
 
        WidgetGroup(const Widget2 *const widget,
37
 
                    const std::string &group, const int height,
38
 
                    const int spacing);
39
 
 
40
36
        A_DELETE_COPY(WidgetGroup)
41
37
 
42
38
        virtual void addButton(const std::string &tag);
54
50
        void widgetResized(const gcn::Event &event) override;
55
51
 
56
52
        virtual Widget *createWidget(const std::string &name)
57
 
                                     A_WARN_UNUSED = 0;
 
53
                                     const A_WARN_UNUSED = 0;
58
54
 
59
55
    protected:
 
56
        WidgetGroup(const Widget2 *const widget,
 
57
                    const std::string &group, const int height,
 
58
                    const int spacing);
 
59
 
60
60
        int mSpacing;
61
61
        int mCount;
62
62
        std::string mGroup;