2024-11-29 09:19:38 +00:00
|
|
|
#include "widget.h"
|
|
|
|
|
|
|
|
#include <QApplication>
|
2024-12-18 01:06:49 +00:00
|
|
|
#include <QLineEdit>
|
2025-03-12 09:16:59 +00:00
|
|
|
#include <QSystemTrayIcon>
|
2024-11-29 09:19:38 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
Widget w;
|
2025-03-12 09:16:59 +00:00
|
|
|
QSystemTrayIcon sysTray(QIcon(":/icon/icon.ico"),&w);
|
2024-11-29 09:19:38 +00:00
|
|
|
w.show();
|
|
|
|
return a.exec();
|
|
|
|
}
|