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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
/*
Verby: Plugin for Launchy
Copyright (C) 2009 Simon Capewell
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 "precompiled.h"
#include "Verby.h"
#include "gui.h"
void VerbyPlugin::init()
{
}
void VerbyPlugin::setPath(QString * path)
{
libPath = *path;
}
void VerbyPlugin::getID(uint* id)
{
*id = HASH_VERBY;
}
void VerbyPlugin::getName(QString* str)
{
*str = "Verby";
}
QString VerbyPlugin::getIcon()
{
return getIconPath() + "verby.png";
}
void VerbyPlugin::getLabels(QList<InputData>* inputData)
{
if (inputData->count() == 1)
{
QString text = inputData->last().getText();
// Is it a file?
if (text.contains("\\") || text.contains("/"))
return;
QDir qd;
QFile qf;
QString path = inputData->last().getTopResult().fullPath;
QFileInfo info(path);
if (info.isSymLink())
{
inputData->last().setLabel(HASH_LINK);
}
else if (info.isDir())
{
inputData->last().setLabel(HASH_DIR);
}
else if (info.isFile())
{
inputData->last().setLabel(HASH_FILE);
}
}
}
QString VerbyPlugin::getIconPath() const
{
return "/usr/share/launchy/plugins/icons/";
}
bool VerbyPlugin::isMatch(QString text1, QString text2)
{
int text2Length = text2.count();
int curChar = 0;
foreach(QChar c, text1)
{
if (c.toLower() == text2[curChar].toLower())
{
++curChar;
if (curChar >= text2Length)
{
return true;
}
}
}
return false;
}
void VerbyPlugin::addCatItem(QString text, QList<CatItem>* results, QString fullName, QString shortName, QString iconName)
{
if (text.length() == 0 || isMatch(shortName, text))
{
CatItem item = CatItem(fullName, shortName, HASH_VERBY, getIconPath() + iconName);
item.usage = (*settings)->value("verby/" + shortName.replace(" ", "") , 0).toInt();
results->push_back(item);
}
}
void VerbyPlugin::updateUsage(CatItem& item)
{
(*settings)->setValue("verby/" + item.shortName.replace(" ", ""), item.usage + 1);
}
void VerbyPlugin::getResults(QList<InputData>* inputData, QList<CatItem>* results)
{
if (inputData->count() == 2)
{
QString text = inputData->at(1).getText();
if (inputData->first().hasLabel(HASH_DIR))
{
addCatItem(text, results, "Properties", "Directory properties", "properties.png");
}
else if (inputData->first().hasLabel(HASH_FILE))
{
addCatItem(text, results, "Open containing folder", "Open containing folder", "opencontainer.png");
addCatItem(text, results, "Properties", "File properties", "properties.png");
}
else if (inputData->first().hasLabel(HASH_LINK))
{
addCatItem(text, results, "Run as", "Run as a different user", "run.png");
addCatItem(text, results, "Open containing folder", "Open containing folder", "opencontainer.png");
addCatItem(text, results, "Open shortcut folder", "Open shortcut folder", "opencontainer.png");
addCatItem(text, results, "Copy path", "Copy path to clipboard", "copy.png");
addCatItem(text, results, "Properties", "File properties", "properties.png");
}
else
{
return;
}
// Mark the item as a Verby item so that Verby has a chance to process it before Launchy
inputData->first().setID(HASH_VERBY);
inputData->first().getTopResult().id = HASH_VERBY;
// ensure there's always an item at the top of the list for launching with parameters.
results->push_front(CatItem(
"Run",
inputData->last().getText(), INT_MAX,
getIconPath() + "run.png"));
}
}
int VerbyPlugin::launchItem(QList<InputData>* inputData, CatItem* item)
{
item = item; // Compiler Warning
if (inputData->count() != 2)
{
// Tell Launchy to handle the command
return MSG_CONTROL_LAUNCHITEM;
}
QString noun = inputData->first().getTopResult().fullPath;
CatItem& verbItem = inputData->last().getTopResult();
QString verb = verbItem.shortName;
qDebug() << "Verby launchItem" << verb;
if (verb == "Run")
{
runProgram(noun, "");
}
else if (verb == "Open containing folder")
{
QFileInfo info(noun);
if (info.isSymLink())
{
info.setFile(info.symLinkTarget());
}
#ifdef Q_WS_WIN
runProgram("explorer.exe", "\"" + QDir::toNativeSeparators(info.absolutePath()) + "\"");
#endif
}
else if (verb == "Open shortcut folder")
{
QFileInfo info(noun);
#ifdef Q_WS_WIN
runProgram("explorer.exe", "\"" + QDir::toNativeSeparators(info.absolutePath()) + "\"");
#endif
}
else if (verb == "Run as")
{
#ifdef Q_WS_WIN
SHELLEXECUTEINFO shellExecInfo;
shellExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
shellExecInfo.fMask = SEE_MASK_FLAG_NO_UI;
shellExecInfo.hwnd = NULL;
shellExecInfo.lpVerb = L"runas";
shellExecInfo.lpFile = (LPCTSTR)noun.utf16();
shellExecInfo.lpParameters = NULL;
QDir dir(noun);
QFileInfo info(noun);
if (!info.isDir() && info.isFile())
dir.cdUp();
QString filePath = QDir::toNativeSeparators(dir.absolutePath());
shellExecInfo.lpDirectory = (LPCTSTR)filePath.utf16();
shellExecInfo.nShow = SW_NORMAL;
shellExecInfo.hInstApp = NULL;
ShellExecuteEx(&shellExecInfo);
#endif
}
else if (verb == "File properties")
{
#ifdef Q_WS_WIN
SHELLEXECUTEINFO shellExecInfo;
shellExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
shellExecInfo.fMask = SEE_MASK_FLAG_NO_UI | SEE_MASK_INVOKEIDLIST;
shellExecInfo.hwnd = NULL;
shellExecInfo.lpVerb = L"properties";
QString filePath = QDir::toNativeSeparators(noun);
shellExecInfo.lpFile = (LPCTSTR)filePath.utf16();
shellExecInfo.lpIDList = NULL;
shellExecInfo.lpParameters = NULL;
shellExecInfo.lpDirectory = NULL;
shellExecInfo.nShow = SW_NORMAL;
shellExecInfo.hInstApp = NULL;
ShellExecuteEx(&shellExecInfo);
#endif
}
else if (verb == "Copy path to clipboard")
{
QFileInfo info(noun);
if (info.isSymLink())
{
info.setFile(info.symLinkTarget());
}
QClipboard *clipboard = QApplication::clipboard();
clipboard->setText(QDir::toNativeSeparators(info.canonicalFilePath()));
}
else
{
// Tell Launchy to handle the command
return MSG_CONTROL_LAUNCHITEM;
}
updateUsage(verbItem);
return true;
}
void VerbyPlugin::doDialog(QWidget* parent, QWidget** newDlg)
{
if (gui == NULL)
{
gui = new Gui(parent);
*newDlg = gui;
}
}
void VerbyPlugin::endDialog(bool accept)
{
if (accept)
{
gui->writeOptions();
init();
}
if (gui != NULL)
delete gui;
gui = NULL;
}
int VerbyPlugin::msg(int msgId, void* wParam, void* lParam)
{
int handled = 0;
switch (msgId)
{
case MSG_INIT:
init();
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_LABELS:
getLabels((QList<InputData>*) wParam);
handled = true;
break;
case MSG_GET_RESULTS:
getResults((QList<InputData>*) wParam, (QList<CatItem>*) lParam);
handled = true;
break;
case MSG_LAUNCH_ITEM:
handled = launchItem((QList<InputData>*) wParam, (CatItem*) lParam);
break;
case MSG_HAS_DIALOG:
handled = true;
break;
case MSG_DO_DIALOG:
doDialog((QWidget*) wParam, (QWidget**) lParam);
break;
case MSG_END_DIALOG:
endDialog(wParam != 0);
break;
case MSG_PATH:
setPath((QString *) wParam);
break;
default:
break;
}
return handled;
}
Q_EXPORT_PLUGIN2(Verby, VerbyPlugin)
|