mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-19 05:30:06 +08:00
18 lines
259 B
C++
18 lines
259 B
C++
#pragma once
|
|
|
|
#include <QPixmap>
|
|
|
|
namespace Icon {
|
|
|
|
enum TrayIconStatus {
|
|
NONE,
|
|
RUNNING,
|
|
SYSTEM_PROXY,
|
|
VPN,
|
|
DNS,
|
|
SYSTEM_PROXY_DNS,
|
|
};
|
|
|
|
QPixmap GetTrayIcon(TrayIconStatus status);
|
|
} // namespace Icon
|