aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/desktop-plugins/LDPlugin.cpp
blob: efae7b249674eee394ad6dfbca1d121b1b537e3a (plain)
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
//===========================================
//  Lumina-DE source code
//  Copyright (c) 2014-2015, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
#include "LDPlugin.h"

#include "../LSession.h"
#include <LuminaXDG.h>

LDPlugin::LDPlugin(QWidget *parent, QString id) : QFrame(parent){
  PLUGID=id;
  prefix = id.replace("/","_")+"/";
  //qDebug() << "ID:" << PLUGID << prefix;
  settings = LSession::handle()->DesktopPluginSettings();
  //Setup the plugin system control menu
  menu = new QMenu(this);
  contextM = 0;
  setupMenu();
  //Setup the internal timer for when to start/stop drag events
  dragTimer = new QTimer(this);
    dragTimer->setSingleShot(true);
    dragTimer->setInterval(500); //1/2 second to show the plugin menu
    connect(dragTimer, SIGNAL(timeout()), this, SLOT(showPluginMenu()));
  //Use plugin-specific values for stylesheet control (applauncher, desktopview, etc...)
  this->setObjectName(id.section("---",0,0).section("::",0,0));
  this->setContextMenuPolicy(Qt::CustomContextMenu);
  this->setMouseTracking(false); //only catch mouse movement events if the mouse is clicked/held on the plugin
  connect(QApplication::instance(), SIGNAL(LocaleChanged()), this, SLOT(LocaleChange()) );
  connect(QApplication::instance(), SIGNAL(IconThemeChanged()), this, SLOT(ThemeChange()) );
  connect(this, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showPluginMenu()) );
}

void LDPlugin::setupMenu(){
  menu->clear();
  menu->setTitle(tr("Modify Item"));
  menu->setIcon(LXDG::findIcon("preferences-desktop-icons","") );
  //SPECIAL CONTEXT MENU OPTIONS FOR PARTICULAR PLUGIN TYPES
  /*if(PLUGID.startsWith("applauncher::")){
    menu->addAction( LXDG::findIcon("quickopen",""), tr("Launch Item"), this, SIGNAL(PluginActivated()) );
    menu->addSeparator();
  }*/
  //General Options
  menu->addAction( LXDG::findIcon("transform-move",""), tr("Start Moving Item"), this, SLOT(slotStartMove()) );
  menu->addAction( LXDG::findIcon("transform-scale",""), tr("Start Resizing Item"), this, SLOT(slotStartResize()) );
  menu->addSeparator();
  menu->addAction( LXDG::findIcon("zoom-in",""), tr("Increase Item Sizes"), this, SIGNAL(IncreaseIconSize()) );
  menu->addAction( LXDG::findIcon("zoom-out",""), tr("Decrease Item Sizes"), this, SIGNAL(DecreaseIconSize()) );
  menu->addSeparator();
  menu->addAction( LXDG::findIcon("edit-delete",""), tr("Remove Item"), this, SLOT(slotRemovePlugin()) );
}

void LDPlugin::showPluginMenu(){
  emit CloseDesktopMenu();
  //Double check which menu should be shown
  if(this->contextMenu()!=0){
    //Got a special context menu for this plugin - need to layer them together
    if(!this->contextMenu()->actions().contains(menu->menuAction())){
      this->contextMenu()->addSeparator();
      this->contextMenu()->addMenu(menu);
    }
    this->contextMenu()->popup( QCursor::pos() );
  }else{
    menu->popup( QCursor::pos() );
  }
}
bgstack15