Repository URL to install this package:
|
Version:
0.7.13 ▾
|
# -*- coding: utf-8 -*-
## \package <package>
# MIT licensing
# See: docs/LICENSE.txt
import wx
from globals.paths import ConcatPaths
from globals.paths import PATH_app
PATH_bitmaps = u'{}/bitmaps'.format(PATH_app)
ICON_ERROR = ConcatPaths((PATH_bitmaps, u'error64.png'))
ICON_EXCLAMATION = ICON_ERROR
ICON_QUESTION = ConcatPaths((PATH_bitmaps, u'question64.png'))
ICON_INFORMATION = ConcatPaths((PATH_bitmaps, u'information64.png'))
ICON_WARNING = ConcatPaths((PATH_bitmaps, u'warning64.png'))
ICON_CLOCK = wx.Bitmap(ConcatPaths((PATH_bitmaps, u'clock16.png')))
ICON_GLOBE = wx.Bitmap(ConcatPaths((PATH_bitmaps, u'globe16.png')))
ICON_LOGO = wx.Bitmap(ConcatPaths((PATH_bitmaps, u'debreate16.png')))
BUTTON_HELP = wx.Bitmap(ConcatPaths((PATH_bitmaps, u'question32.png')))
BUTTON_REFRESH = wx.Bitmap(ConcatPaths((PATH_bitmaps, u'btn-refresh32.png')))