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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
/*
Launchy: Application Launcher
Copyright (C) 2008 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 <QtGui>
#include <QUrl>
#include <QFile>
#include <QRegExp>
#include <QTextCodec>
#ifdef Q_WS_WIN
#include <windows.h>
#include <shlobj.h>
#include <tchar.h>
#endif
#include "loader.h"
#include "gui.h"
loaderPlugin* gloaderInstance = NULL;
void loaderPlugin::init()
{
if (gloaderInstance == NULL)
gloaderInstance = this;
// QSettings* set = *settings;
}
void loaderPlugin::getID(uint* id)
{
*id = HASH_loader;
}
void loaderPlugin::getName(QString* str)
{
*str = "Plugin Loader";
}
void loaderPlugin::getLabels(QList<InputData>* id)
{
if (id->count() > 1)
return;
}
void loaderPlugin::getResults(QList<InputData>* id, QList<CatItem>* results)
{
}
QString loaderPlugin::getIcon()
{
return "/usr/share/launchy/plugins/icons/loader.png";
}
void loaderPlugin::getCatalog(QList<CatItem>* items)
{
}
void loaderPlugin::launchItem(QList<InputData>* id, CatItem* item)
{
}
void loaderPlugin::doDialog(QWidget* parent, QWidget** newDlg) {
if (gui != NULL) return;
gui = new Gui(parent);
*newDlg = gui;
}
void loaderPlugin::endDialog(bool accept) {
if (accept) {
}
if (gui != NULL)
delete gui;
gui = NULL;
}
void loaderPlugin::setPath(QString * path) {
libPath = *path;
}
int loaderPlugin::msg(int msgId, void* wParam, void* lParam)
{
bool handled = false;
switch (msgId)
{
case MSG_INIT:
init();
handled = true;
break;
case MSG_GET_LABELS:
getLabels((QList<InputData>*) wParam);
handled = true;
break;
case MSG_GET_ID:
getID((uint*) wParam);
handled = true;
break;
case MSG_GET_NAME:
getName((QString*) wParam);
handled = true;
break;
case MSG_GET_RESULTS:
getResults((QList<InputData>*) wParam, (QList<CatItem>*) lParam);
handled = true;
break;
case MSG_GET_CATALOG:
getCatalog((QList<CatItem>*) wParam);
handled = true;
break;
case MSG_LAUNCH_ITEM:
launchItem((QList<InputData>*) wParam, (CatItem*) lParam);
handled = true;
break;
case MSG_HAS_DIALOG:
handled = true;
break;
case MSG_DO_DIALOG:
doDialog((QWidget*) wParam, (QWidget**) lParam);
break;
case MSG_END_DIALOG:
endDialog((bool) wParam);
break;
case MSG_PATH:
setPath((QString *) wParam);
default:
break;
}
return handled;
}
Q_EXPORT_PLUGIN2(loader, loaderPlugin)
|