3 Star 19 Fork 3

juju/dde-sys-monitor-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
aboutdialog.cpp 625 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include "aboutdialog.h"
#include "ui_aboutdialog.h"
aboutDialog::aboutDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::aboutDialog)
{
ui->setupUi(this);
}
aboutDialog::~aboutDialog()
{
delete ui;
}
void aboutDialog::on_blogPushButton_clicked()
{
QDesktopServices::openUrl(QUrl("https://blog.mxslly.com"));
}
void aboutDialog::on_giteePushButton_clicked()
{
QDesktopServices::openUrl(QUrl("https://gitee.com/q77190858/dde-sys-monitor-plugin"));
}
void aboutDialog::on_githubPushButton_clicked()
{
QDesktopServices::openUrl(QUrl("https://github.com/q77190858/dde-sys-monitor-plugin"));
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/q77190858/dde-sys-monitor-plugin.git
git@gitee.com:q77190858/dde-sys-monitor-plugin.git
q77190858
dde-sys-monitor-plugin
dde-sys-monitor-plugin
master

搜索帮助