feat: 添加系统托盘
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
#include "window.h"
|
||||
|
||||
#include <QDebug>
|
||||
#include <QGraphicsView>
|
||||
#include <QHBoxLayout>
|
||||
#include <QMouseEvent>
|
||||
@@ -30,14 +29,56 @@ MainWindow::MainWindow(QWidget *parent) : ElaWindow(parent) { initWindow(); }
|
||||
MainWindow::~MainWindow() {}
|
||||
|
||||
void MainWindow::initWindow() {
|
||||
qDebug() << "Window: Init the window.";
|
||||
// 调整窗口
|
||||
setNavigationBarDisplayMode(ElaNavigationType::NavigationDisplayMode::Minimal);
|
||||
resize(480, 640);
|
||||
setIsFixedSize(true);
|
||||
|
||||
// 调整托盘
|
||||
createActions();
|
||||
createTrayIcon();
|
||||
|
||||
// 设置图标
|
||||
setIcon();
|
||||
trayIcon->show();
|
||||
|
||||
// 设置窗口页面内容
|
||||
// TODO: Set the subtitle of user info card
|
||||
setUserInfoCardSubTitle("Nothing!");
|
||||
|
||||
_tablePage = new CBTable(this);
|
||||
|
||||
addPageNode("剪贴板历史", _tablePage, ElaIconType::TableTree);
|
||||
addPageNode("剪贴板历史", _tablePage, ElaIconType::TableTree);
|
||||
}
|
||||
|
||||
void MainWindow::createActions() {
|
||||
minimizeAction = new QAction(tr("Mi&nimize"), this);
|
||||
connect(minimizeAction, &QAction::triggered, this, &QWidget::hide);
|
||||
|
||||
maximizeAction = new QAction(tr("Ma&ximize"), this);
|
||||
connect(maximizeAction, &QAction::triggered, this, &QWidget::showMaximized);
|
||||
|
||||
restoreAction = new QAction(tr("&Restore"), this);
|
||||
connect(restoreAction, &QAction::triggered, this, &QWidget::showNormal);
|
||||
|
||||
quitAction = new QAction(tr("&Quit"), this);
|
||||
connect(quitAction, &QAction::triggered, qApp, &QCoreApplication::quit);
|
||||
}
|
||||
|
||||
void MainWindow::createTrayIcon() {
|
||||
trayMenu = new QMenu(this);
|
||||
trayMenu->addAction(minimizeAction);
|
||||
trayMenu->addAction(maximizeAction);
|
||||
trayMenu->addAction(restoreAction);
|
||||
trayMenu->addSeparator();
|
||||
trayMenu->addAction(quitAction);
|
||||
|
||||
trayIcon = new QSystemTrayIcon(this);
|
||||
trayIcon->setContextMenu(trayMenu);
|
||||
}
|
||||
|
||||
// TODO: 添加正式图标
|
||||
void MainWindow::setIcon() {
|
||||
QIcon icon(":/assets/icon.png");
|
||||
setWindowIcon(icon);
|
||||
trayIcon->setIcon(icon);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user