13
0
livetrax/libs/gtkmm2/gtk/gtkmm/recentinfo.cc
Paul Davis 449aab3c46 rollback to 3428, before the mysterious removal of libs/* at 3431/3432
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
2008-06-02 21:41:35 +00:00

239 lines
7.2 KiB
C++

// Generated by gtkmmproc -- DO NOT MODIFY!
#include <gtkmm/recentinfo.h>
#include <gtkmm/private/recentinfo_p.h>
/* Copyright (C) 2006 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 <gtk/gtkrecentmanager.h>
namespace Gtk
{
bool RecentInfo::equal(const RecentInfo& other) const
{
return (static_cast<bool>(gtk_recent_info_match(const_cast<GtkRecentInfo*>(this->gobj()),
const_cast<GtkRecentInfo*>(other.gobj()))));
}
RecentInfo::operator bool() const
{
return gobj() != 0;
}
Glib::StringArrayHandle RecentInfo::get_applications() const
{
//We pass 0 for the length output argument, because we don't need it, because the returned array is null-terminated.
return Glib::StringArrayHandle(gtk_recent_info_get_applications(const_cast<GtkRecentInfo*>(this->gobj()), 0));
}
Glib::StringArrayHandle RecentInfo::get_groups() const
{
//We pass 0 for the length output argument, because we don't need it, because the returned array is null-terminated.
return Glib::StringArrayHandle(gtk_recent_info_get_groups(const_cast<GtkRecentInfo*>(this->gobj()), 0));
}
RecentInfoTraits::CppType RecentInfoTraits::to_cpp_type(const CType& obj)
{
return Glib::wrap(const_cast<CTypeNonConst>(obj), true);
}
} // namespace Gtk
namespace
{
} // anonymous namespace
/* Why reinterpret_cast<RecentInfo*>(gobject) is needed:
*
* A RecentInfo instance is in fact always a GtkRecentInfo instance.
* Unfortunately, GtkRecentInfo cannot be a member of RecentInfo,
* because it is an opaque struct. Also, the C interface does not provide
* any hooks to install a destroy notification handler, thus we cannot
* wrap it dynamically either.
*
* The cast works because RecentInfo does not have any member data, and
* it is impossible to derive from it. This is ensured by not implementing
* the (protected) default constructor. The ctor is protected rather than
* private just to avoid a compile warning.
*/
namespace Glib
{
Glib::RefPtr<Gtk::RecentInfo> wrap(GtkRecentInfo* object, bool take_copy)
{
if(take_copy && object)
gtk_recent_info_ref(object);
// See the comment at the top of this file, if you want to know why the cast works.
return Glib::RefPtr<Gtk::RecentInfo>(reinterpret_cast<Gtk::RecentInfo*>(object));
}
} // namespace Glib
namespace Gtk
{
void RecentInfo::reference() const
{
// See the comment at the top of this file, if you want to know why the cast works.
gtk_recent_info_ref(reinterpret_cast<GtkRecentInfo*>(const_cast<RecentInfo*>(this)));
}
void RecentInfo::unreference() const
{
// See the comment at the top of this file, if you want to know why the cast works.
gtk_recent_info_unref(reinterpret_cast<GtkRecentInfo*>(const_cast<RecentInfo*>(this)));
}
GtkRecentInfo* RecentInfo::gobj()
{
// See the comment at the top of this file, if you want to know why the cast works.
return reinterpret_cast<GtkRecentInfo*>(this);
}
const GtkRecentInfo* RecentInfo::gobj() const
{
// See the comment at the top of this file, if you want to know why the cast works.
return reinterpret_cast<const GtkRecentInfo*>(this);
}
GtkRecentInfo* RecentInfo::gobj_copy() const
{
// See the comment at the top of this file, if you want to know why the cast works.
GtkRecentInfo *const gobject = reinterpret_cast<GtkRecentInfo*>(const_cast<RecentInfo*>(this));
gtk_recent_info_ref(gobject);
return gobject;
}
Glib::ustring RecentInfo::get_uri() const
{
return Glib::convert_const_gchar_ptr_to_ustring(gtk_recent_info_get_uri(const_cast<GtkRecentInfo*>(gobj())));
}
Glib::ustring RecentInfo::get_display_name() const
{
return Glib::convert_const_gchar_ptr_to_ustring(gtk_recent_info_get_display_name(const_cast<GtkRecentInfo*>(gobj())));
}
Glib::ustring RecentInfo::get_description() const
{
return Glib::convert_const_gchar_ptr_to_ustring(gtk_recent_info_get_description(const_cast<GtkRecentInfo*>(gobj())));
}
Glib::ustring RecentInfo::get_mime_type() const
{
return Glib::convert_const_gchar_ptr_to_ustring(gtk_recent_info_get_mime_type(const_cast<GtkRecentInfo*>(gobj())));
}
time_t RecentInfo::get_added() const
{
return gtk_recent_info_get_added(const_cast<GtkRecentInfo*>(gobj()));
}
time_t RecentInfo::get_modified() const
{
return gtk_recent_info_get_modified(const_cast<GtkRecentInfo*>(gobj()));
}
time_t RecentInfo::get_visited() const
{
return gtk_recent_info_get_visited(const_cast<GtkRecentInfo*>(gobj()));
}
bool RecentInfo::get_private_hint() const
{
return gtk_recent_info_get_private_hint(const_cast<GtkRecentInfo*>(gobj()));
}
bool RecentInfo::get_application_info(const Glib::ustring& app_name, Glib::StringArrayHandle& app_exec, guint& count, time_t& time) const
{
return gtk_recent_info_get_application_info(const_cast<GtkRecentInfo*>(gobj()), app_name.c_str(), const_cast<gchar**>((app_exec).data()), &(count), &(time));
}
Glib::ustring RecentInfo::last_application() const
{
return Glib::convert_return_gchar_ptr_to_ustring(gtk_recent_info_last_application(const_cast<GtkRecentInfo*>(gobj())));
}
bool RecentInfo::has_application(const Glib::ustring& app_name) const
{
return gtk_recent_info_has_application(const_cast<GtkRecentInfo*>(gobj()), app_name.c_str());
}
bool RecentInfo::has_group(const Glib::ustring& group) const
{
return gtk_recent_info_has_group(const_cast<GtkRecentInfo*>(gobj()), group.c_str());
}
Glib::RefPtr<Gdk::Pixbuf> RecentInfo::get_icon(int size)
{
Glib::RefPtr<Gdk::Pixbuf> retvalue = Glib::wrap(gtk_recent_info_get_icon(gobj(), size));
if(retvalue)
retvalue->reference(); //The function does not do a ref for us.
return retvalue;
}
Glib::RefPtr<const Gdk::Pixbuf> RecentInfo::get_icon(int size) const
{
Glib::RefPtr<const Gdk::Pixbuf> retvalue = Glib::wrap(gtk_recent_info_get_icon(const_cast<GtkRecentInfo*>(gobj()), size));
if(retvalue)
retvalue->reference(); //The function does not do a ref for us.
return retvalue;
}
Glib::ustring RecentInfo::get_short_name() const
{
return Glib::convert_return_gchar_ptr_to_ustring(gtk_recent_info_get_short_name(const_cast<GtkRecentInfo*>(gobj())));
}
Glib::ustring RecentInfo::get_uri_display() const
{
return Glib::convert_return_gchar_ptr_to_ustring(gtk_recent_info_get_uri_display(const_cast<GtkRecentInfo*>(gobj())));
}
int RecentInfo::get_age() const
{
return gtk_recent_info_get_age(const_cast<GtkRecentInfo*>(gobj()));
}
bool RecentInfo::is_local() const
{
return gtk_recent_info_is_local(const_cast<GtkRecentInfo*>(gobj()));
}
bool RecentInfo::exists() const
{
return gtk_recent_info_exists(const_cast<GtkRecentInfo*>(gobj()));
}
} // namespace Gtk