~qcumber-some/widelands/spice-up-cmake

« back to all changes in this revision

Viewing changes to src/wui/interactive_base.h

  • Committer: Jens Beyer (Qcumber-some)
  • Date: 2010-05-28 14:51:37 UTC
  • mfrom: (5149.1.226 trunk)
  • Revision ID: qcumber-some@buerotiger.de-20100528145137-0pyil9qw7szyztsw
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2002-2004, 2006-2008 by the Widelands Development Team
 
2
 * Copyright (C) 2002-2004, 2006-2010 by the Widelands Development Team
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or
5
5
 * modify it under the terms of the GNU General Public License
72
72
        }
73
73
        bool get_sel_freeze() const {return m_sel.freeze;}
74
74
 
 
75
        bool buildhelp();
 
76
        void show_buildhelp(bool const t);
 
77
        void toggle_buildhelp ();
 
78
 
75
79
        /**
76
80
         * sel_triangles determines whether the mouse pointer selects triangles.
77
81
         * (False meas that it selects nodes.)
180
184
};
181
185
 
182
186
#define PIC2 g_gr->get_picture(PicMod_UI, "pics/but2.png")
183
 
#define TOOLBAR_BUTTON_COMMON_PARAMETERS &m_toolbar, 0, 0, 34U, 34U, PIC2
 
187
#define TOOLBAR_BUTTON_COMMON_PARAMETERS(name) \
 
188
    &m_toolbar, name, 0, 0, 34U, 34U, PIC2
184
189
 
185
190
#endif