initial commit, lordsawar source, slightly modified
[lordsawar] / src / gui / stack-info-tip.h
1 //  Copyright (C) 2007 Ole Laursen
2 //  Copyright (C) 2007, 2008, 2009 Ben Asselstine
3 //
4 //  This program is free software; you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation; either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU Library General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program; if not, write to the Free Software
16 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 
17 //  02110-1301, USA.
18
19 #ifndef STACK_INFO_TIP_H
20 #define STACK_INFO_TIP_H
21
22 #include <memory>
23 #include <sigc++/trackable.h>
24 #include <gtkmm.h>
25 #include "map-tip-position.h"
26
27 class StackTile;
28
29 // shows a tooltip like window with information about a stack 
30 class StackInfoTip: public sigc::trackable
31 {
32  public:
33     // the tip is shown above target, simply delete the object to hide it again
34     StackInfoTip(Gtk::Widget *target, MapTipPosition map, StackTile *s);
35     ~StackInfoTip();
36
37  private:
38     Gtk::Window* window;
39     Gtk::Box *image_hbox;
40 };
41
42 #endif