mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-09 19:10:38 +00:00
3436e0a781
# Conflicts: # src/error.h # src/error_gui.cpp # src/linkgraph/linkgraph_gui.cpp # src/misc_gui.cpp # src/newgrf_gui.cpp # src/news_gui.cpp # src/rail_cmd.cpp # src/saveload/gamelog_sl.cpp # src/script/api/script_text.cpp # src/script/script_instance.cpp # src/statusbar_gui.cpp # src/strings.cpp # src/strings_func.h # src/strings_internal.h # src/table/settings/gui_settings.ini # src/table/settings/linkgraph_settings.ini # src/textbuf_gui.h
45 lines
2.0 KiB
C++
45 lines
2.0 KiB
C++
/*
|
|
* This file is part of OpenTTD.
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/** @file textbuf_gui.h Stuff related to the text buffer GUI. */
|
|
|
|
#ifndef TEXTBUF_GUI_H
|
|
#define TEXTBUF_GUI_H
|
|
|
|
#include "window_type.h"
|
|
#include "string_type.h"
|
|
#include "strings_type.h"
|
|
|
|
/** Flags used in ShowQueryString() call */
|
|
enum QueryStringFlags {
|
|
QSF_NONE = 0,
|
|
QSF_ACCEPT_UNCHANGED = 0x01, ///< return success even when the text didn't change
|
|
QSF_ENABLE_DEFAULT = 0x02, ///< enable the 'Default' button ("\0" is returned)
|
|
QSF_LEN_IN_CHARS = 0x04, ///< the length of the string is counted in characters
|
|
QSF_PASSWORD = 0x08, ///< password entry box, show warning about password security
|
|
};
|
|
|
|
DECLARE_ENUM_AS_BIT_SET(QueryStringFlags)
|
|
|
|
/** Callback procedure for the ShowQuery method. */
|
|
typedef void QueryCallbackProc(Window*, bool);
|
|
|
|
void ShowQueryString(StringID str, StringID caption, uint max_len, Window *parent, CharSetFilter afilter, QueryStringFlags flags);
|
|
void ShowQuery(StringID caption, StringID message, Window *w, QueryCallbackProc *callback, bool focus = false);
|
|
void ShowQuery(std::string caption, std::string message, Window *parent, QueryCallbackProc *callback, bool focus = false);
|
|
|
|
/** The number of 'characters' on the on-screen keyboard. */
|
|
static const uint OSK_KEYBOARD_ENTRIES = 50;
|
|
|
|
/**
|
|
* The number of characters has to be OSK_KEYBOARD_ENTRIES. However, these
|
|
* have to be UTF-8 encoded, which means up to 4 bytes per character.
|
|
*/
|
|
extern std::string _keyboard_opt[2];
|
|
|
|
#endif /* TEXTBUF_GUI_H */
|