aboutsummaryrefslogtreecommitdiff
path: root/src/guiChatConsole.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename height to scale for openConsole() (#5139)Zeno-2017-01-291-3/+5
| | | | | For Game::openConsole() and GUIChatConsole::openConsole() the parameter name 'height' is misleading because it's actually a percentage of the screen/window height.
* Irrlicht 1.9 supportsfan52016-12-261-1/+1
|
* Fix & make linux conditionals uniform (#4278)Rogier-52016-07-041-1/+1
| | | | | | | | The source used a hodge-podge of different combinations of different macros to check for linux: 'linux', '__linux', '__linux__'. As '__linux__' is standard (Posix), and the others are not, the source now uniformly uses __linux__. If either linux or __linux are defined, it is made sure that __linux__ is defined as well.
* Add colored text (not only colored chat).Ekdohibs2016-05-311-0/+664
| | | | | Add documentation, move files to a proper place and avoid memory leaks. Make it work with most kind of texts, and allow backgrounds too.
* Colored chat working as expected for both freetype and non-freetype builds. ↵TriBlade92016-05-311-649/+0
| | | | @nerzhul improvements * Add unit tests * Fix coding style * move guiChatConsole.hpp to client/
* Fix holding down F10 (open console) causing GUI to freezeCraig Robbins2016-05-041-1/+3
|
* Fix chat console not opening after formspec opened over itShadowNinja2016-03-121-0/+17
| | | | | | The MainMenuManager set the console invisible when a formspec opened over it, but didn't properly close it, and the chat console never set itself visible again.
* Add support for non-ASCII characters to chat consoleShadowNinja2016-03-021-3/+6
| | | | | This still only supports 256 characters, but that's because Irrlicht's clipboard handlers don't support wide characters.
* Add text selection and copying to consoleShadowNinja2016-03-021-26/+58
|
* Unlock cursor when opening consoleShadowNinja2016-03-021-5/+8
|
* Use the console instead of a dedicated window when pressing keymap_chat/cmdEsteban I. Ruiz Moreno2016-03-021-19/+37
| | | | keymap_console opens a full window for chat history browsing.
* Move globals from main.cpp to more sane locationsCraig Robbins2015-04-011-1/+0
| | | | | | | | | | | | Move debug streams to log.cpp|h Move GUI-related globals to clientlauncher Move g_settings and g_settings_path to settings.cpp|h Move g_menuclouds to clouds.cpp|h Move g_profiler to profiler.cpp|h
* Replace std::list to std::vector into tile.cpp (m_texture_trash) and move ↵Loic Blot2015-03-051-1/+1
| | | | tile.hpp to src/client/
* Grab GUIChatConsole::m_font, fixes segfault when changing font_sizeKahrl2015-02-181-2/+5
|
* Reduce gettext wide/narrow and string/char* conversionsShadowNinja2015-02-051-2/+2
|
* Fix use of uninit data in Sky and (potentially) GUIChatConsole constructorsKahrl2015-01-181-11/+8
| | | | | | | | Clean up nearby code a bit As a small side effect, it is now possible to add a background texture to the chat console by simply providing background_chat.jpg, it is no longer necessary to also add "console_color =" to minetest.conf.
* Add paste command (Ctrl-V) in GUIChatConsoleKahrl2014-12-101-0/+13
|
* Make hud use fontengine toosapier2014-11-301-1/+1
| | | | | Fix non coding style conforming glb_fontengine to g_fontengine Fix fonts never been deleted due to grabbed to often
* Implement proper font handlingsapier2014-11-301-22/+5
|
* Make freetype usage configureable by a settingPilzAdam2013-08-041-6/+11
|
* Add basic unicode support to the console (linux workaround)Esteban I. Ruiz Moreno2013-06-151-1/+7
|
* Close console when it loses focus but it is still on screenEsteban I. Ruiz Moreno2013-06-051-0/+5
|
* Dont drop fonts with ENABLE_FREETYPE=0PilzAdam2013-05-161-1/+3
|
* Fix memory leaks: delete font in main and GUIChatConsolePilzAdam2013-05-101-0/+1
|
* Fix nick completionPilzAdam2013-04-051-1/+1
|
* Migrate to STL containers/algorithms.Ilya Zhuravlev2013-03-111-1/+1
|
* Update Copyright YearsSfan52013-02-241-1/+1
|
* Change Minetest-c55 to MinetestPilzAdam2013-02-241-1/+1
|
* Add Freetype supportIlya Zhuravlev2013-02-141-0/+10
|
* Switch the license to be LGPLv2/later, with small parts still remaining as ↵Perttu Ahola2012-06-051-4/+4
| | | | GPLv2/later, by agreement of major contributors
* Chat console, including a number of rebases and modifications.Kahrl2012-03-101-0/+550
Defaults modified from original: alpha=200, key=F10