Blob Blame History Raw
// Generated by gmmproc 2.54.0 -- DO NOT MODIFY!


#include <glibmm.h>

#include <gtkmm/gesturedrag.h>
#include <gtkmm/private/gesturedrag_p.h>


/* Copyright (C) 2014 The gtkmm Development Team
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

#include <gtk/gtk.h>

namespace
{


static void GestureDrag_signal_drag_begin_callback(GtkGestureDrag* self, gdouble p0,gdouble p1,void* data)
{
  using namespace Gtk;
  using SlotType = sigc::slot< void,double,double >;

  auto obj = dynamic_cast<GestureDrag*>(Glib::ObjectBase::_get_current_wrapper((GObject*) self));
  // Do not try to call a signal on a disassociated wrapper.
  if(obj)
  {
    try
    {
      if(const auto slot = Glib::SignalProxyNormal::data_to_slot(data))
        (*static_cast<SlotType*>(slot))(p0
, p1
);
    }
    catch(...)
    {
       Glib::exception_handlers_invoke();
    }
  }
}

static const Glib::SignalProxyInfo GestureDrag_signal_drag_begin_info =
{
  "drag-begin",
  (GCallback) &GestureDrag_signal_drag_begin_callback,
  (GCallback) &GestureDrag_signal_drag_begin_callback
};


static void GestureDrag_signal_drag_update_callback(GtkGestureDrag* self, gdouble p0,gdouble p1,void* data)
{
  using namespace Gtk;
  using SlotType = sigc::slot< void,double,double >;

  auto obj = dynamic_cast<GestureDrag*>(Glib::ObjectBase::_get_current_wrapper((GObject*) self));
  // Do not try to call a signal on a disassociated wrapper.
  if(obj)
  {
    try
    {
      if(const auto slot = Glib::SignalProxyNormal::data_to_slot(data))
        (*static_cast<SlotType*>(slot))(p0
, p1
);
    }
    catch(...)
    {
       Glib::exception_handlers_invoke();
    }
  }
}

static const Glib::SignalProxyInfo GestureDrag_signal_drag_update_info =
{
  "drag-update",
  (GCallback) &GestureDrag_signal_drag_update_callback,
  (GCallback) &GestureDrag_signal_drag_update_callback
};


static void GestureDrag_signal_drag_end_callback(GtkGestureDrag* self, gdouble p0,gdouble p1,void* data)
{
  using namespace Gtk;
  using SlotType = sigc::slot< void,double,double >;

  auto obj = dynamic_cast<GestureDrag*>(Glib::ObjectBase::_get_current_wrapper((GObject*) self));
  // Do not try to call a signal on a disassociated wrapper.
  if(obj)
  {
    try
    {
      if(const auto slot = Glib::SignalProxyNormal::data_to_slot(data))
        (*static_cast<SlotType*>(slot))(p0
, p1
);
    }
    catch(...)
    {
       Glib::exception_handlers_invoke();
    }
  }
}

static const Glib::SignalProxyInfo GestureDrag_signal_drag_end_info =
{
  "drag-end",
  (GCallback) &GestureDrag_signal_drag_end_callback,
  (GCallback) &GestureDrag_signal_drag_end_callback
};


} // anonymous namespace


namespace Glib
{

Glib::RefPtr<Gtk::GestureDrag> wrap(GtkGestureDrag* object, bool take_copy)
{
  return Glib::RefPtr<Gtk::GestureDrag>( dynamic_cast<Gtk::GestureDrag*> (Glib::wrap_auto ((GObject*)(object), take_copy)) );
  //We use dynamic_cast<> in case of multiple inheritance.
}

} /* namespace Glib */


namespace Gtk
{


/* The *_Class implementation: */

const Glib::Class& GestureDrag_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_ = &GestureDrag_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(gtk_gesture_drag_get_type());

    // Add derived versions of interfaces, if the C type implements any interfaces:

  }

  return *this;
}


void GestureDrag_Class::class_init_function(void* g_class, void* class_data)
{
  const auto klass = static_cast<BaseClassType*>(g_class);
  CppClassParent::class_init_function(klass, class_data);


}


Glib::ObjectBase* GestureDrag_Class::wrap_new(GObject* object)
{
  return new GestureDrag((GtkGestureDrag*)object);
}


/* The implementation: */

GtkGestureDrag* GestureDrag::gobj_copy()
{
  reference();
  return gobj();
}

GestureDrag::GestureDrag(const Glib::ConstructParams& construct_params)
:
  GestureSingle(construct_params)
{

}

GestureDrag::GestureDrag(GtkGestureDrag* castitem)
:
  GestureSingle((GtkGestureSingle*)(castitem))
{}


GestureDrag::GestureDrag(GestureDrag&& src) noexcept
: GestureSingle(std::move(src))
{}

GestureDrag& GestureDrag::operator=(GestureDrag&& src) noexcept
{
  GestureSingle::operator=(std::move(src));
  return *this;
}


GestureDrag::~GestureDrag() noexcept
{}


GestureDrag::CppClassType GestureDrag::gesturedrag_class_; // initialize static member

GType GestureDrag::get_type()
{
  return gesturedrag_class_.init().get_type();
}


GType GestureDrag::get_base_type()
{
  return gtk_gesture_drag_get_type();
}


GestureDrag::GestureDrag()
:
  // Mark this class as non-derived to allow C++ vfuncs to be skipped.
  Glib::ObjectBase(nullptr),
  GestureSingle(Glib::ConstructParams(gesturedrag_class_.init()))
{
  

}

GestureDrag::GestureDrag(Widget& widget)
:
  // Mark this class as non-derived to allow C++ vfuncs to be skipped.
  Glib::ObjectBase(nullptr),
  GestureSingle(Glib::ConstructParams(gesturedrag_class_.init(), "widget", (widget).gobj(), nullptr))
{
  

}

Glib::RefPtr<GestureDrag> GestureDrag::create(Widget& widget)
{
  return Glib::RefPtr<GestureDrag>( new GestureDrag(widget) );
}

bool GestureDrag::get_start_point(double& x, double& y) const
{
  return gtk_gesture_drag_get_start_point(const_cast<GtkGestureDrag*>(gobj()), &(x), &(y));
}

bool GestureDrag::get_offset(double& x, double& y) const
{
  return gtk_gesture_drag_get_offset(const_cast<GtkGestureDrag*>(gobj()), &(x), &(y));
}


Glib::SignalProxy< void,double,double > GestureDrag::signal_drag_begin()
{
  return Glib::SignalProxy< void,double,double >(this, &GestureDrag_signal_drag_begin_info);
}


Glib::SignalProxy< void,double,double > GestureDrag::signal_drag_update()
{
  return Glib::SignalProxy< void,double,double >(this, &GestureDrag_signal_drag_update_info);
}


Glib::SignalProxy< void,double,double > GestureDrag::signal_drag_end()
{
  return Glib::SignalProxy< void,double,double >(this, &GestureDrag_signal_drag_end_info);
}


} // namespace Gtk