summaryrefslogtreecommitdiff
path: root/src/gui
AgeCommit message (Collapse)AuthorFilesLines
2017-08-21Remove useless else.Andrei Karas23-144/+95
2017-08-20Add function for read float and double number from xml.Andrei Karas1-12/+12
2017-08-19Fix cast issue in macosx.v1.7.8.19Andrei Karas1-6/+8
2017-08-18Remove extra includes.Andrei Karas1-0/+1
2017-08-14Fix type in previous commit.Andrei Karas1-1/+1
2017-08-14Dont try to draw hidden rows by filter in item container.Andrei Karas1-4/+4
2017-08-14Fix some pointer to bool conversions.Andrei Karas4-5/+5
2017-08-14Replace static members usage from pointers to direct classes.Andrei Karas12-41/+35
clang-tidy warning: readability-static-accessed-through-instance
2017-08-13Change height in item containers if some items hidden by filter.Andrei Karas2-6/+22
2017-08-10Hide item popup if open popupmenu.s20170810Andrei Karas3-0/+15
2017-08-09Fix style issue.Andrei Karas1-2/+1
2017-08-09Add different use actions for items.Andrei Karas2-5/+5
Can be used from chat or from custom item menu from items.xml
2017-08-09Allow for each item replace equip/use menu item to custom menu.Andrei Karas2-7/+70
Separate menus supproted for inventory, storage, cart.
2017-08-09Fix warning with old compilers.Andrei Karas2-3/+5
2017-08-08Use size_t type for index in other shortcut classes.Andrei Karas5-27/+28
2017-08-08Use size_t type for index in itemshortcut.Andrei Karas2-20/+21
2017-08-08Remove extra includes.Andrei Karas2-2/+0
2017-08-08Move constants from itemshortcut.h into const directory.Andrei Karas1-4/+2
2017-08-08Add into skill context menu for add shortcut.Andrei Karas6-12/+21
Also add chat command for add skill shortcut by skill id into free slot.
2017-08-07Remove useless casts from missile-particle attributes.Andrei Karas1-4/+4
2017-08-07Adjust default missile particle lifetime.Andrei Karas1-2/+2
2017-08-07Add additional attributes to missile particles in skills.Andrei Karas1-2/+23
2017-08-07Rename skill attributes related to missile particles.Andrei Karas1-4/+4
particle -> missile-particle castingParticle -> castingMissile-particle
2017-08-07Fix style issues.Andrei Karas1-1/+1
2017-08-07Allow open debug window before connecting to game.Andrei Karas4-5/+16
2017-08-05Fix compilation for macosx.v1.7.8.5Andrei Karas1-6/+8
2017-08-04Fix code style.Andrei Karas2-4/+4
2017-08-03Fix signed / unsigned comparision issue in old gcc.Andrei Karas2-6/+6
2017-08-03Add option into paths.xml for allow/deny add unknown skills into auto tab.Andrei Karas1-0/+1
2017-08-03Add skill option for allow/prevent adding skill to auto skills shortcuts tab.Andrei Karas1-1/+4
2017-08-03Dont draw name in skill shortcuts if icon already present.Andrei Karas2-17/+35
2017-08-02Add item shortcuts tab with automatically filled with skills.Andrei Karas4-3/+61
2017-08-01Add default icons for unknown skills by types.Andrei Karas2-2/+42
2017-07-30Add option to show player name at top or at bottom.Andrei Karas2-1/+21
Add also enum for badge draw type.
2017-07-28Fix key press emulation with SDL2.Andrei Karas1-4/+5
2017-07-27In mouse click emulation, before click send mouse move events.Andrei Karas1-0/+4
2017-07-27Fix crash in help window links.Andrei Karas1-1/+2
2017-07-25Remove command line option --default-cursor and add option --hide-cursor.s20170725Andrei Karas1-2/+6
2017-07-25Update mouse cursor each 10 seconds if was no mouse move events.Andrei Karas3-0/+11
2017-07-25Use browserbox for quest text in quests window.Andrei Karas2-4/+4
2017-07-21In statisbrowserbox remove separator if it present in last line.Andrei Karas1-0/+6
2017-07-21Fix too long lines in popupmenu.cppAndrei Karas1-6/+8
2017-07-20Show heal command in player menu only for legacy servers.Andrei Karas1-4/+9
2017-07-20Into staticbrowserbox allow add separators without duplication.Andrei Karas3-85/+99
2017-07-20Allow any gm commands if group have permission all_commands.Andrei Karas1-0/+5
2017-07-20Show gm commands in popup menu based or player allowed gm commands.Andrei Karas2-159/+350
For legacy server aka tmwa, it allow all commands.
2017-07-20In popupmenu get group for local player before each menu.Andrei Karas2-0/+49
2017-07-17Fix issues detected by coverity.Andrei Karas2-6/+5
2017-07-17Add missing check in statuswindow.cppAndrei Karas1-2/+4
2017-07-14Replace std::vector into macro STD_VECTOR.Andrei Karas91-269/+269
In most case it equal to std::vector except debug modes. Now it can be also mse::mstd::vector, but sadly this class not support all required features.