summaryrefslogtreecommitdiff
path: root/src/gui/widgets
AgeCommit message (Collapse)AuthorFilesLines
2012-10-21Extend password field theming.Andrei Karas4-4/+12
New theme parameter: passwordChar - ASCII code for password char. If zero password invisible.
2012-10-21Extend textfield theming.Andrei Karas2-12/+86
New theme options: padding frameSize
2012-10-21Rename theme file textfield_background.xml to textfield.xmlAndrei Karas1-1/+4
2012-10-21Fix item selection in shoplistbox class.Andrei Karas1-1/+1
2012-10-21Extend playerbox theming.Andrei Karas2-4/+15
New theme options: offsetX - offset for player by x. Default -16 offsetY - offset for player by y. Default -32 frameSize - frame size. Default 2
2012-10-21Fix compilation error from previous commits.Andrei Karas1-0/+2
2012-10-21Rename theme file playerbox_background.xml to playerbox.xmlAndrei Karas1-2/+2
2012-10-21Extend theming itemcontainer (used in inventory, trade window etc)Andrei Karas2-14/+30
New theme file: itemcontainer.xml Options in file: boxWidth - item box width. Default value 35. boxHeight - item box height. Default value 53. equippedTextPadding - padding for item amount or equipped text. Default value 29.
2012-10-21Fix chat scrolling after tabbed area changes.Andrei Karas1-11/+15
2012-10-20Fix code style and some minor issues.Andrei Karas44-105/+2
2012-10-20Fix palettes loading and using.Andrei Karas3-14/+15
2012-10-20Add load theme id for windows and popups.Andrei Karas3-2/+22
New theme options: palette - palette number for window or popup. childPalette - palette number for window child controls. palette and childPalette should be from 0 to 4.
2012-10-20Add palette inheritance to textpreview class.Andrei Karas2-3/+4
2012-10-20Add palette inheritance to textbox class.Andrei Karas3-4/+4
2012-10-20Add palette inheritance to radiobutton class.Andrei Karas4-4/+8
2012-10-20Add palette inheritance to progressbar class.Andrei Karas4-6/+6
2012-10-20Add palette inheritance to label class.Andrei Karas6-17/+19
2012-10-20Add palette inheritance to other shortcutcontainer classes.Andrei Karas9-2/+37
2012-10-20Add palette inheritance to itemcontainer class.Andrei Karas2-3/+5
2012-10-20Add palette inheritance to textfield class.Andrei Karas7-11/+18
2012-10-20Add palette inheritance to icon class.Andrei Karas2-5/+6
2012-10-20Add palette inheritance to guitable class.Andrei Karas2-3/+5
2012-10-20Add palette inheritance to shortcutcontainer class.Andrei Karas1-3/+2
2012-10-20Add palette inheritance to checkbox class.Andrei Karas3-4/+6
2012-10-20Add palette inheritance to button class.Andrei Karas6-20/+25
2012-10-20Add palette inheritance to browserbox class.Andrei Karas3-4/+6
2012-10-20Add to some controls palette inheritance from other controls.Andrei Karas55-92/+138
2012-10-20In all controls, call Widget2 methods to get colors.Andrei Karas25-75/+78
2012-10-20Allow get colors from Widget2.Andrei Karas3-34/+34
2012-10-20Derive all widgets from Widget2 class.Andrei Karas43-25/+175
2012-10-19Fix namespace conflicts.Andrei Karas19-40/+25
2012-10-19Fix tabbed area containers size.Andrei Karas1-18/+23
2012-10-19Partial fix with tabbed area.Andrei Karas1-5/+6
2012-10-18Fix listbox selection rectangle.Andrei Karas1-2/+2
2012-10-18Extend theming listbox with image.Andrei Karas2-4/+8
New theme options: imagePadding - padding for image from left spacing - space between image and text
2012-10-18Extend dropdown theming.Andrei Karas2-13/+96
New options in dropdown.xml: padding - text padding from all sides imagePadding - image padding from right frameSize - frame size
2012-10-17Extend radio button theming.Andrei Karas3-70/+85
New options: padding - padding from all sides except left imagePadding - padding from left before image imageSize - image size for computation width spacing - space between image and text width = imagePadding + imageSize + spacing + text width + padding height = padding + text height + padding
2012-10-17Extend checkbox theming.Andrei Karas2-97/+64
New options: padding - padding from all sides except left imagePadding - padding from left before image imageSize - image size for computation width spacing - space between image and text width = imagePadding + imageSize + spacing + text width + padding height = padding + text height + padding
2012-10-17ARM fixes.Andrei Karas1-2/+0
2012-10-16Fix code style and some other minor issues.Andrei Karas4-11/+8
2012-10-16Add listbox padding.Andrei Karas5-30/+71
New theme file: listbox.xml Theme option: padding
2012-10-16Fix some signed/unsigned chars issues.Andrei Karas2-3/+3
2012-10-15Override some methods in guichan listbox.Andrei Karas2-0/+16
2012-10-15Fix compilation warnings without C++11 support.Andrei Karas57-66/+66
2012-10-15Fix compilation old gcc and system wide guichan at same time.Andrei Karas22-1/+42
2012-10-14Fix memory corruption from previous commit with labels.Andrei Karas1-3/+2
2012-10-14Extend theming in tab control.Andrei Karas2-12/+30
Add padding parameter.
2012-10-14Replace gcn::Button to Button in all classes.Andrei Karas1-9/+1
2012-10-14Add theming to labels.Andrei Karas3-11/+81
New theme file: label.xml Parameters: padding
2012-10-14Dont use guichan tab and tabbedarea anymore.Andrei Karas5-35/+306
It have some methods and widget connections what cant be changed by overloading.