2018-12-25 14:54:48 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* gui/statusbar/systraystatus.cpp *
|
|
|
|
* *
|
|
|
|
* Copyright (c) 2012 Retroshare Team <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2014-11-02 15:29:06 -05:00
|
|
|
|
2020-08-15 16:17:52 -04:00
|
|
|
#include "gui/common/FilesDefs.h"
|
2014-11-02 15:29:06 -05:00
|
|
|
#include <QAction>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QPushButton>
|
|
|
|
|
|
|
|
#include "SysTrayStatus.h"
|
|
|
|
|
2016-01-19 22:35:58 -05:00
|
|
|
#define IMAGE_NOONLINE ":/icons/logo_0_connected_128.png"
|
|
|
|
#define IMAGE_ONEONLINE ":/icons/logo_1_connected_128.png"
|
|
|
|
#define IMAGE_TWOONLINE ":/icons/logo_2_connected_128.png"
|
2014-11-02 15:29:06 -05:00
|
|
|
|
|
|
|
SysTrayStatus::SysTrayStatus(QWidget *parent) :
|
|
|
|
QWidget(parent)
|
|
|
|
{
|
|
|
|
QHBoxLayout *hbox = new QHBoxLayout(this);
|
|
|
|
hbox->setMargin(0);
|
|
|
|
hbox->setSpacing(0);
|
|
|
|
|
|
|
|
imageButton = new QPushButton(this);
|
2020-08-15 16:17:52 -04:00
|
|
|
imageButton->setIcon(FilesDefs::getIconFromQtResourcePath(IMAGE_NOONLINE));
|
2014-11-02 15:29:06 -05:00
|
|
|
imageButton->setFlat(true);
|
|
|
|
imageButton->setCheckable(false);
|
|
|
|
imageButton->setFocusPolicy(Qt::ClickFocus);
|
|
|
|
hbox->addWidget(imageButton);
|
|
|
|
|
|
|
|
setLayout(hbox);
|
|
|
|
|
|
|
|
trayMenu = NULL;
|
|
|
|
toggleVisibilityAction = NULL;
|
|
|
|
|
|
|
|
connect(imageButton, SIGNAL(clicked()), this, SLOT(showMenu()));
|
|
|
|
}
|
|
|
|
void SysTrayStatus::setIcon(const QIcon &icon)
|
|
|
|
{
|
|
|
|
imageButton->setIcon(icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SysTrayStatus::showMenu()
|
|
|
|
{
|
|
|
|
if(toggleVisibilityAction) toggleVisibilityAction->setVisible(false);
|
|
|
|
if(trayMenu) trayMenu->exec(QCursor::pos());
|
|
|
|
if(toggleVisibilityAction) toggleVisibilityAction->setVisible(true);
|
|
|
|
}
|