资源简介
Qt实现托盘全部常用功能示例源代码,可帮助新手快速掌握Qt托盘的使用,在Windows、Mac和Linux上可编译通过。
代码片段和文件信息
/****************************************************************************
**
** Copyright (C) 2006-2007 Trolltech ASA. All rights reserved.
**
** This file is part of the example classes of the Qt Toolkit.
**
** Licensees holding a valid Qt License Agreement may use this file in
** accordance with the rights responsibilities and obligations
** contained therein. Please consult your licensing agreement or
** contact sales@trolltech.com if any conditions of this licensing
** agreement are not clear to you.
**
** Further information about Qt licensing is available at:
** http://www.trolltech.com/products/qt/licensing.html or by
** contacting info@trolltech.com.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND INCLUDING THE
** WARRANTY OF DESIGN MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include
#include
#include “window.h“
int main(int argc char *argv[])
{
QApplication app(argc argv);
if (!QSystemTrayIcon::isSystemTrayAvailable()) {
QMessageBox::critical(0 Qobject::tr(“Systray“)
Qobject::tr(“I couldn‘t detect any system tray “
“on this system.“));
return 1;
}
Window window;
window.show();
return app.exec();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-11-29 19:51 systray\
目录 0 2014-11-29 19:21 systray\images\
文件 3439 2007-12-05 00:38 systray\images\bad.svg
文件 3928 2007-12-05 00:38 systray\images\heart.svg
文件 3194 2007-12-05 00:38 systray\images\trash.svg
文件 1428 2014-11-29 19:33 systray\main.cpp
文件 366 2014-11-29 19:32 systray\systray.pro
文件 13622 2014-11-29 19:26 systray\systray.pro.user
文件 181 2007-12-05 00:38 systray\systray.qrc
文件 8221 2014-11-29 19:51 systray\window.cpp
文件 2297 2007-12-05 00:38 systray\window.h
- 上一篇:Qt实现仿qq右下角浮动弹窗
- 下一篇:jdk1.7_for_mac.txt
相关资源
- QT5应用视频教程
- QT将应用程序缩小到右下角任务栏的系
- Qt4迁移至Qt5完全指南
- Qt中文语言包丨PyQt5汉化包附汉化说明
- Win32 API实现系统托盘
- qt5.1实现的异形按钮(适应图片的形状
- Qt5串口调试助手源码(基本功能)
- VS2010 + Qt5 + Zint库实现各种条码的生成
- opencv4.0+相机标定+Qt5.9
- qca-qt5lib
- Qt实现Winsock网络编程—Tcp服务端和
- Qt5.9.1可执行程序做成可执行文件的步
- qwebsocket使用wss连接工程源码,qt5.7d
- USBCAB.dll、ControlCAN.dll64位库+QT5例程+上
- 易语言新用API置托盘图标成功1源码
- Qt5自动配置编译环境
- 电力iec104 主站测试工具源码 vs2010+q
- QT5.7.0 交叉编译与移植步骤
- PyQt examples
- Qt5实现无边框可移动可拉伸靠边自动
- 基于Qt5的虚拟键盘
- QT5 HTTP文件到指定目录
- QWT-6.1.4 编译好的 Qt5.12.3 MSVC2015_64 版本
- qt5 arm linuxfb旋转显示非eglfs显示的补丁
- designer_zh_CN.7z
- 创建及调用基于QT5 QML的 DLL举例QML中使
- Qt5 qml 各种功能事例,详细功能见资源
- Qt5_SerialPort.zip
-
Qt5 QMediaPla
yer音乐播放器 - Qt5(VS2015+Qt5.10.0)下实现一个Dll文件
评论
共有 条评论