mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-25 14:00:00 +00:00
0c88da4d81
fixes #4824
28 lines
985 B
C
28 lines
985 B
C
#ifndef APPSECTION_CONFIG_H
|
|
#define APPSECTION_CONFIG_H
|
|
|
|
// To Do: Currently this gets added to eahc file that its imported into need to create as enums in calss when some works on this potentially
|
|
#include <QString>
|
|
|
|
const QString CHAT_SECTION_ID = "chat";
|
|
const QString CHAT_SECTION_NAME = "Chat";
|
|
const QString CHAT_SECTION_ICON = "chat";
|
|
|
|
const QString WALLET_SECTION_ID = "wallet";
|
|
const QString WALLET_SECTION_NAME = "Wallet";
|
|
const QString WALLET_SECTION_ICON = "wallet";
|
|
|
|
const QString BROWSER_SECTION_ID = "browser";
|
|
const QString BROWSER_SECTION_NAME = "Browser";
|
|
const QString BROWSER_SECTION_ICON = "browser";
|
|
|
|
const QString NODEMANAGEMENT_SECTION_ID = "nodeManagement";
|
|
const QString NODEMANAGEMENT_SECTION_NAME = "Node Management";
|
|
const QString NODEMANAGEMENT_SECTION_ICON = "node";
|
|
|
|
const QString SETTINGS_SECTION_ID = "profileSettings";
|
|
const QString SETTINGS_SECTION_NAME = "Settings";
|
|
const QString SETTINGS_SECTION_ICON = "settings";
|
|
|
|
#endif // APPSECTION_CONFIG_H
|