mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-18 04:54:38 +03: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
|