// Generated by gtkmmproc -- DO NOT MODIFY! #include <gdkmm/dragcontext.h> #include <gdkmm/private/dragcontext_p.h> #include <gdk/gdkenumtypes.h> // -*- c++ -*- /* $Id: dragcontext.cc 4 2005-05-13 20:47:18Z taybin $ */ /* * * Copyright 2002 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <gdkmm/window.h> #include <gtk/gtkdnd.h> #include <gdk/gdkwindow.h> #include <glibmm/utility.h> //For ScopedPtr<>. namespace Gdk { 00037 void DragContext::find_window_for_screen(const Glib::RefPtr<Window>& drag_window, const Glib::RefPtr<Screen>& screen, int x_root, int y_root, Glib::RefPtr<Window>& dest_window, DragProtocol* protocol) const { GdkWindow* cWindow = 0; gdk_drag_find_window_for_screen(const_cast<GdkDragContext*>(gobj()), drag_window->gobj(), screen->gobj(), x_root, y_root, &cWindow, (GdkDragProtocol*)(protocol)); dest_window = Glib::wrap((GdkWindowObject*)cWindow); } void DragContext::drag_refuse(guint32 time) { gdk_drag_status(gobj(), ((GdkDragAction)(0)) /* see GDK docs */, time); } 00049 Glib::StringArrayHandle DragContext::get_targets() const { std::list<Glib::ustring> listTargets; //Get a newly-allocated array of atoms: GList* list = gobj()->targets; while(list) { GdkAtom atom = (GdkAtom)list->data; //Convert the atom to a string: gchar* const atom_name = gdk_atom_name(atom); Glib::ustring target; if(atom_name) target = Glib::ScopedPtr<char>(atom_name).get(); //This frees the gchar*. listTargets.push_back(target); list = list->next; } return listTargets; } } /* namespace Gdk */ namespace { } // anonymous namespace // static GType Glib::Value<Gdk::DragAction>::value_type() { return gdk_drag_action_get_type(); } // static GType Glib::Value<Gdk::DragProtocol>::value_type() { return gdk_drag_protocol_get_type(); } namespace Glib { 00097 Glib::RefPtr<Gdk::DragContext> wrap(GdkDragContext* object, bool take_copy) { return Glib::RefPtr<Gdk::DragContext>( dynamic_cast<Gdk::DragContext*> (Glib::wrap_auto ((GObject*)(object), take_copy)) ); //We use dynamic_cast<> in case of multiple inheritance. } } /* namespace Glib */ namespace Gdk { /* The *_Class implementation: */ const Glib::Class& DragContext_Class::init() { if(!gtype_) // create the GType if necessary { // Glib::Class has to know the class init function to clone custom types. class_init_func_ = &DragContext_Class::class_init_function; // This is actually just optimized away, apparently with no harm. // Make sure that the parent type has been created. //CppClassParent::CppObjectType::get_type(); // Create the wrapper type, with the same class/instance size as the base type. register_derived_type(gdk_drag_context_get_type()); // Add derived versions of interfaces, if the C type implements any interfaces: } return *this; } void DragContext_Class::class_init_function(void* g_class, void* class_data) { BaseClassType *const klass = static_cast<BaseClassType*>(g_class); CppClassParent::class_init_function(klass, class_data); } Glib::ObjectBase* DragContext_Class::wrap_new(GObject* object) { return new DragContext((GdkDragContext*)object); } /* The implementation: */ 00148 GdkDragContext* DragContext::gobj_copy() { reference(); return gobj(); } DragContext::DragContext(const Glib::ConstructParams& construct_params) : Glib::Object(construct_params) {} DragContext::DragContext(GdkDragContext* castitem) : Glib::Object((GObject*)(castitem)) {} DragContext::~DragContext() {} DragContext::CppClassType DragContext::dragcontext_class_; // initialize static member GType DragContext::get_type() { return dragcontext_class_.init().get_type(); } GType DragContext::get_base_type() { return gdk_drag_context_get_type(); } DragContext::DragContext() : Glib::ObjectBase(0), //Mark this class as gtkmmproc-generated, rather than a custom class, to allow vfunc optimisations. Glib::Object(Glib::ConstructParams(dragcontext_class_.init())) { } Glib::RefPtr<DragContext> DragContext::create() { return Glib::RefPtr<DragContext>( new DragContext() ); } 00192 void DragContext::drag_status(DragAction action, guint32 time) { gdk_drag_status(gobj(), ((GdkDragAction)(action)), time); } 00197 void DragContext::drop_reply(bool ok, guint32 time) { gdk_drop_reply(gobj(), static_cast<int>(ok), time); } 00202 void DragContext::drop_finish(bool success, guint32 time) { gdk_drop_finish(gobj(), static_cast<int>(success), time); } 00207 Glib::ustring DragContext::get_selection() const { return Gdk::AtomString::to_cpp_type(gdk_drag_get_selection(const_cast<GdkDragContext*>(gobj()))); } void DragContext::drag_finish(bool success, bool del, guint32 time) { gtk_drag_finish(gobj(), static_cast<int>(success), static_cast<int>(del), time); } void DragContext::set_icon(const Glib::RefPtr<Gdk::Colormap>& colormap, const Glib::RefPtr<Gdk::Pixmap>& pixmap, const Glib::RefPtr<Gdk::Bitmap>& mask, int hot_x, int hot_y) { gtk_drag_set_icon_pixmap(gobj(), Glib::unwrap(colormap), Glib::unwrap(pixmap), Glib::unwrap(mask), hot_x, hot_y); } void DragContext::set_icon(const Glib::RefPtr<Gdk::Pixbuf>& pixbuf, int hot_x, int hot_y) { gtk_drag_set_icon_pixbuf(gobj(), Glib::unwrap(pixbuf), hot_x, hot_y); } void DragContext::set_icon(const Glib::ustring& stock_id, int hot_x, int hot_y) { gtk_drag_set_icon_stock(gobj(), stock_id.c_str(), hot_x, hot_y); } void DragContext::set_icon() { gtk_drag_set_icon_default(gobj()); } 00237 Glib::RefPtr<Window> DragContext::get_source_window() { Glib::RefPtr<Window> ref_ptr(Glib::wrap((GdkWindowObject*)(gobj()->source_window))); if(ref_ptr) ref_ptr->reference(); return ref_ptr; } Glib::RefPtr<const Window> DragContext::get_source_window() const { Glib::RefPtr<const Window> ref_ptr(Glib::wrap((GdkWindowObject*)(gobj()->source_window))); if(ref_ptr) ref_ptr->reference(); return ref_ptr; } 00257 Glib::RefPtr<Window> DragContext::get_destination_window() { Glib::RefPtr<Window> ref_ptr(Glib::wrap((GdkWindowObject*)(gobj()->dest_window))); if(ref_ptr) ref_ptr->reference(); return ref_ptr; } Glib::RefPtr<const Window> DragContext::get_destination_window() const { Glib::RefPtr<const Window> ref_ptr(Glib::wrap((GdkWindowObject*)(gobj()->dest_window))); if(ref_ptr) ref_ptr->reference(); return ref_ptr; } 00277 DragProtocol DragContext::get_protocol() const { return ((DragProtocol)(gobj()->protocol)); } 00282 bool DragContext::get_is_source() const { return gobj()->is_source; } 00287 DragAction DragContext::get_actions() const { return ((DragAction)(gobj()->actions)); } 00292 DragAction DragContext::get_suggested_action() const { return ((DragAction)(gobj()->suggested_action)); } 00297 DragAction DragContext::get_action() const { return ((DragAction)(gobj()->action)); } 00302 guint32 DragContext::get_start_time() const { return gobj()->start_time; } } // namespace Gdk