aboutsummaryrefslogtreecommitdiff
path: root/gui/predictivedialog.cpp
AgeCommit message (Collapse)Author
2019-10-03GUI: Add Missing Switch Default CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2018-04-07DS: Fix building with AGI engine disabledCameron Cawley
2018-01-27GUI: Implement dirty-checking for widget redrawsBastien Bouclet
2016-06-01GUI: Cleanup class initializationEugene Sandulenko
2016-04-14GUI: Remove 'sticky button' featureOri Avtalion
This feature made pressed buttons wait a few moments before returning to an unpressed state. It was half-implemented, and caused several visual bugs. Fixes #7083.
2016-02-28GUI: Don't crash on empty dictionary in predictive dialogTorbjörn Andersson
2016-02-28GUI: Fix two leaks in predictive dialogTorbjörn Andersson
2016-01-25GUI: Add missing _() for translation in predictivedialog.cpp.Johannes Schickel
2016-01-24GUI: Use "button" instead of "btn" in variable names.Johannes Schickel
2016-01-24GUI: Reduce scope of variable in PredictiveDialog::processButton.Johannes Schickel
2016-01-24GUI: Fix typo in comment in predictivedialog.cpp.Johannes Schickel
2016-01-24GUI: Improve naming of PredictiveDialog's members.Johannes Schickel
2016-01-24GUI: Make PredictiveDialog::_btns a fixed size array.Johannes Schickel
2016-01-24GUI: Add constructor instead of duplicating initialization.Johannes Schickel
2016-01-24GUI: Improve variable naming in PredictiveDialog.Johannes Schickel
2016-01-24GUI: Set PredictiveDialog's debug output to level 5+.Johannes Schickel
2016-01-24GUI: Only use image for delete when applicable in PredictiveDialog.Johannes Schickel
2016-01-24GUI: Formatting fixes in predictivedialog.cpp.Johannes Schickel
2014-02-18GUI: Make GPL headers consistent in themselves.Johannes Schickel
2013-11-03GUI: Skip useless assignment. CID 1002117Eugene Sandulenko
2013-10-02GUI: Do not return current input on cancel in PredictiveDialog.Johannes Schickel
Returning the currently displayed input when you click cancel is confusing behavior in my eyes.
2013-10-02GUI: Initialize PredictiveDialog::_predictiveResult.Johannes Schickel
This fixes garbage output when canceling the predictive dialog in AGI when nothing was entered.
2013-10-02GUI: Clean up calloc use in PredictiveDialog.Johannes Schickel
Instead of manually multiplying the entry count with the entry size we simply use both parameters of calloc as intended now.
2013-10-02GUI: Fix compilation with clang and C++11.Johannes Schickel
newDictLine is allocated with calloc in line 856 thus there is no need to initialize any entry.
2013-04-24GUI: Fix memory leak. CID 1003569Eugene Sandulenko
2012-09-26JANITORIAL: Remove trailing whitespaces.Johannes Schickel
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//'
2012-05-03GUI: Use pressed state in predictive dialog in keyboard mode.Oleksiy Kurochko
This adds more visual feedback to the user.
2012-03-29GUI: Move "I18N" tagged comment to matching strings.Johannes Schickel
The strings are not marked for translation, so I am not sure why the comments are tagged with I18N though.
2012-03-29GUI: Add TODO/FIXME to PredictiveDialog::handleTickle.Johannes Schickel
2012-03-29GUI: Remove unnecessary goto in PredictiveDialog code.Johannes Schickel
2012-03-29GUI: Take advantage of Common::String::empty.Johannes Schickel
2012-03-29GUI: Constify some parameters/methods in PredictiveDialog.Johannes Schickel
2012-03-29GUI: Make some static strings in PredictiveDialog static + const.Johannes Schickel
2012-03-29GUI: Don't typedef Common::String in PredictiveDialog code.Johannes Schickel
2012-03-29GUI: Get rid of "using namespace Common" in predictivedialog.cpp.Johannes Schickel
2012-03-29GUI: Formatting fixes in the PredictiveDialog code.Johannes Schickel
2012-03-25GUI: Fix for WinCE compile failure after predictive dialog changes.D G Turner
This is probably due to a collision with WinCE toolchain system define, so changing the enum from all capitalised to Camel Case constant style.
2012-03-25GUI: Corrected fix for NDS compile failure...D G Turner
Header needed to be in global, not GUI namespace.
2012-03-25GUI: Fix for NDS compile failure after predictive dialog changes.D G Turner
2012-03-25GUI: Move predictive dialog to common guiOleksiy Kurochko