1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/*
Launchy: Application Launcher
Copyright (C) 2007 Josh Karlin
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <gtk/gtk.h>
#include <libgnomevfs/gnome-vfs.h>
#include <libgnome/gnome-desktop-item.h>
#include <QtGui>
#include <QApplication>
#include <QX11Info>
#include "platform_gnome.h"
#include "platform_gnome_util.h"
PlatformGnome::PlatformGnome() : PlatformUnix ()
{
// if (icons)
// delete icons;
icons.reset((QFileIconProvider*) new GnomeIconProvider());
// icons = (QFileIconProvider*) new GnomeIconProvider();
}
QApplication* PlatformGnome::init(int* argc, char** argv)
{
// MUST CALL GTK BEFORE QAPP! Otherwise things get confused
g_thread_init(NULL); // necessary since gtk called from catalog thread
gdk_threads_init();
gtk_init(argc, &argv);
gnome_vfs_init();
QApplication * app = new QApplication(*argc, argv);
icons.reset((QFileIconProvider*) new GnomeIconProvider());
return app;
}
PlatformGnome::~PlatformGnome()
{
GlobalShortcutManager::clear();
gnome_vfs_shutdown();
// delete icons;
}
void PlatformGnome::alterItem(CatItem* item) {
if (!item->fullPath.endsWith(".desktop", Qt::CaseInsensitive))
return;
GError * error = NULL;
gdk_threads_enter();
GnomeDesktopItem* ditem = gnome_desktop_item_new_from_file(item->fullPath.toLocal8Bit().data(),
(GnomeDesktopItemLoadFlags) 0,//GNOME_DESKTOP_ITEM_LOAD_ONLY_IF_EXISTS,
&error);
if (error) {
g_error_free(error);
gdk_threads_leave();
return;
}
if (!ditem) {
gdk_threads_leave();
return;
}
// The gnome errors are coming from here, because it falls back to
// finding the file if it can't find the icon and spits out a
// nasty error. Nothing I can do but reimplement get_icon, pretty
// annoying behavior on gnome's part
GtkIconTheme* thm = gtk_icon_theme_get_for_screen(gdk_screen_get_default());
// item->icon = gnome_desktop_item_get_icon (ditem, gtk_icon_theme_get_default());
item->icon = gnome_desktop_item_get_icon(ditem, thm);
//item->fullPath = gnome_desktop_item_get_localestring(ditem, "Exec");
QString name = gnome_desktop_item_get_localestring(ditem, "Name");
if (name.size() >= item->shortName.size() - 8) {
item->shortName = name;
item->lowName = item->shortName.toLower();
}
gnome_desktop_item_unref (ditem);
gdk_threads_leave();
return;
}
bool PlatformGnome::Execute(QString path, QString args)
{
if (!path.endsWith(".desktop", Qt::CaseInsensitive))
return false;
gdk_threads_enter();
GError * error = NULL;
GnomeDesktopItem* ditem = gnome_desktop_item_new_from_file(path.toLocal8Bit().data(),
(GnomeDesktopItemLoadFlags) 0,
&error);
if (error) {
g_error_free(error);
gdk_threads_leave();
return false;
}
if (!ditem) return false;
// Get the args
GList * list = NULL;
args = args.trimmed();
if (args.size() > 0) {
foreach(QString s, args.split(" ")) {
list = g_list_append(list, s.toLocal8Bit().data());
}
}
gnome_desktop_item_launch(ditem, list, (GnomeDesktopItemLaunchFlags) 0, &error);
g_list_free(list);
if (error) {
g_error_free(error);
gnome_desktop_item_unref(ditem);
gdk_threads_leave();
return false;
}
gnome_desktop_item_unref(ditem);
gdk_threads_leave();
return true;
}
Q_EXPORT_PLUGIN2(platform_gnome, PlatformGnome)
|