2007-12-19 20:45:46 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/** @file textbuf_gui.h Stuff related to the text buffer GUI. */
|
|
|
|
|
|
|
|
#ifndef TEXTBUF_GUI_H
|
|
|
|
#define TEXTBUF_GUI_H
|
|
|
|
|
|
|
|
#include "window_type.h"
|
2008-01-07 14:23:25 +00:00
|
|
|
#include "string_type.h"
|
2008-03-26 10:08:17 +00:00
|
|
|
#include "strings_type.h"
|
2008-09-15 16:29:40 +00:00
|
|
|
#include "core/enum_type.hpp"
|
2007-12-19 20:45:46 +00:00
|
|
|
|
|
|
|
struct Textbuf {
|
|
|
|
char *buf; ///< buffer in which text is saved
|
|
|
|
uint16 maxlength, maxwidth; ///< the maximum size of the buffer. Maxwidth specifies screensize in pixels, maxlength is in bytes
|
|
|
|
uint16 length, width; ///< the current size of the string. Width specifies screensize in pixels, length is in bytes
|
|
|
|
bool caret; ///< is the caret ("_") visible or not
|
|
|
|
uint16 caretpos; ///< the current position of the caret in the buffer, in bytes
|
|
|
|
uint16 caretxoffs; ///< the current position of the caret in pixels
|
|
|
|
};
|
|
|
|
|
|
|
|
bool HandleCaret(Textbuf *tb);
|
|
|
|
|
|
|
|
void DeleteTextBufferAll(Textbuf *tb);
|
|
|
|
bool DeleteTextBufferChar(Textbuf *tb, int delmode);
|
|
|
|
bool InsertTextBufferChar(Textbuf *tb, uint32 key);
|
|
|
|
bool InsertTextBufferClipboard(Textbuf *tb);
|
|
|
|
bool MoveTextBufferPos(Textbuf *tb, int navmode);
|
|
|
|
void InitializeTextBuffer(Textbuf *tb, const char *buf, uint16 maxlength, uint16 maxwidth);
|
|
|
|
void UpdateTextBufferSize(Textbuf *tb);
|
|
|
|
|
2008-09-15 16:29:40 +00:00
|
|
|
/** Flags used in ShowQueryString() call */
|
|
|
|
enum QueryStringFlags {
|
2008-09-15 19:02:50 +00:00
|
|
|
QSF_NONE = 0,
|
2008-09-15 16:29:40 +00:00
|
|
|
QSF_ACCEPT_UNCHANGED = 0x01, ///< return success even when the text didn't change
|
2008-09-15 19:02:50 +00:00
|
|
|
QSF_ENABLE_DEFAULT = 0x02, ///< enable the 'Default' button ("\0" is returned)
|
2008-09-15 16:29:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
DECLARE_ENUM_AS_BIT_SET(QueryStringFlags)
|
|
|
|
|
|
|
|
|
2008-05-19 19:17:56 +00:00
|
|
|
typedef void QueryCallbackProc(Window*, bool);
|
|
|
|
|
2008-09-15 16:29:40 +00:00
|
|
|
void ShowQueryString(StringID str, StringID caption, uint maxlen, uint maxwidth, Window *parent, CharSetFilter afilter, QueryStringFlags flags);
|
2008-05-19 19:17:56 +00:00
|
|
|
void ShowQuery(StringID caption, StringID message, Window *w, QueryCallbackProc *callback);
|
2007-12-19 20:45:46 +00:00
|
|
|
|
2008-03-26 10:08:17 +00:00
|
|
|
/** 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.
|
|
|
|
* Furthermore the string needs to be '\0'-terminated.
|
|
|
|
*/
|
|
|
|
extern char _keyboard_opt[2][OSK_KEYBOARD_ENTRIES * 4 + 1];
|
|
|
|
|
2007-12-19 20:45:46 +00:00
|
|
|
#endif /* TEXTBUF_GUI_H */
|