Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-14 | - implements .bdf font loader based on convbdf (sure could have some clean up) | Johannes Schickel | |
- adds three different font styles to the themes (normal, bold (default one), italic) - implements code for specifing the font files in the theme config ('fontfile_normal','fontfile_bold' and 'fontfile_italic' in the 'extra' section) - changes EditTextWidget to use the normal font (has some minor aligment problems with the caret now, though) - extends the FontManager (new functions: getFontByName, assignFontToName, removeFontName) - adds the font style constans to the builtin constants for the evaluator) svn-id: r21868 | |||
2006-03-09 | Converted last dialogs to new scheme. Now it seems to be everything. Please, | Eugene Sandulenko | |
test throghoutly. svn-id: r21157 | |||
2006-02-11 | Change CVS keywords to SVN keywords | Max Horn | |
svn-id: r20518 | |||
2006-01-27 | - adds the new gui renderer also a new implementation for the classic gui | Johannes Schickel | |
- 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 | |||
2006-01-18 | Update copyright notice | Eugene Sandulenko | |
svn-id: r20088 | |||
2005-10-18 | Update FSF address. Eek. Actually that took place on May 1, 2005 | Eugene Sandulenko | |
svn-id: r19142 | |||
2005-07-30 | Remove trailing whitespaces. | Eugene Sandulenko | |
svn-id: r18604 | |||
2005-06-24 | Whitespace changes. | Torbjörn Andersson | |
svn-id: r18449 | |||
2005-06-24 | When including files from common/, explicitly use the common/ prefix | Max Horn | |
svn-id: r18444 | |||
2005-06-03 | Cleanup. | Torbjörn Andersson | |
svn-id: r18319 | |||
2005-05-20 | Added big editable text widget, and removed some cruft. I think this means | Torbjörn Andersson | |
that all our widgets are able to scale themselves now, but I could be mistaken. svn-id: r18192 | |||
2005-01-29 | Move more text editing code into class EditableWidget; ListWidget now has ↵ | Max Horn | |
all the editing capabilities of EditTextWidget svn-id: r16694 | |||
2005-01-29 | Started to merge the text editing code in ListWidget and EditTextWidget | Max Horn | |
svn-id: r16692 | |||
2005-01-10 | system.h was being included in tons of places, without any good reason; ↵ | Max Horn | |
reduced this (total dependencies on system.h went down from 193 to 85 files) svn-id: r16527 | |||
2005-01-01 | Updated copyright | Max Horn | |
svn-id: r16398 | |||
2004-12-30 | Fix for bug #1091801 (ALL: Possible to create corrupt config file) | Max Horn | |
svn-id: r16379 | |||
2004-09-28 | Rename remaining OSystem methods to match our coding guidelines | Max Horn | |
svn-id: r15332 | |||
2004-02-05 | renamed (Const)Iterator to (const_)iterator; changed size() to return an uint | Max Horn | |
svn-id: r12722 | |||
2004-01-06 | updated copyright notice | Max Horn | |
svn-id: r12176 | |||
2003-11-19 | new font code (currently disabled by default), which allows using ↵ | Max Horn | |
'arbitrary' BDF fonts (via convbdf) svn-id: r11350 | |||
2003-11-18 | cleanup; fixed return/enter in ListWidget when not in editing mode | Max Horn | |
svn-id: r11346 | |||
2003-11-10 | added namespace GUI | Max Horn | |
svn-id: r11255 | |||
2003-11-08 | cleanup whitespaces | Paweł Kołodziejski | |
svn-id: r11223 | |||
2003-11-04 | modified NewGui::drawString to shorten strings which don't fit using ↵ | Max Horn | |
ellipsis (disabled for the EditTextWidget for now) svn-id: r11136 | |||
2003-11-02 | make coordinate calculation based on position of parent -> needed for nested ↵ | Max Horn | |
widgets svn-id: r11058 | |||
2003-11-02 | introduced common base class GuiObject for Dialog/Widget -> step towards ↵ | Max Horn | |
making it possible to nest widgets (needed for TabWidget) svn-id: r11052 | |||
2003-11-02 | turned NewGui into a singleton, and made OSystem a pseudo-singleton; added ↵ | Max Horn | |
Widget::findWidget (preparing to add support for nested widgets, for the tab widget) svn-id: r11045 | |||
2003-10-01 | vline -> vLine, hline-> hLine, slightly more in line with ScummVM naming ↵ | Jonathan Gray | |
style and more importantly doesn't conflict with the vline and hline Allegro functions svn-id: r10520 | |||
2003-09-24 | Whitespace changes | Torbjörn Andersson | |
svn-id: r10390 | |||
2003-05-05 | Patch #732725: EditTextWidget: handleMouseDown positions caret | Max Horn | |
svn-id: r7360 | |||
2003-05-05 | Patch #732707: EditTextWidget: long string support | Max Horn | |
svn-id: r7359 | |||
2003-05-05 | fixed cursor placement | Oliver Kiehl | |
svn-id: r7343 | |||
2003-05-05 | patch #732184 | Oliver Kiehl | |
svn-id: r7341 | |||
2003-03-06 | updated copyrights headers | Paweł Kołodziejski | |
svn-id: r6726 | |||
2003-03-06 | and more cleanup .... Last | Paweł Kołodziejski | |
svn-id: r6721 | |||
2003-01-10 | Added some basic line editing to the EditText widget | Oliver Kiehl | |
svn-id: r6393 | |||
2002-11-22 | improved keyboard input behaviour in SDL backend: make use of the unicode ↵ | Max Horn | |
feature in SDL. This way, Shift-1 on my german keyboard generates ! not 1 (on an US keyboard it'll be a different symbol). Should fix bug #600258 and #551447 svn-id: r5692 | |||
2002-11-22 | changed the key input system in NewGUI: pass both the keycode and the ascii ↵ | Max Horn | |
value to handleKeyUp/Down. Also, use this to fix the key repeat code (see bug #626225) svn-id: r5691 | |||
2002-11-21 | allow some more chars as input | Max Horn | |
svn-id: r5672 | |||
2002-11-21 | added missing right border | Max Horn | |
svn-id: r5671 | |||
2002-11-21 | Implemented EditTextWidget; fixed Add Game/Remove Game in launcher; make use ↵ | Max Horn | |
of EditTextWidget in EditGameDialog; various other tweaks svn-id: r5665 | |||
2002-11-21 | factored out ChooserDialog into it's own header/source file, and made the ↵ | Max Horn | |
title adjustable; added a dummy file for EditFieldWidget (not implemented yet); some other cleanup svn-id: r5658 |