mirror of
https://github.com/fergalmoran/flameshot.git
synced 2025-12-22 17:59:25 +00:00
93 lines
3.0 KiB
C++
93 lines
3.0 KiB
C++
// Copyright 2017 Alejandro Sirgo Rica
|
|
//
|
|
// This file is part of Flameshot.
|
|
//
|
|
// Flameshot 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 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Flameshot 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 Flameshot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "controller.h"
|
|
#include "capture/capturewidget.h"
|
|
#include "infowindow.h"
|
|
#include "configwindow.h"
|
|
#include <QAction>
|
|
#include <QApplication>
|
|
#include <QMenu>
|
|
#include <QSystemTrayIcon>
|
|
|
|
// Controller is the core component of Flameshot, creates the trayIcon and
|
|
// launches the capture widget
|
|
|
|
Controller::Controller(QObject *parent) : QObject(parent) {
|
|
createActions();
|
|
createTrayIcon();
|
|
m_trayIcon->show();
|
|
|
|
// required for the button serialization
|
|
qRegisterMetaTypeStreamOperators<QList<int> >("QList<int>");
|
|
|
|
m_nativeEventFilter = new NativeEventFilter(this);
|
|
qApp->installNativeEventFilter(m_nativeEventFilter);
|
|
connect(m_nativeEventFilter, &NativeEventFilter::activated, this, &Controller::slotPrintHotkey);
|
|
|
|
m_captureWindow = nullptr;
|
|
qApp->setQuitOnLastWindowClosed(false);
|
|
}
|
|
|
|
// creates the items of the trayIcon
|
|
void Controller::createActions() {
|
|
m_configAction = new QAction(tr("&Configuration"), this);
|
|
connect(m_configAction, &QAction::triggered, this, &Controller::openConfigWindow);
|
|
|
|
m_infoAction = new QAction(tr("&Information"), this);
|
|
connect(m_infoAction, &QAction::triggered, this, &Controller::openInfoWindow);
|
|
|
|
m_quitAction = new QAction(tr("&Quit"), this);
|
|
connect(m_quitAction, &QAction::triggered, qApp, &QCoreApplication::quit);
|
|
}
|
|
|
|
// creates the trayIcon
|
|
void Controller::createTrayIcon() {
|
|
// requires a widget as parent but it should be used the whole app live period
|
|
m_trayIconMenu = new QMenu();
|
|
m_trayIconMenu->addAction(m_configAction);
|
|
m_trayIconMenu->addAction(m_infoAction);
|
|
m_trayIconMenu->addSeparator();
|
|
m_trayIconMenu->addAction(m_quitAction);
|
|
|
|
m_trayIcon = new QSystemTrayIcon(this);
|
|
m_trayIcon->setToolTip("Flameshot");
|
|
m_trayIcon->setContextMenu(m_trayIconMenu);
|
|
m_trayIcon->setIcon(QIcon(":img/flameshot.svg"));
|
|
}
|
|
|
|
// creation of a new capture
|
|
void Controller::slotPrintHotkey() {
|
|
if (!m_captureWindow) {
|
|
m_captureWindow = new CaptureWidget();
|
|
}
|
|
}
|
|
|
|
// creation of the configuration window
|
|
void Controller::openConfigWindow() {
|
|
if (!m_configWindow) {
|
|
m_configWindow = new ConfigWindow();
|
|
}
|
|
}
|
|
|
|
// creation of the window of information
|
|
void Controller::openInfoWindow() {
|
|
if (!m_infoWindow) {
|
|
m_infoWindow = new InfoWindow();
|
|
}
|
|
}
|