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 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
|
/** \file SystrayIcon.cpp
\brief Define the class of the systray icon
\author alpha_one_x86
\version 0.3
\date 2010
\licence GPL3, see the file COPYING */
#include <QMessageBox>
#include "SystrayIcon.h"
/// \brief Initiate and show the icon in the systray
SystrayIcon::SystrayIcon()
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
//setup the systray icon
haveListenerInfo = false;
havePluginLoaderInfo = false;
systrayMenu = new QMenu();
actionMenuAbout = new QAction(this);
actionMenuQuit = new QAction(this);
actionOptions = new QAction(this);
//actionTransfer = new QAction(this);
copyMenu = new QMenu();
//to prevent init bug
stateListener=NotListening;
statePluginLoader=Uncaught;
setContextMenu(systrayMenu);
setToolTip("Ultracopier");
#ifdef Q_OS_WIN32
setIcon(QIcon(":/systray_Uncaught_Windows.png"));
#else
setIcon(QIcon(":/systray_Uncaught_Unix.png"));
#endif
show();
//connect the action
connect(&timerCheckSetTooltip, SIGNAL(timeout()), this, SLOT(checkSetTooltip()));
connect(actionMenuQuit, SIGNAL(triggered()), this, SIGNAL(quit()));
connect(actionMenuAbout, SIGNAL(triggered()), this, SIGNAL(showHelp()));
connect(actionOptions, SIGNAL(triggered()), this, SIGNAL(showOptions()));
connect(this, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(CatchAction(QSystemTrayIcon::ActivationReason)));
connect(plugins, SIGNAL(pluginListingIsfinish()), this, SLOT(reloadEngineList()));
//display the icon
updateCurrentTheme();
//if theme/language change, update graphic part
connect(themes, SIGNAL(theThemeIsReloaded()), this, SLOT(updateCurrentTheme()));
connect(languages, SIGNAL(newLanguageLoaded(QString)), this, SLOT(retranslateTheUI()));
systrayMenu->addMenu(copyMenu);
systrayMenu->addAction(actionOptions);
systrayMenu->addAction(actionMenuAbout);
systrayMenu->addAction(actionMenuQuit);
systrayMenu->insertSeparator(actionOptions);
retranslateTheUI();
updateSystrayIcon();
timerCheckSetTooltip.setSingleShot(true);
timerCheckSetTooltip.start(1000);
//impossible with Qt on systray
/// \note important for drag and drop, \see dropEvent()
systrayMenu->setAcceptDrops(true);
}
/// \brief Hide and destroy the icon in the systray
SystrayIcon::~SystrayIcon()
{
delete actionMenuQuit;
delete actionMenuAbout;
delete actionOptions;
delete systrayMenu;
delete copyMenu;
}
void SystrayIcon::checkSetTooltip()
{
if(isSystemTrayAvailable())
{
setToolTip("Ultracopier");
updateSystrayIcon();
}
else
timerCheckSetTooltip.start();
}
void SystrayIcon::listenerReady(const ListeningState &state,const bool &havePlugin,const bool &someAreInWaitOfReply)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,QString("state: %1, havePlugin: %2, someAreInWaitOfReply: %3").arg(state).arg(havePlugin).arg(someAreInWaitOfReply));
Q_UNUSED(someAreInWaitOfReply);
stateListener=state;
haveListenerInfo=true;
haveListener=havePlugin;
updateSystrayIcon();
if(!havePlugin)
showTryCatchMessageWithNoListener();
}
void SystrayIcon::pluginLoaderReady(const CatchState &state,const bool &havePlugin,const bool &someAreInWaitOfReply)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,QString("state: %1, havePlugin: %2, someAreInWaitOfReply: %3").arg(state).arg(havePlugin).arg(someAreInWaitOfReply));
Q_UNUSED(someAreInWaitOfReply);
statePluginLoader=state;
havePluginLoaderInfo=true;
havePluginLoader=havePlugin;
updateSystrayIcon();
}
void SystrayIcon::showTryCatchMessageWithNoListener()
{
showSystrayMessage(tr("No copy listener found. Do the copy manually by right click one the system tray icon."));
}
/// \brief To show a message linked to the systray icon
void SystrayIcon::showSystrayMessage(const QString& text)
{
showMessage(tr("Information"),text,QSystemTrayIcon::Information,0);
}
/// \brief To update the systray icon
void SystrayIcon::updateSystrayIcon()
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,QString("start, haveListenerInfo %1, havePluginLoaderInfo: %2").arg(haveListenerInfo).arg(havePluginLoaderInfo));
QString toolTip="???";
QString icon;
if(!haveListenerInfo || !havePluginLoaderInfo)
{
toolTip=tr("Searching information...");
icon="Uncaught";
}
else
{
ListeningState stateListener=this->stateListener;
CatchState statePluginLoader=this->statePluginLoader;
if(!haveListener)
stateListener=NotListening;
if((stateListener==NotListening && statePluginLoader==Uncaught) || (stateListener==SemiListening && statePluginLoader==Semiuncaught) || (stateListener==FullListening && statePluginLoader==Caught))
{
if(stateListener==NotListening)
{
toolTip=tr("Not catching the explorer copy/move");
icon="Uncaught";
}
else if(stateListener==SemiListening)
{
toolTip=tr("Semi catching the explorer copy/move");
icon="Semiuncaught";
}
else
{
toolTip=tr("Catching the explorer copy/move");
icon="Caught";
}
}
else
{
icon="Semiuncaught";
QString first_part;
QString second_part;
if(stateListener==NotListening)
first_part="No listening";
else if(stateListener==SemiListening)
first_part="Semi listening";
else if(stateListener==FullListening)
first_part="Full listening";
else
first_part="Unknow listening";
if(statePluginLoader==Uncaught)
second_part="No catching";
else if(statePluginLoader==Semiuncaught)
second_part="Semi catching";
else if(statePluginLoader==Caught)
second_part="Full catching";
else
second_part="Unknow catching";
toolTip=first_part+"/"+second_part;
}
}
QIcon theNewSystrayIcon;
#ifdef Q_OS_WIN32
theNewSystrayIcon=themes->loadIcon("SystemTrayIcon/systray_"+icon+"_Windows.png");
#else
theNewSystrayIcon=themes->loadIcon("SystemTrayIcon/systray_"+icon+"_Unix.png");
#endif
if(theNewSystrayIcon.isNull())
{
#ifdef Q_OS_WIN32
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"use the default systray icon: :/systray_"+icon+"_Windows.png");
theNewSystrayIcon=QIcon(":/systray_"+icon+"_Windows.png");
#else
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"use the default systray icon: :/systray_"+icon+"_Unix.png");
theNewSystrayIcon=QIcon(":/systray_"+icon+"_Unix.png");
#endif
}
else
{
#ifdef Q_OS_WIN32
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"icon: systray_"+icon+"_Windows.png");
#else
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"icon: systray_"+icon+"_Unix.png");
#endif
}
setIcon(theNewSystrayIcon);
setToolTip("Ultracopier - "+toolTip);
}
/* drag event processing (impossible with Qt on systray)
need setAcceptDrops(true); into the constructor
need implementation to accept the drop:
void dragEnterEvent(QDragEnterEvent* event);
void dragMoveEvent(QDragMoveEvent* event);
void dragLeaveEvent(QDragLeaveEvent* event);
*/
void SystrayIcon::dropEvent(QDropEvent *event)
{
const QMimeData* mimeData = event->mimeData();
if(mimeData->hasUrls())
{
//impossible with Qt on systray
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"mimeData->urls().size()"+QString::number(mimeData->urls().size()));
emit urlDropped(mimeData->urls());
event->acceptProposedAction();
}
}
void SystrayIcon::dragEnterEvent(QDragEnterEvent* event)
{
// if some actions should not be usable, like move, this code must be adopted
event->acceptProposedAction();
}
void SystrayIcon::dragMoveEvent(QDragMoveEvent* event)
{
// if some actions should not be usable, like move, this code must be adopted
event->acceptProposedAction();
}
void SystrayIcon::dragLeaveEvent(QDragLeaveEvent* event)
{
event->accept();
}
/// \brief To update the current themes
void SystrayIcon::updateCurrentTheme()
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"icon: start");
//load the systray menu item
QIcon tempIcon;
tempIcon=themes->loadIcon("SystemTrayIcon/exit.png");
if(!tempIcon.isNull())
IconQuit=QIcon(tempIcon);
else
IconQuit=QIcon("");
actionMenuQuit->setIcon(IconQuit);
tempIcon=themes->loadIcon("SystemTrayIcon/informations.png");
if(!tempIcon.isNull())
IconInfo=QIcon(tempIcon);
else
IconInfo=QIcon("");
actionMenuAbout->setIcon(IconInfo);
tempIcon=themes->loadIcon("SystemTrayIcon/options.png");
if(!tempIcon.isNull())
IconOptions=QIcon(tempIcon);
else
IconOptions=QIcon("");
actionOptions->setIcon(IconOptions);
tempIcon=themes->loadIcon("SystemTrayIcon/add.png");
if(!tempIcon.isNull())
IconAdd=QIcon(tempIcon);
else
IconAdd=QIcon("");
copyMenu->setIcon(IconAdd);
//update the systray icon
updateSystrayIcon();
reloadEngineList();
}
/* \brief For catch an action on the systray icon
\param reason Why it activated */
void SystrayIcon::CatchAction(QSystemTrayIcon::ActivationReason reason)
{
if(reason==QSystemTrayIcon::DoubleClick || reason==QSystemTrayIcon::Trigger)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"Double click on system tray icon");
if(stateListener!=NotListening)
emit tryUncatchCopy();
else
{
if(!haveListener)
{
showTryCatchMessageWithNoListener();
return;
}
emit tryCatchCopy();
}
}
else if(reason==QSystemTrayIcon::Context)//do nothing on right click to show as auto the menu
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,QString("Action on the systray icon is unknown: %1").arg(reason));
else
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Warning,QString("Action on the systray icon is unknown: %1").arg(reason));
QMessageBox::warning(NULL,tr("Warning"),tr("Action on the systray icon is unknown!"));
}
}
/// \brief To catch copy menu action
void SystrayIcon::CatchCopyQuery()
{
QAction * currentAction=qobject_cast<QAction *>(QObject::sender());
if(currentAction==NULL)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"action not found");
return;
}
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start: "+currentAction->data().toString());
emit addWindowCopyMove(Copy,currentAction->data().toString());
}
/// \brief To catch move menu action
void SystrayIcon::CatchMoveQuery()
{
QAction * currentAction=qobject_cast<QAction *>(QObject::sender());
if(currentAction==NULL)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"action not found");
return;
}
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start: "+currentAction->data().toString());
emit addWindowCopyMove(Move,currentAction->data().toString());
}
/// \brief To catch transfer menu action
void SystrayIcon::CatchTransferQuery()
{
QAction * currentAction=qobject_cast<QAction *>(QObject::sender());
if(currentAction==NULL)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"action not found");
return;
}
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start: "+currentAction->data().toString());
emit addWindowTransfer(currentAction->data().toString());
}
/// \brief to retranslate the ui
void SystrayIcon::retranslateTheUI()
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"retranslateTheUI");
#ifdef ULTRACOPIER_DEBUG
actionMenuAbout ->setText(tr("&About/Debug report"));
#else // ULTRACOPIER_DEBUG
actionMenuAbout ->setText(tr("&About"));
#endif // ULTRACOPIER_DEBUG
actionMenuQuit ->setText(tr("&Quit"));
actionOptions ->setText(tr("&Options"));
copyMenu ->setTitle(tr("A&dd copy/moving"));
reloadEngineList();
updateSystrayIcon();
}
void SystrayIcon::addCopyEngine(const QString &name,const bool &canDoOnlyCopy)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
EngineEntry entry;
entry.name=name;
entry.canDoOnlyCopy=canDoOnlyCopy;
engineEntryList << entry;
if(plugins->allPluginHaveBeenLoaded())
reloadEngineList();
}
void SystrayIcon::removeCopyEngine(const QString &name)
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
int index=0;
while(index<engineEntryList.size())
{
if(engineEntryList.at(index).name==name)
{
engineEntryList.removeAt(index);
break;
}
index++;
}
void reloadEngineList();
}
void SystrayIcon::reloadEngineList()
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
copyMenu->clear();
if(engineEntryList.size()==0)
{
copyMenu->setEnabled(false);
return;
}
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"engineEntryList.size(): "+QString::number(engineEntryList.size()));
copyMenu->setEnabled(true);
if(engineEntryList.size()==1)
{
QAction *copy=new QAction(IconAdd,tr("Add ©"),copyMenu);
connect(copy,SIGNAL(triggered()),this,SLOT(CatchCopyQuery()));
copy->setData(engineEntryList.first().name);
copyMenu->addAction(copy);
if(!engineEntryList.first().canDoOnlyCopy)
{
QAction *transfer=new QAction(IconAdd,tr("Add &transfer"),copyMenu);
connect(transfer,SIGNAL(triggered()),this,SLOT(CatchTransferQuery()));
transfer->setData(engineEntryList.first().name);
copyMenu->addAction(transfer);
QAction *move=new QAction(IconAdd,tr("Add &move"),copyMenu);
connect(move,SIGNAL(triggered()),this,SLOT(CatchMoveQuery()));
move->setData(engineEntryList.first().name);
copyMenu->addAction(move);
}
}
else
{
int index=0;
while(index<engineEntryList.size())
{
QMenu * menu=new QMenu(engineEntryList.at(index).name);
QAction *copy=new QAction(IconAdd,tr("Add ©"),menu);
connect(copy,SIGNAL(triggered()),this,SLOT(CatchCopyQuery()));
copy->setData(engineEntryList.at(index).name);
menu->addAction(copy);
if(!engineEntryList.at(index).canDoOnlyCopy)
{
QAction *transfer=new QAction(IconAdd,tr("Add &transfer"),menu);
connect(transfer,SIGNAL(triggered()),this,SLOT(CatchTransferQuery()));
transfer->setData(engineEntryList.at(index).name);
menu->addAction(transfer);
QAction *move=new QAction(IconAdd,tr("Add &move"),menu);
connect(move,SIGNAL(triggered()),this,SLOT(CatchMoveQuery()));
move->setData(engineEntryList.at(index).name);
menu->addAction(move);
}
copyMenu->addMenu(menu);
index++;
}
}
}
|