mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-19 13:50:12 +08:00
17 lines
221 B
C++
17 lines
221 B
C++
#pragma once
|
|
|
|
#include <QIcon>
|
|
|
|
namespace TrayIcon {
|
|
|
|
enum TrayIconStatus {
|
|
NONE,
|
|
RUNNING,
|
|
SYSTEM_PROXY,
|
|
VPN,
|
|
};
|
|
|
|
QIcon GetIcon(TrayIconStatus status);
|
|
|
|
} // namespace TrayIcon
|