summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-02-04Few more unneeded headers that weren't noticed originally in the lastIra Rice8-11/+3
commit. Also, while the overall performance improved a little, it doesn't appear to be as drastic as the last commit was suggesting. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-04Went through the gui folder and revised the include statements to notIra Rice123-438/+177
include anything not needed by that specific widget or window. This appears to have cleaned up system performance a bit on my current setup, where it went from idling on 45% in game with opengl down to 30% now. Also moved iptostring to the tostring header, as importing all of network.h is a little overkill to use that function, and it goes along with the basic functions that are in that header file anyways. TODO: find out a way to get rid of warnings when a class doesn't use this function. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-03Applied a minimum height and width to the help window.Ira Rice1-0/+2
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-03Show the scroll area again for the skill dialog. While this commit isn'tIra Rice1-1/+0
needed so much, I think that now that opacity actually works in tables now, it looks a bit bettwe with the scroll area visible. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-03Modified video mode selection to not test the resolution clicked on, andIra Rice1-17/+0
to trust that the resolutions presented are legal resolutions to try. This shouldn't be an issue, as the resolutions listed are pulled straight from SDL, and it avoids showing the user a visual artifact. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-03Disable alpha values affecting two widgets which would otherwise takeIra Rice3-7/+26
alpha values under SDL. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-03Modified the dropdown class to handle opacity.Ira Rice4-19/+81
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-03Fixed up table class to allow for different background colors, as wellIra Rice7-115/+128
as defining whether the given table is opaque or not. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-03Changed the listbox in the color setup pane to use the customizedIra Rice1-1/+2
listbox. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-03Made highlights configurable through the color dialog.Ira Rice4-5/+27
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Made the shoplist box alpha blend.Ira Rice2-3/+13
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Added highlighting ability to tabs.David Athay2-8/+29
2009-01-30Made the recorder class messages translatable, as well as moved theIra Rice2-8/+24
recorder over to the layout code (not that it helps much at the moment). Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Swapped the default settings for two labels, which had been mixed up.Ira Rice1-2/+2
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Reflowed status window using the layout class.Ira Rice2-160/+62
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Fixed the item container so that it displays all item captions with theIra Rice1-0/+1
default font. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Moved weight and slots back to the top of the inventory window.Ira Rice1-6/+6
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Some style cleanups to the image class. TODO: Find a way to fix theIra Rice1-21/+22
subimage class so that when OpenGL isn't enabled, GUI opacities can still be applied. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Found a few more gui elements that didn't get exposed to transparencyIra Rice4-19/+42
updating. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Applied alphas to the progress bar fill and text overlays as well.Ira Rice1-3/+8
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Exposed most gui elements to take alpha values. There are still a fewIra Rice24-28/+160
spots that could also be fixed up as well, but require other methods to fix them (the filled color rectangles on the progress bars, as well as the text on them as well, as an example). Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Changed the minimap to remember whether the minimap was toggled or notIra Rice1-2/+3
when the client was last exited. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Re-enabled real time gui opacity updating.Ira Rice1-3/+8
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Fixed color saving on Windows.Ira Rice1-3/+2
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-30Fixed the last freestanding minimap bug. Now minimaps behave perfectlyIra Rice1-1/+2
even when there's already a saved window configuration. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-29Trimmed out a few help functions from some subclasses, and moved themIra Rice5-40/+13
back to the chat class, where they really belong. Since the party class parses its own suboptions, I left the suboptions within that class. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-29Fixed up minimap resizing code so that the minimum width is always longIra Rice1-6/+12
enough to contain the map's name. Also fixed an unnoticed logic flip that was done unintentionally. This class now manages to work perfectly when the config file has no previous dimensional influences, but still won't resize properly without removing the ability to resize or getting rid of those stored configs. TODO: Find out why loading window configuration for the default minimum width or height overrides the Minimap's supplied dimensions it wants. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-29Converted CRLF newlines to LFBjørn Lindeijer1-0/+42
2009-01-29Update Swedish translation. Two (or rather three) msgstrs require the use of ↵Kess Vargavind1-232/+219
"no-c-format".
2009-01-29Don't send empty chats (long lines of empty spaces).Ira Rice1-0/+5
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-29Make sure that strings aren't chopped off when a | isn't found.Ira Rice1-1/+3
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-29If an item link isn't found, don't treat it as a link.Ira Rice2-13/+10
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-29Removed useless check from the last commit.Ira Rice1-5/+3
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-29Fixed a crash caused by getting the wrong string substring. In doing so,Ira Rice1-22/+15
the algorithm was optimized further, so that only one correction needs to be done if the last line is the longest. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Adjusted a few color defaults to make them easier to see.Ira Rice1-4/+4
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Added coloring of item names by type. TODO: Allow this to beIra Rice4-9/+45
customizable through the color interface so that if someone is colorblind to a certain color and it doesn't show up well, they can change it (or even people who just don't like the default color). Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Fixed a slight error in item name widths.Ira Rice1-3/+2
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Fix for a mistake in one of the logicc statements in the last commit.Ira Rice1-1/+1
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Finally put in the last missing wrapping case that has been missing fromIra Rice1-6/+25
the textbox class. Should now always choose the most ideal text wrap possible. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Consolidated setMinWidth into textWrap, since all lines are dependantIra Rice7-49/+33
upon knowing what dimension they have to wrap to or beat in order for text wrapping to work. By adding this to be initiated at the same time as the text wrapping is done, this should decrease visual artifacts caused by not initializing it properly to begin with. Also made the item popups compact to the minimum dimension. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Moved NPC text back to using the textbox. Rationale is that the textboxIra Rice2-15/+38
code is in much better shape than the browserbox code at the moment, and that the move to using the browserbox was a bit silly, as textbox already wraps. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Fix handling of packet 0x81Jared Adams4-33/+79
2009-01-28Removed manual trimmings in exchange for using trim.h instead.Ira Rice2-17/+5
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Another file added to the ignore listBjørn Lindeijer1-0/+1
2009-01-28Made translations and music optional components when installing on windows.Philipp Sehmisch1-8/+23
2009-01-28Updated po files (not really needed yet, but the da file needed fixing)Ira Rice25-3835/+4519
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-28Added missing files to CMakeLists.Ira Rice2-9/+35
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-27Removed the fairly useless buttonbox class, as well as removing theIra Rice9-216/+143
recorder's dependence upon it. This class should get a bit more work done to it to simplify it further, but right now, it preserves all of the same functionality. Signed-off-by: Ira Rice <irarice@gmail.com>
2009-01-27Restore punching animation after weapon removalJared Adams1-0/+5
2009-01-27Added font size config for the bold font as well.Ira Rice1-1/+2
Signed-off-by: Ira Rice <irarice@gmail.com>