mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
5051b080a2
- adds a ImageMan and ImageDec class for loading and managing image files - adds a loader for zip files which is used by the new theme and the image manager - changes the widgets to use the new gui code - changes the scumm dialogs to use the new gui code - fixes a #include problem in the sky debugger with the new gui code To use the new gui copy gui/themes/default-theme.zip to your extrapath. If the theme zip can not be found the gui will fallback to the classic theme. If you want to change the gui styles use "gui_theme=classic" for the classic theme and "gui_theme=default-theme" for the new theme. Thanks to eriktorbjorn for testing and help with the new theme and to sev for reviewing this patch. svn-id: r20227
28 lines
435 B
Makefile
28 lines
435 B
Makefile
MODULE := gui
|
|
|
|
MODULE_OBJS := \
|
|
gui/about.o \
|
|
gui/browser.o \
|
|
gui/chooser.o \
|
|
gui/console.o \
|
|
gui/dialog.o \
|
|
gui/editable.o \
|
|
gui/EditTextWidget.o \
|
|
gui/launcher.o \
|
|
gui/ListWidget.o \
|
|
gui/message.o \
|
|
gui/newgui.o \
|
|
gui/options.o \
|
|
gui/PopUpWidget.o \
|
|
gui/ScrollBarWidget.o \
|
|
gui/TabWidget.o \
|
|
gui/widget.o \
|
|
gui/theme.o \
|
|
gui/ThemeNew.o
|
|
|
|
MODULE_DIRS += \
|
|
gui
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|