[go: up one dir, main page]

Menu

[dfe9bc]: / globals / bitmaps.py  Maximize  Restore  History

Download this file

27 lines (19 with data), 894 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# ******************************************************
# * Copyright © 2016-2023 - Jordan Irwin (AntumDeluge) *
# ******************************************************
# * This software is licensed under the MIT license. *
# * See: LICENSE.txt for details. *
# ******************************************************
## @module globals.bitmaps
from dbr.image import GetBitmap
from globals.paths import getBitmapsDir
from libdbr import paths
LOGO = paths.join(getBitmapsDir(), "icon", "64", "logo.png")
ICON_ERROR = GetBitmap("error", 64, "icon")
ICON_EXCLAMATION = ICON_ERROR
ICON_QUESTION = GetBitmap("question", 64, "icon")
ICON_INFORMATION = GetBitmap("info", 64, "icon")
ICON_WARNING = GetBitmap("warn", 64, "icon")
ICON_CLOCK = GetBitmap("clock", 16, "icon")
ICON_GLOBE = GetBitmap("globe", 16, "icon")
ICON_LOGO = GetBitmap("logo", 16, "icon")