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 #ifndef MY_DROPDOWN_HH_ 00017 #define MY_DROPDOWN_HH_ 00018 00019 #include "pgdropdown.h" 00020 00021 class My_DropDown : public PG_DropDown 00022 { 00023 public: 00024 // ----------------------------------------------------------------------- 00025 // Constructors 00026 // ----------------------------------------------------------------------- 00027 My_DropDown(PG_Widget* parent, const PG_Rect& r = PG_Rect::null, int id = -1, const char* style="DropDown"); 00028 virtual ~My_DropDown(); 00029 }; 00030 00031 #endif /*MY_DROPDOWN_HH_*/
1.4.7