Paul Davis
a73d15e989
git-svn-id: svn://localhost/ardour2/branches/3.0@5306 d708f5d6-7413-0410-9779-e7cbd77b26cf
85 lines
3.0 KiB
Plaintext
85 lines
3.0 KiB
Plaintext
// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
/* Copyright (C) 2007 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 <gio/gio.h>
|
|
#include <giomm/file.h>
|
|
|
|
namespace Gio
|
|
{
|
|
|
|
#ifdef GLIBMM_EXCEPTIONS_ENABLED
|
|
Glib::RefPtr<AppInfo>
|
|
AppInfo::create_from_commandline(const std::string& commandline,
|
|
const std::string& application_name,
|
|
AppInfoCreateFlags flags)
|
|
#else
|
|
Glib::RefPtr<AppInfo>
|
|
AppInfo::create_from_commandline(const std::string& commandline,
|
|
const std::string& application_name,
|
|
AppInfoCreateFlags flags,
|
|
std::auto_ptr<Glib::Error>& error)
|
|
#endif // GLIBMM_EXCEPTIONS_ENABLED
|
|
{
|
|
GAppInfo* capp_info = 0;
|
|
GError* gerror = 0;
|
|
|
|
capp_info = g_app_info_create_from_commandline(commandline.c_str(),
|
|
application_name.c_str(),
|
|
static_cast<GAppInfoCreateFlags>(flags),
|
|
&gerror);
|
|
|
|
if (gerror)
|
|
#ifdef GLIBMM_EXCEPTIONS_ENABLED
|
|
::Glib::Error::throw_exception(gerror);
|
|
#else
|
|
error = ::Glib::Error::throw_exception(gerror);
|
|
#endif //GLIBMM_EXCEPTIONS_ENABLED
|
|
|
|
return Glib::wrap(capp_info);
|
|
}
|
|
|
|
Glib::ListHandle< Glib::RefPtr<AppInfo> > AppInfo::get_all()
|
|
{
|
|
return Glib::ListHandle< Glib::RefPtr<AppInfo> >(g_app_info_get_all(), Glib::OWNERSHIP_SHALLOW);
|
|
}
|
|
|
|
Glib::ListHandle< Glib::RefPtr<AppInfo> > AppInfo::get_all_for_type(const std::string& content_type)
|
|
{
|
|
return Glib::ListHandle< Glib::RefPtr<AppInfo> >(
|
|
g_app_info_get_all_for_type(content_type.c_str()), Glib::OWNERSHIP_SHALLOW);
|
|
}
|
|
|
|
Glib::RefPtr<AppInfo> AppInfo::get_default_for_type(const std::string& content_type,
|
|
bool must_support_uris)
|
|
{
|
|
GAppInfo* cinfo = 0;
|
|
cinfo = g_app_info_get_default_for_type(content_type.c_str(),
|
|
static_cast<gboolean>(must_support_uris));
|
|
return Glib::wrap(cinfo);
|
|
}
|
|
|
|
Glib::RefPtr<AppInfo> AppInfo::get_default_for_uri_scheme(const std::string& uri_scheme)
|
|
{
|
|
GAppInfo* cinfo = 0;
|
|
cinfo = g_app_info_get_default_for_uri_scheme(uri_scheme.c_str());
|
|
return Glib::wrap(cinfo);
|
|
}
|
|
|
|
} // namespace Gio
|