~ubuntu-branches/ubuntu/maverick/btanks/maverick

« back to all changes in this revision

Viewing changes to engine/menu/control.h

  • Committer: Bazaar Package Importer
  • Author(s): Ansgar Burchardt
  • Date: 2010-01-17 00:02:57 UTC
  • mfrom: (4.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100117000257-iw6esnvsz1rvp6kb
Tags: 0.9.8083-2
* Fix build failure when building only arch-specific package.
* debian/control: Add DM-Upload-Allowed: yes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define BTANKS_MENU_CONTROL_H__
3
3
 
4
4
/* Battle Tanks Game
5
 
 * Copyright (C) 2006-2008 Battle Tanks team
 
5
 * Copyright (C) 2006-2009 Battle Tanks team
6
6
 *
7
7
 * This program is free software; you can redistribute it and/or
8
8
 * modify it under the terms of the GNU General Public License
54
54
        inline void reset() { _changed = false; }
55
55
        
56
56
        virtual void hide(const bool hide = true);
57
 
        inline const bool hidden() const { return _hidden; }
 
57
        virtual bool hidden() const { return _hidden; }
58
58
        
59
59
        virtual void activate(const bool active);
60
60
 
66
66
        bool _changed;
67
67
        bool _mouse_in;
68
68
protected: 
69
 
        bool _hidden;
 
69
        bool _hidden, _modal;
70
70
};
71
71
 
72
72
#endif