📄 ceguieditbox.h
字号:
/***********************************************************************
filename: CEGUIEditbox.h
created: 13/4/2004
author: Paul D Turner
purpose: Interface to base class for Editbox widget
*************************************************************************/
/***************************************************************************
* Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
***************************************************************************/
#ifndef _CEGUIEditbox_h_
#define _CEGUIEditbox_h_
#include "CEGUIBase.h"
#include "CEGUIWindow.h"
#include "elements/CEGUIEditboxProperties.h"
#if defined(_MSC_VER)
# pragma warning(push)
# pragma warning(disable : 4251)
#endif
// Start of CEGUI namespace section
namespace CEGUI
{
// forward declare implementation data type
struct RegexValidator;
/*!
\brief
Base class for the EditboxWindowRenderer class
*/
class CEGUIEXPORT EditboxWindowRenderer : public WindowRenderer
{
public:
/*!
\brief
Constructor
*/
EditboxWindowRenderer(const String& name);
/*!
\brief
Return the text code point index that is rendered closest to screen position \a pt.
\param pt
Point object describing a position on the screen in pixels.
\return
Code point index into the text that is rendered closest to screen position \a pt.
*/
virtual size_t getTextIndexFromPosition(const Point& pt) const = 0;
};
/*!
\brief
Base class for an Editbox widget
*/
class CEGUIEXPORT Editbox : public Window
{
public:
static const String EventNamespace; //!< Namespace for global events
static const String WidgetTypeName; //!< Window factory name
/*************************************************************************
Event name constants
*************************************************************************/
static const String EventReadOnlyModeChanged; //!< The read-only mode for the edit box has been changed.
static const String EventMaskedRenderingModeChanged; //!< The masked rendering mode (password mode) has been changed.
static const String EventMaskCodePointChanged; //!< The code point (character) to use for masked text has been changed.
static const String EventValidationStringChanged; //!< The validation string has been changed.
static const String EventMaximumTextLengthChanged; //!< The maximum allowable string length has been changed.
static const String EventTextInvalidated; //!< Some operation has made the current text invalid with regards to the validation string.
static const String EventInvalidEntryAttempted; //!< The user attempted to modify the text in a way that would have made it invalid.
static const String EventCaratMoved; //!< The text carat (insert point) has changed.
static const String EventTextSelectionChanged; //!< The current text selection has changed.
static const String EventEditboxFull; //!< The number of characters in the edit box has reached the current maximum.
static const String EventTextAccepted; //!< The user has accepted the current text by pressing Return, Enter, or Tab.
/*************************************************************************
Accessor Functions
*************************************************************************/
/*!
\brief
return true if the Editbox has input focus.
\return
true if the Editbox has keyboard input focus, false if the Editbox does not have keyboard input focus.
*/
bool hasInputFocus(void) const;
/*!
\brief
return true if the Editbox is read-only.
\return
true if the Editbox is read only and can't be edited by the user, false if the Editbox is not
read only and may be edited by the user.
*/
bool isReadOnly(void) const {return d_readOnly;}
/*!
\brief
return true if the text for the Editbox will be rendered masked.
\return
true if the Editbox text will be rendered masked using the currently set mask code point, false if the Editbox
text will be rendered as plain text.
*/
bool isTextMasked(void) const {return d_maskText;}
/*!
\brief
return true if the Editbox text is valid given the currently set validation string.
\note
It is possible to programmatically set 'invalid' text for the Editbox by calling setText. This has certain
implications since if invalid text is set, whatever the user types into the box will be rejected when the input
is validated.
\note
Validation is performed by means of a regular expression. If the text matches the regex, the text is said to have passed
validation. If the text does not match with the regex then the text fails validation.
\return
true if the current Editbox text passes validation, false if the text does not pass validation.
*/
bool isTextValid(void) const;
/*!
\brief
return the currently set validation string
\note
Validation is performed by means of a regular expression. If the text matches the regex, the text is said to have passed
validation. If the text does not match with the regex then the text fails validation.
\return
String object containing the current validation regex data
*/
const String& getValidationString(void) const {return d_validationString;}
/*!
\brief
return the current position of the carat.
\return
Index of the insert carat relative to the start of the text.
*/
size_t getCaratIndex(void) const {return d_caratPos;}
/*!
\brief
return the current selection start point.
\return
Index of the selection start point relative to the start of the text. If no selection is defined this function returns
the position of the carat.
*/
size_t getSelectionStartIndex(void) const;
/*!
\brief
return the current selection end point.
\return
Index of the selection end point relative to the start of the text. If no selection is defined this function returns
the position of the carat.
*/
size_t getSelectionEndIndex(void) const;
/*!
\brief
return the length of the current selection (in code points / characters).
\return
Number of code points (or characters) contained within the currently defined selection.
*/
size_t getSelectionLength(void) const;
/*!
\brief
return the utf32 code point used when rendering masked text.
\return
utf32 code point value representing the Unicode code point that will be rendered instead of the Editbox text
when rendering in masked mode.
*/
utf32 getMaskCodePoint(void) const {return d_maskCodePoint;}
/*!
\brief
return the maximum text length set for this Editbox.
\return
The maximum number of code points (characters) that can be entered into this Editbox.
\note
Depending on the validation string set, the actual length of text that can be entered may be less than the value
returned here (it will never be more).
*/
size_t getMaxTextLength(void) const {return d_maxTextLen;}
/*************************************************************************
Manipulators
*************************************************************************/
/*!
\brief
Specify whether the Editbox is read-only.
\param setting
true if the Editbox is read only and can't be edited by the user, false if the Editbox is not
read only and may be edited by the user.
\return
Nothing.
*/
void setReadOnly(bool setting);
/*!
\brief
Specify whether the text for the Editbox will be rendered masked.
\param setting
true if the Editbox text should be rendered masked using the currently set mask code point, false if the Editbox
text should be rendered as plain text.
\return
Nothing.
*/
void setTextMasked(bool setting);
/*!
\brief
Set the text validation string.
\note
Validation is performed by means of a regular expression. If the text matches the regex, the text is said to have passed
validation. If the text does not match with the regex then the text fails validation.
\param validation_string
String object containing the validation regex data to be used.
\return
Nothing.
*/
void setValidationString(const String& validation_string);
/*!
\brief
Set the current position of the carat.
\param carat_pos
New index for the insert carat relative to the start of the text. If the value specified is greater than the
number of characters in the Editbox, the carat is positioned at the end of the text.
\return
Nothing.
*/
void setCaratIndex(size_t carat_pos);
/*!
\brief
Define the current selection for the Editbox
\param start_pos
Index of the starting point for the selection. If this value is greater than the number of characters in the Editbox, the
selection start will be set to the end of the text.
\param end_pos
Index of the ending point for the selection. If this value is greater than the number of characters in the Editbox, the
selection end will be set to the end of the text.
\return
Nothing.
*/
void setSelection(size_t start_pos, size_t end_pos);
/*!
\brief
set the utf32 code point used when rendering masked text.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -