Thread

Index > Scribe > How to remove blue shiny plates?
Author/Date How to remove blue shiny plates?
John
15/01/2025 3:31am
How to remove blue shiny plates? (I want normal icons.)
memecode
15/01/2025 8:17am
Scribe will load icons from the following files in it's install folder:

Toolbar-$size.png
xgate-icons-$size.png

Where '$size' is the pixel height. So 32 pixels would be the default. But you can change that if you want. So if you create your own icons or get them from somewhere else, just save them in a file with 'Toolbar-32.png' and put it in the Scribe folder. That should override the existing ones.

The icons are all numbered and in the code they are referenced by these symbols:

enum IconImageIdx
{
IMG_NEW_MAIL, // 0
IMG_NEW_CONTACT,
IMG_SEND,
IMG_RECEIVE,
IMG_REPLY,
IMG_REPLY_ALL,
IMG_FORWARD,
IMG_PRINT,

IMG_PREV_ITEM, // 8
IMG_NEXT_ITEM,

IMG_TRASH, // 10
IMG_SAVE,
IMG_SAVE_AND_CLOSE,
IMG_ATTACH_FILE,
IMG_PREVIEW,
IMG_CALENDAR,
IMG_DELETE_SPAM,
IMG_SEARCH,

IMG_HIGH_PRIORITY, // 18
IMG_LOW_PRIORITY,
IMG_READ_RECEIPT,
IMG_THREADS,

IMG_CAL_DAY, // 22
IMG_CAL_WEEK,
IMG_CAL_MONTH,
IMG_CAL_YEAR,
IMG_HELP,
IMG_CAL_PREV,
IMG_CAL_BACK,
IMG_CAL_TODAY,
IMG_CAL_FORWARD,
IMG_CAL_NEXT,
IMG_CAL_CONFIG,

IMG_BOUNCE, // 33
IMG_CAL_TODO,
IDM_XGATE,
IMG_CONSOLE_NOMSG,
IDM_CONSOLE_MSGS,
// 38 icons
};

Between that list and the 'xgate-icons-32.png' example you'll be able to figure out the meaning of all the icons.
memecode
15/01/2025 8:20am
Also some of my other applications now support loading icons from SVG so in the near future I will most likely convert Scribe to do that as well. Which will mean better scaling to high DPI screens.
John
17/01/2025 8:32am
Thank you.
I spent a long time trying to turn the letters into other icons. But the letters didn't turn into icons. Only shiny blue plates.
I'll look for something without plates.
Reply