2016-01-18 23:33:23 +00:00
|
|
|
#ifndef URDE_ICONS_HPP
|
|
|
|
#define URDE_ICONS_HPP
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
#include "specter/Icon.hpp"
|
|
|
|
#include "specter/ViewResources.hpp"
|
2016-01-18 23:33:23 +00:00
|
|
|
|
2016-03-05 00:03:41 +00:00
|
|
|
namespace urde
|
2016-01-18 23:33:23 +00:00
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
boo::GraphicsDataToken InitializeIcons(specter::ViewResources& viewRes);
|
2016-01-18 23:33:23 +00:00
|
|
|
|
|
|
|
enum class SpaceIcon
|
|
|
|
{
|
|
|
|
ResourceBrowser,
|
|
|
|
ParticleEditor,
|
|
|
|
WorldEditor,
|
2016-02-02 08:31:05 +00:00
|
|
|
ModelViewer,
|
2016-12-13 02:56:43 +00:00
|
|
|
InformationCenter,
|
|
|
|
GameMode
|
2016-01-18 23:33:23 +00:00
|
|
|
};
|
2016-03-04 23:04:53 +00:00
|
|
|
specter::Icon& GetIcon(SpaceIcon icon);
|
2016-01-18 23:33:23 +00:00
|
|
|
|
|
|
|
enum class MonoIcon
|
|
|
|
{
|
|
|
|
Sync,
|
|
|
|
Edit,
|
|
|
|
Caution,
|
|
|
|
Save,
|
|
|
|
Filter,
|
|
|
|
Document,
|
|
|
|
ZoomOut,
|
|
|
|
ZoomIn,
|
|
|
|
|
|
|
|
Exclaim,
|
|
|
|
Clock,
|
|
|
|
Gamepad,
|
|
|
|
Unlink,
|
|
|
|
Link,
|
|
|
|
Folder,
|
|
|
|
Info
|
|
|
|
};
|
2016-03-04 23:04:53 +00:00
|
|
|
specter::Icon& GetIcon(MonoIcon icon);
|
2016-01-18 23:33:23 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // URDE_ICONS_HPP
|