1 /* === S Y N F I G ========================================================= */
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
33 #include <sigc++/hide.h>
36 #include "dockmanager.h"
38 #include "dockdialog.h"
39 #include <synfig/general.h>
40 #include <gtkmm/table.h>
45 /* === U S I N G =========================================================== */
49 using namespace synfig;
50 using namespace studio;
52 /* === M A C R O S ========================================================= */
57 # define IMAGE_DIR "share\\pixmaps"
62 # define IMAGE_DIR "/usr/local/share/pixmaps"
66 # define IMAGE_EXT "png"
69 /* === G L O B A L S ======================================================= */
71 /* === P R O C E D U R E S ================================================= */
73 /* === M E T H O D S ======================================================= */
75 Dockable::Dockable(const synfig::String& name,const synfig::String& local_name,Gtk::StockID stock_id_):
76 // Gtk::Window(Gtk::WINDOW_TOPLEVEL),
78 local_name_(local_name),
79 // dialog_settings(this,name),
80 title_label_(local_name,Gtk::ALIGN_LEFT),
88 //set_title(local_name);
89 //set_type_hint(Gdk::WINDOW_TYPE_HINT_UTILITY);
94 attach_dnd_to(title_label_);
96 //scrolled_.set_policy(Gtk::POLICY_AUTOMATIC,Gtk::POLICY_AUTOMATIC);
98 //scrolled_.set_shadow_type(Gtk::SHADOW_NONE);
101 //button_box_.show();
103 Gtk::Table* table(this);
106 title_label_.set_padding(0,0);
107 Gtk::EventBox* event_box(manage(new Gtk::EventBox()));
108 event_box->set_border_width(0);
109 event_box->add(title_label_);
110 //table->attach(*event_box, 0, 1, 0,1, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
112 header_box_.pack_start(*event_box);
114 attach_dnd_to(*event_box);
116 // event_box->set_events(Gdk::ALL_EVENTS_MASK); //!< \todo change this to only allow what is necessary for DnD
119 Gtk::Button* bttn_close(manage(new Gtk::Button("X")));
120 //table->attach(*bttn_close, 1, 2, 0,1, Gtk::SHRINK|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
121 header_box_.pack_end(*bttn_close,false,false);
123 bttn_close->set_relief(Gtk::RELIEF_NONE);
124 bttn_close->signal_clicked().connect(sigc::mem_fun(*this,&Dockable::detach));
125 bttn_close->set_border_width(0);
126 dynamic_cast<Gtk::Misc*>(bttn_close->get_child())->set_padding(0,0);
129 prev_widget_=manage(new Gtk::Label(" "));
131 //table->attach(header_box_, 0, 1, 0,1, Gtk::SHRINK|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
132 table->attach(*prev_widget_, 0, 1, 1,2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
133 //table->attach(*toolbar_, 0, 1, 2,3, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
134 set_toolbar(*manage(new Gtk::Toolbar));
137 prev_widget_->show();
139 set_size_request(175,120);
140 //scrolled_.set_shadow_type(Gtk::SHADOW_NONE);
144 Dockable::~Dockable()
152 /*if(App::dock_manager)try{
153 App::dock_manager->unregister_dockable(*this);
154 std::list<Dockable*>::iterator iter;
155 for(iter=App::dock_manager->dockable_list_.begin();iter!=App::dock_manager->dockable_list_.end();++iter)
158 App::dock_manager->dockable_list_.erase(iter);
163 //if(App::dock_manager)
164 // App::dock_manager->dockable_list_.erase(this);
168 Dockable::attach_dnd_to(Gtk::Widget& widget)
170 std::list<Gtk::TargetEntry> listTargets;
171 listTargets.push_back( Gtk::TargetEntry("DOCK") );
173 widget.drag_source_set(listTargets);
174 widget.drag_source_set_icon(get_stock_id());
175 widget.drag_dest_set(listTargets);
178 widget.signal_drag_data_get().connect(sigc::mem_fun(*this,&Dockable::on_drag_data_get));
179 widget.signal_drag_end().connect(sigc::mem_fun(*this,&Dockable::on_drag_end));
180 widget.signal_drag_begin().connect(sigc::mem_fun(*this,&Dockable::on_drag_begin));
181 widget.signal_drag_data_received().connect(sigc::mem_fun(*this,&Dockable::on_drag_data_received));
185 Dockable::on_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& context, int, int, const Gtk::SelectionData& selection_data, guint, guint time)
187 if ((selection_data.get_length() >= 0) && (selection_data.get_format() == 8))
189 Dockable& dockable(**reinterpret_cast<Dockable**>(const_cast<guint8*>(selection_data.get_data())));
191 if(dockable.parent_ != parent_)
192 parent_->add(dockable,parent_->page_num(*this));
194 parent_->reorder_child(dockable,parent_->page_num(*this));
196 context->drag_finish(true, false, time);
200 context->drag_finish(false, false, time);
204 Dockable::on_drag_end(const Glib::RefPtr<Gdk::DragContext>&context)
214 Dockable::on_drag_begin(const Glib::RefPtr<Gdk::DragContext>&context)
220 Dockable::on_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&, Gtk::SelectionData& selection_data, guint info, guint time)
225 selection_data.set(8, reinterpret_cast<const guchar*>(&tmp), 4);
229 Dockable::set_local_name(const synfig::String& local_name)
231 //set_title(local_name);
232 title_label_.set_text(local_name);
238 //if(!toolbar_->children().empty())
239 // toolbar_->children().clear();
240 set_toolbar(*manage(new Gtk::Toolbar));
245 Dockable::set_toolbar(Gtk::Toolbar& toolbar)
247 if(toolbar_)remove(*toolbar_);
252 attach(*toolbar_, 0, 1, 2,3, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
253 gtk_toolbar_set_icon_size(toolbar_->gobj(),GtkIconSize(1)/*GTK_ICON_SIZE_MENU*/);
259 Dockable::clear_previous()
262 prev_widget_delete_connection.disconnect();
267 Dockable::add(Gtk::Widget& x)
271 remove(*prev_widget_);
284 scrolled_=new Gtk::ScrolledWindow;
288 attach(*scrolled_, 0, 1, 1,2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
294 scrolled_->set_shadow_type(Gtk::SHADOW_NONE);
295 scrolled_->set_policy(Gtk::POLICY_AUTOMATIC,Gtk::POLICY_AUTOMATIC);
296 prev_widget_=scrolled_;
300 attach(x, 0, 1, 1,2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
304 prev_widget_delete_connection=prev_widget_->signal_delete_event().connect(
308 &Dockable::clear_previous
315 Dockable::add_button(const Gtk::StockID& stock_id, const synfig::String& tooltip)
318 set_toolbar(*manage(new Gtk::Toolbar));
320 //Gtk::IconSize iconsize(4);
321 //Gtk::IconSize iconsize(Gtk::IconSize::from_name("synfig-small_icon"));
323 Gtk::ToolButton* ret(manage(new Gtk::ToolButton(stock_id)));
324 //Gtk::Image* icon(manage(new Gtk::Image(stock_id,iconsize)));
326 //ret->set_relief(Gtk::RELIEF_HALF);
327 //ret->set_relief(Gtk::RELIEF_NONE);
328 ret->set_label(tooltip);
329 //toolbar_->get_tooltips_object()->set_tip(*ret,tooltip);
333 toolbar_->set_tooltips(true);
335 toolbar_->append(*ret);
336 //button_box_.pack_start(*ret,false,false);
337 //get_action_area()->pack_start(*ret,false,false);
338 //add_action_widget(*ret,1);
347 parent_->remove(*this);
355 parent_->set_current_page(parent_->page_num(*this));
360 DockDialog* dock_dialog(new DockDialog());
361 dock_dialog->get_dock_book().add(*this);
362 //if(get_name()=="canvases")
363 // dock_dialog->set_composition_selector(true);
364 dock_dialog->present();
369 Dockable::create_tab_label()
371 Gtk::EventBox* event_box(manage(new Gtk::EventBox()));
373 attach_dnd_to(*event_box);
376 Gtk::StockID stock_id(get_stock_id());
379 // Check to make sure the icon is valid
380 if(Gtk::Stock::lookup(stock_id,item))
382 Gtk::Image* icon(manage(new Gtk::Image(stock_id,Gtk::IconSize(4))));
383 event_box->add(*icon);
384 tooltips_.set_tip(*event_box,get_local_name());
389 // Bad icon, try to make a label
391 Glib::ustring text(get_local_name());
393 Gtk::Label* label(manage(new Gtk::Label(text)));
394 event_box->add(*label);