~ubuntu-branches/ubuntu/saucy/manaplus/saucy-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi, Andrei Karas, Patrick Matthäi
  • Date: 2013-06-10 10:53:26 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130610105326-c3xqk5ebcgy3jxmb
Tags: 1.3.6.9-1
[ Andrei Karas ]
* Add new files to copyright file.

[ Patrick Matthäi ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
20
 */
21
21
 
22
 
#ifndef GUI_HORIZONTCONTAINER_H
23
 
#define GUI_HORIZONTCONTAINER_H
 
22
#ifndef GUI_WIDGETS_HORIZONTCONTAINER_H
 
23
#define GUI_WIDGETS_HORIZONTCONTAINER_H
24
24
 
25
25
#include "gui/widgets/container.h"
26
26
 
41
41
 
42
42
        A_DELETE_COPY(HorizontContainer)
43
43
 
44
 
        virtual void add(gcn::Widget *widget);
45
 
 
46
 
        virtual void add(gcn::Widget *widget, int spacing);
47
 
 
48
 
        virtual void clear();
 
44
        void add(gcn::Widget *widget) override;
 
45
 
 
46
        void add(gcn::Widget *widget, int spacing);
 
47
 
 
48
        void clear() override;
49
49
 
50
50
        void widgetResized(const gcn::Event &event) override;
51
51
 
55
55
        int mLastX;
56
56
};
57
57
 
58
 
#endif
 
58
#endif  // GUI_WIDGETS_HORIZONTCONTAINER_H