mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 20:44:38 +03:00
19 lines
272 B
C++
19 lines
272 B
C++
#pragma once
|
|
|
|
#include <QPixmap>
|
|
|
|
namespace Icon {
|
|
|
|
enum TrayIconStatus {
|
|
NONE,
|
|
RUNNING,
|
|
SYSTEM_PROXY,
|
|
VPN,
|
|
};
|
|
|
|
QPixmap GetTrayIcon(TrayIconStatus status);
|
|
|
|
QPixmap GetMaterialIcon(const QString &name);
|
|
|
|
} // namespace Icon
|