// Generated by gtkmmproc -- DO NOT MODIFY! #include #include #include // -*- c++ -*- /* $Id$ */ /* * * 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 #include #include #include //For ScopedPtr<>. namespace Gdk { void DragContext::find_window_for_screen(const Glib::RefPtr& drag_window, const Glib::RefPtr& screen, int x_root, int y_root, Glib::RefPtr& dest_window, DragProtocol* protocol) const { GdkWindow* cWindow = 0; gdk_drag_find_window_for_screen(const_cast(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); } Glib::StringArrayHandle DragContext::get_targets() const { std::list 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(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::value_type() { return gdk_drag_action_get_type(); } // static GType Glib::Value::value_type() { return gdk_drag_protocol_get_type(); } namespace Glib { Glib::RefPtr wrap(GdkDragContext* object, bool take_copy) { return Glib::RefPtr( dynamic_cast (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(g_class); CppClassParent::class_init_function(klass, class_data); } Glib::ObjectBase* DragContext_Class::wrap_new(GObject* object) { return new DragContext((GdkDragContext*)object); } /* The implementation: */ 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::create() { return Glib::RefPtr( new DragContext() ); } void DragContext::drag_status(DragAction action, guint32 time) { gdk_drag_status(gobj(), ((GdkDragAction)(action)), time); } void DragContext::drop_reply(bool ok, guint32 time) { gdk_drop_reply(gobj(), static_cast(ok), time); } void DragContext::drop_finish(bool success, guint32 time) { gdk_drop_finish(gobj(), static_cast(success), time); } Glib::ustring DragContext::get_selection() const { return Gdk::AtomString::to_cpp_type(gdk_drag_get_selection(const_cast(gobj()))); } void DragContext::drag_finish(bool success, bool del, guint32 time) { gtk_drag_finish(gobj(), static_cast(success), static_cast(del), time); } void DragContext::set_icon(const Glib::RefPtr& colormap, const Glib::RefPtr& pixmap, const Glib::RefPtr& 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& 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()); } Glib::RefPtr DragContext::get_source_window() { Glib::RefPtr ref_ptr(Glib::wrap((GdkWindowObject*)(gobj()->source_window))); if(ref_ptr) ref_ptr->reference(); return ref_ptr; } Glib::RefPtr DragContext::get_source_window() const { Glib::RefPtr ref_ptr(Glib::wrap((GdkWindowObject*)(gobj()->source_window))); if(ref_ptr) ref_ptr->reference(); return ref_ptr; } Glib::RefPtr DragContext::get_destination_window() { Glib::RefPtr ref_ptr(Glib::wrap((GdkWindowObject*)(gobj()->dest_window))); if(ref_ptr) ref_ptr->reference(); return ref_ptr; } Glib::RefPtr DragContext::get_destination_window() const { Glib::RefPtr ref_ptr(Glib::wrap((GdkWindowObject*)(gobj()->dest_window))); if(ref_ptr) ref_ptr->reference(); return ref_ptr; } DragProtocol DragContext::get_protocol() const { return ((DragProtocol)(gobj()->protocol)); } bool DragContext::get_is_source() const { return gobj()->is_source; } DragAction DragContext::get_actions() const { return ((DragAction)(gobj()->actions)); } DragAction DragContext::get_suggested_action() const { return ((DragAction)(gobj()->suggested_action)); } DragAction DragContext::get_action() const { return ((DragAction)(gobj()->action)); } guint32 DragContext::get_start_time() const { return gobj()->start_time; } } // namespace Gdk