diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-05-01 18:18:24 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-05-01 18:18:24 +0000 |
commit | 84a403f0a0590ebc11f66955e864c12886da5815 (patch) | |
tree | 628d49ac79ea159ba0109eb8817cfd9144dbab13 /src/gui/chatinput.h | |
parent | e02192d7d1a34088d66072a60cf3ed57d638a695 (diff) | |
download | mana-84a403f0a0590ebc11f66955e864c12886da5815.tar.gz mana-84a403f0a0590ebc11f66955e864c12886da5815.tar.bz2 mana-84a403f0a0590ebc11f66955e864c12886da5815.tar.xz mana-84a403f0a0590ebc11f66955e864c12886da5815.zip |
Chat input now hides when not focussed, and doesn't allow player be controlled
by keyboard when it is.
Diffstat (limited to 'src/gui/chatinput.h')
-rw-r--r-- | src/gui/chatinput.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/gui/chatinput.h b/src/gui/chatinput.h new file mode 100644 index 00000000..9f543e24 --- /dev/null +++ b/src/gui/chatinput.h @@ -0,0 +1,47 @@ +/* + * The Mana World + * Copyright 2004 The Mana World Development Team + * + * This file is part of The Mana World. + * + * The Mana World is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * The Mana World is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with The Mana World; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * $Id$ + */ + +#ifndef _TMW_CHATINPUT_H +#define _TMW_CHATINPUT_H + +#include "textfield.h" + +/** + * The chat input hides when it loses focus. It is also invisible by default. + */ +class ChatInput : public TextField +{ + public: + /** + * Constructor. + */ + ChatInput(); + + /** + * Called if the chat input loses focus. It will set itself to + * invisible as result. + */ + void lostFocus(); +}; + +#endif |