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>
47 /* === U S I N G =========================================================== */
51 using namespace synfig;
52 using namespace studio;
54 /* === M A C R O S ========================================================= */
59 # define IMAGE_DIR "share\\pixmaps"
64 # define IMAGE_DIR "/usr/local/share/pixmaps"
68 # define IMAGE_EXT "png"
71 /* === G L O B A L S ======================================================= */
73 /* === P R O C E D U R E S ================================================= */
75 /* === M E T H O D S ======================================================= */
77 Dockable::Dockable(const synfig::String& name,const synfig::String& local_name,Gtk::StockID stock_id_):
78 // Gtk::Window(Gtk::WINDOW_TOPLEVEL),
80 local_name_(local_name),
81 // dialog_settings(this,name),
82 title_label_(local_name,Gtk::ALIGN_LEFT),
90 //set_title(local_name);
91 //set_type_hint(Gdk::WINDOW_TYPE_HINT_UTILITY);
96 attach_dnd_to(title_label_);
98 //scrolled_.set_policy(Gtk::POLICY_AUTOMATIC,Gtk::POLICY_AUTOMATIC);
100 //scrolled_.set_shadow_type(Gtk::SHADOW_NONE);
103 //button_box_.show();
105 Gtk::Table* table(this);
108 title_label_.set_padding(0,0);
109 Gtk::EventBox* event_box(manage(new Gtk::EventBox()));
110 event_box->set_border_width(0);
111 event_box->add(title_label_);
112 //table->attach(*event_box, 0, 1, 0,1, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
114 header_box_.pack_start(*event_box);
116 attach_dnd_to(*event_box);
118 // event_box->set_events(Gdk::ALL_EVENTS_MASK); //!< \todo change this to only allow what is necessary for DnD
121 Gtk::Button* bttn_close(manage(new Gtk::Button(_("X"))));
122 //table->attach(*bttn_close, 1, 2, 0,1, Gtk::SHRINK|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
123 header_box_.pack_end(*bttn_close,false,false);
125 bttn_close->set_relief(Gtk::RELIEF_NONE);
126 bttn_close->signal_clicked().connect(sigc::mem_fun(*this,&Dockable::detach));
127 bttn_close->set_border_width(0);
128 dynamic_cast<Gtk::Misc*>(bttn_close->get_child())->set_padding(0,0);
131 prev_widget_=manage(new Gtk::Label(" "));
133 //table->attach(header_box_, 0, 1, 0,1, Gtk::SHRINK|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
134 table->attach(*prev_widget_, 0, 1, 1,2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
135 //table->attach(*toolbar_, 0, 1, 2,3, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
136 set_toolbar(*manage(new Gtk::Toolbar));
139 prev_widget_->show();
141 set_size_request(175,120);
142 //scrolled_.set_shadow_type(Gtk::SHADOW_NONE);
146 Dockable::~Dockable()
154 /*if(App::dock_manager)try{
155 App::dock_manager->unregister_dockable(*this);
156 std::list<Dockable*>::iterator iter;
157 for(iter=App::dock_manager->dockable_list_.begin();iter!=App::dock_manager->dockable_list_.end();++iter)
160 App::dock_manager->dockable_list_.erase(iter);
165 //if(App::dock_manager)
166 // App::dock_manager->dockable_list_.erase(this);
170 Dockable::attach_dnd_to(Gtk::Widget& widget)
172 std::list<Gtk::TargetEntry> listTargets;
173 listTargets.push_back( Gtk::TargetEntry("DOCK") );
175 widget.drag_source_set(listTargets);
176 widget.drag_source_set_icon(get_stock_id());
177 widget.drag_dest_set(listTargets);
180 widget.signal_drag_data_get().connect(sigc::mem_fun(*this,&Dockable::on_drag_data_get));
181 widget.signal_drag_end().connect(sigc::mem_fun(*this,&Dockable::on_drag_end));
182 widget.signal_drag_begin().connect(sigc::mem_fun(*this,&Dockable::on_drag_begin));
183 widget.signal_drag_data_received().connect(sigc::mem_fun(*this,&Dockable::on_drag_data_received));
187 Dockable::on_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& context, int, int, const Gtk::SelectionData& selection_data, guint, guint time)
189 if ((selection_data.get_length() >= 0) && (selection_data.get_format() == 8))
191 Dockable& dockable(**reinterpret_cast<Dockable**>(const_cast<guint8*>(selection_data.get_data())));
193 if(dockable.parent_ != parent_)
194 parent_->add(dockable,parent_->page_num(*this));
196 parent_->reorder_child(dockable,parent_->page_num(*this));
198 context->drag_finish(true, false, time);
202 context->drag_finish(false, false, time);
206 Dockable::on_drag_end(const Glib::RefPtr<Gdk::DragContext>&/*context*/)
216 Dockable::on_drag_begin(const Glib::RefPtr<Gdk::DragContext>&/*context*/)
222 Dockable::on_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&, Gtk::SelectionData& selection_data, guint /*info*/, guint /*time*/)
227 selection_data.set(8, reinterpret_cast<const guchar*>(&tmp), 4);
231 Dockable::set_local_name(const synfig::String& local_name)
233 //set_title(local_name);
234 title_label_.set_text(local_name);
240 //if(!toolbar_->children().empty())
241 // toolbar_->children().clear();
242 set_toolbar(*manage(new Gtk::Toolbar));
247 Dockable::set_toolbar(Gtk::Toolbar& toolbar)
249 if(toolbar_)remove(*toolbar_);
254 attach(*toolbar_, 0, 1, 2,3, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
255 gtk_toolbar_set_icon_size(toolbar_->gobj(),GtkIconSize(1)/*GTK_ICON_SIZE_MENU*/);
261 Dockable::clear_previous()
264 prev_widget_delete_connection.disconnect();
269 Dockable::add(Gtk::Widget& x)
273 remove(*prev_widget_);
286 scrolled_=new Gtk::ScrolledWindow;
290 attach(*scrolled_, 0, 1, 1,2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
296 scrolled_->set_shadow_type(Gtk::SHADOW_NONE);
297 scrolled_->set_policy(Gtk::POLICY_AUTOMATIC,Gtk::POLICY_AUTOMATIC);
298 prev_widget_=scrolled_;
302 attach(x, 0, 1, 1,2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
306 prev_widget_delete_connection=prev_widget_->signal_delete_event().connect(
310 &Dockable::clear_previous
317 Dockable::add_button(const Gtk::StockID& stock_id, const synfig::String& tooltip)
320 set_toolbar(*manage(new Gtk::Toolbar));
322 //Gtk::IconSize iconsize(4);
323 //Gtk::IconSize iconsize(Gtk::IconSize::from_name("synfig-small_icon"));
325 Gtk::ToolButton* ret(manage(new Gtk::ToolButton(stock_id)));
326 //Gtk::Image* icon(manage(new Gtk::Image(stock_id,iconsize)));
328 //ret->set_relief(Gtk::RELIEF_HALF);
329 //ret->set_relief(Gtk::RELIEF_NONE);
330 ret->set_label(tooltip);
331 //toolbar_->get_tooltips_object()->set_tip(*ret,tooltip);
335 toolbar_->set_tooltips(true);
337 toolbar_->append(*ret);
338 //button_box_.pack_start(*ret,false,false);
339 //get_action_area()->pack_start(*ret,false,false);
340 //add_action_widget(*ret,1);
349 parent_->remove(*this);
357 parent_->set_current_page(parent_->page_num(*this));
362 DockDialog* dock_dialog(new DockDialog());
363 dock_dialog->get_dock_book().add(*this);
364 //if(get_name()=="canvases")
365 // dock_dialog->set_composition_selector(true);
366 dock_dialog->present();
371 Dockable::create_tab_label()
373 Gtk::EventBox* event_box(manage(new Gtk::EventBox()));
375 attach_dnd_to(*event_box);
378 Gtk::StockID stock_id(get_stock_id());
381 // Check to make sure the icon is valid
382 if(Gtk::Stock::lookup(stock_id,item))
384 Gtk::Image* icon(manage(new Gtk::Image(stock_id,Gtk::IconSize(4))));
385 event_box->add(*icon);
386 tooltips_.set_tip(*event_box,get_local_name());
391 // Bad icon, try to make a label
393 Glib::ustring text(get_local_name());
395 Gtk::Label* label(manage(new Gtk::Label(text)));
396 event_box->add(*label);