summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-05-09Fixed the updating of sliders/preview on changing color selectionBjørn Lindeijer2-155/+158
It only worked when you clicked, not when the selection changed for any other reason, like click+drag. Use a SelectionListener instead.
2009-05-09Increased the distance between head and overhead text a bitBjørn Lindeijer10-23/+24
Plus some small code cleanups.
2009-05-09Insert player and item names at caret position instead of at the endBjørn Lindeijer2-10/+21
An improvement based on the 0.0.28.Q version.
2009-05-09Fix some memory leaksJared Adams4-3/+19
In doing so, NPC Dialogs now show the resize grip again.
2009-05-08Makes /where return the same as the @where command.Chuck Miller1-1/+2
For somereason the y coord was off by 1
2009-05-08Add a ", " between the coords returned by /where, to make it readibleChuck Miller1-1/+1
2009-05-08Fixed so player display names to show correctly when the being is created. ↵Chuck Miller2-4/+6
Not just when the config value is changed.
2009-05-08Client - Inventory handler moveItem improveBlue4-5/+5
Gives the actual number of items to the moveItem method. Fix compilation problem for twmserv client compilation.
2009-05-08Adjust potion of the item icon in ItemAmountWindowJared Adams1-1/+1
2009-05-08Item image on item amount windowsBlue2-10/+48
Adds the item's image with the popup on the amount selector window.
2009-05-08Fix showing item popups on the shortcut barJared Adams1-1/+1
It no longer requires the inventory window to be open.
2009-05-08Fixed one pixel missing from progress barsBjørn Lindeijer8-71/+67
Also fixed the progress bar during connecting to reset again when full, by disabling the smooth updating there. The ProgressBar now uses gcn::Color instead of three separate color attributes.
2009-05-08Keep a little spacing above the tabs in the chat windowBjørn Lindeijer2-4/+4
2009-05-08One error dialog is enoughJared Adams1-2/+1
2009-05-08Remove the title area from ChatWindowJared Adams1-0/+3
2009-05-08Fixed positioning of the item icons in the equipment windowBjørn Lindeijer1-1/+3
Noticed by QOAL.
2009-05-08Make sure all tab modes get their opacity updateJared Adams1-2/+6
2009-05-08Have progressbar labels ignore gui alphaJared Adams1-2/+2
2009-05-08Let the player keep sitting while talking to NPCsJared Adams1-4/+14
2009-05-08Fixed list box selection wrapping to the bottom on dragging upwardsBjørn Lindeijer1-3/+6
Negative values of y were not handled correctly, causing the selection to wrap when the mouse moved out of the listbox at the top while dragging.
2009-05-08Fixed scroll wheel handling in list boxesBjørn Lindeijer1-20/+2
The scroll wheel was changing the list box selection, which is somewhat unexpected. By not handling the event, it will be passed on to the parent ScrollArea and be handled appropriately.
2009-05-08Reintroduced the cancel button of ItemAmountWindowBjørn Lindeijer1-8/+12
Removed the close button instead. Also, the "All" button now only puts the slider at the maximum and won't also finish the dialog, since that is quite unexpected. This reverts commit ec4656af8e2d1946ea2b1d036457c885a9e420dd.
2009-05-08Don't complain in the logger about not having an image attribute forTametomo1-1/+1
negative items, since these aren't inventory items. Signed-off-by: Tametomo <irarice@gmail.com> Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
2009-05-08Got rid of the non-functional TextFieldListenerBjørn Lindeijer4-30/+13
Pointed out by Jaxad0127. We might want to enable its intended functionality in a different way later.
2009-05-08Merge branch 'master' of git://gitorious.org/tmw/mainlineChuck Miller3-0/+5
2009-05-08Correctly disables the use and drop buttons when no items are selectedChuck Miller1-5/+16
2009-05-07Add a key to toggle visibility of the party windowJared Adams3-0/+5
2009-05-07Remove the cancel button from ItemAmountWindowJared Adams1-7/+1
It's completely superfluous, due to the close button (which the cancel button was just calling anyways).
2009-05-07Fix updates in the ItemAmmountWindowJared Adams2-1/+11
CHanging the IntTextField will now update the Slider.
2009-05-07Put an input field back into the itemamount window.Freeyorp2-15/+14
2009-05-07Fixed compile issue with gcc 4.4Bjørn Lindeijer1-3/+5
2009-05-07Fixes the light speed bugChuck Miller1-1/+2
2009-05-07Fix handling of error messages in the game stateJared Adams3-9/+18
Also make sure an appropirate message gets shown on duplicated login.
2009-05-07Moved two files which held net data into the net folder. ConsideringTametomo19-26/+30
their function, this is a much better place to put them. Signed-off-by: Tametomo <irarice@gmail.com> Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
2009-05-07Made error strings in tmwserv login handler translatableBjørn Lindeijer2-23/+26
2009-05-06Clean up the bypass code for the ItemAmountWindowJared Adams6-81/+64
2009-05-07Fixed initialization of arrows equipment slotBjørn Lindeijer1-1/+1
Was still being initialized to the first item in the inventory instead of to nothing. I thought I had fixed this, but apparently it never got committed.
2009-05-06Don't show the split button for eAthenaJared Adams4-1/+16
2009-05-06Remove more inventory handling support #ifdefsJared Adams12-75/+77
This also fixes some minor bugs and centralizes some logic.
2009-05-05Fix clearing of NPC spritesJared Adams1-0/+4
2009-05-05Remove debug code that was accidentally committedJared Adams3-64/+0
2009-05-05Remove extra check on player targetJared Adams4-4/+64
~Being does this too, so let's leave it there.
2009-05-05Fix the context menu for the storage windowJared Adams5-20/+46
2009-05-05Change the item amount window to skip on one itemJared Adams1-2/+9
2009-05-05Merge branch 'master' of git://gitorious.org/tmw/mainlineChuck Miller4-9/+25
2009-05-05Moved code for hiding / showing player names from Player::logic() to a the ↵Chuck Miller3-13/+29
configure listener system
2009-05-05Fix selling stacked itemsJared Adams1-2/+3
2009-05-05Hide the item popup when the mouse moves on top of itBjørn Lindeijer3-7/+22
Makes the popup a lot less annoying. Still sticks around in some cases when it shouldn't, which seems to be because of missing mouseExited events from Guichan.
2009-05-05Fixed hidding showing player namesChuck Miller1-1/+14
2009-05-05Don't short the shortcut windows by defaultBjørn Lindeijer3-25/+25
The item shortcut window is easily accessible for those who want it, but it's a bit of a power feature so it shouldn't be shown by default.