00001 /* 00002 ** TowBowlTactics, an adaptation of the tabletop game Blood Bowl. 00003 ** 00004 ** Copyright (C) 2006 The TBT Team. 00005 ** 00006 ** This program is free software; you can redistribute it and/or 00007 ** modify it under the terms of the GNU General Public License 00008 ** as published by the Free Software Foundation; either version 2 00009 ** of the License, or (at your option) any later version. 00010 ** 00011 ** The complete GNU General Public Licence Notice can be found as the 00012 ** `NOTICE' file in the root directory. 00013 ** 00014 ** The TBT Team consists of people listed in the `AUTHORS' file. 00015 */ 00016 00017 #ifndef FOCUS_H 00018 # define FOCUS_H 00019 00020 # include "Widget.hh" 00021 00022 class Widget; 00023 00027 class Focus 00028 { 00029 Widget* focus; 00030 00031 public: 00032 Focus(Widget* widget=NULL); 00033 00034 Widget* get_focus(); 00035 void set_focus(Widget* widget); 00036 }; 00037 00038 #endif /*FOCUS_H*/
1.4.7