synfig-studio  1.0.3
dockdroparea.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_STUDIO_DOCKDROPAREA_H
26 #define __SYNFIG_STUDIO_DOCKDROPAREA_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <gtkmm/table.h>
31 
32 /* === M A C R O S ========================================================= */
33 
34 /* === T Y P E D E F S ===================================================== */
35 
36 /* === C L A S S E S & S T R U C T S ======================================= */
37 
38 namespace studio {
39 
40 class DockDropArea : public Gtk::Table
41 {
42 protected:
43  void drop_on(bool vertical, bool first, const Glib::RefPtr<Gdk::DragContext>& context, const Gtk::SelectionData& selection_data, guint time);
44  void drop_on_left(const Glib::RefPtr<Gdk::DragContext>& context, int, int, const Gtk::SelectionData& selection_data, guint, guint time);
45  void drop_on_right(const Glib::RefPtr<Gdk::DragContext>& context, int, int, const Gtk::SelectionData& selection_data, guint, guint time);
46  void drop_on_top(const Glib::RefPtr<Gdk::DragContext>& context, int, int, const Gtk::SelectionData& selection_data, guint, guint time);
47  void drop_on_bottom(const Glib::RefPtr<Gdk::DragContext>& context, int, int, const Gtk::SelectionData& selection_data, guint, guint time);
48 
49 public:
50  Gtk::Widget *target;
51 
52  DockDropArea(Gtk::Widget *target = NULL);
53 }; // END of studio::DockDropArea
54 
55 }; // END of namespace studio
56 
57 /* === E N D =============================================================== */
58 
59 #endif