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 #pragma once
20 #ifndef STACK_INFO_TIP_H
21 #define STACK_INFO_TIP_H
22 
23 #include <memory>
24 #include <sigc++/trackable.h>
25 #include <gtkmm.h>
26 #include "map-tip-position.h"
27 
28 class StackTile;
29 
30 // shows a tooltip like window with information about a stack
31 class StackInfoTip: public sigc::trackable
32 {
33  public:
34     // the tip is shown above target, simply delete the object to hide it again
35     StackInfoTip(Gtk::Widget *target, MapTipPosition map, StackTile *s);
36     ~StackInfoTip();
37 
38  private:
39     Gtk::Window* window;
40     Gtk::Box *image_hbox;
41 };
42 
43 #endif
44