2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
#ifndef IRR_C_GUI_EDIT_BOX_H_INCLUDED
|
|
|
|
#define IRR_C_GUI_EDIT_BOX_H_INCLUDED
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
#ifdef _IRR_COMPILE_WITH_GUI_
|
|
|
|
|
|
|
|
#include "IGUIEditBox.h"
|
|
|
|
#include "irrArray.h"
|
|
|
|
#include "IOSOperator.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace gui
|
|
|
|
{
|
|
|
|
class CGUIEditBox : public IGUIEditBox
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! constructor
|
|
|
|
CGUIEditBox(const wchar_t* text, bool border, IGUIEnvironment* environment,
|
|
|
|
IGUIElement* parent, s32 id, const core::rect<s32>& rectangle);
|
|
|
|
|
|
|
|
//! destructor
|
|
|
|
virtual ~CGUIEditBox();
|
|
|
|
|
|
|
|
//! Sets another skin independent font.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setOverrideFont(IGUIFont* font=0) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Gets the override font (if any)
|
|
|
|
/** \return The override font (may be 0) */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual IGUIFont* getOverrideFont() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Get the font which is used right now for drawing
|
|
|
|
/** Currently this is the override font when one is set and the
|
|
|
|
font of the active skin otherwise */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual IGUIFont* getActiveFont() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets another color for the text.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setOverrideColor(video::SColor color) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Gets the override color
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual video::SColor getOverrideColor() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets if the text should use the override color or the
|
|
|
|
//! color in the gui skin.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void enableOverrideColor(bool enable) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Checks if an override color is enabled
|
|
|
|
/** \return true if the override color is enabled, false otherwise */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isOverrideColorEnabled(void) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets whether to draw the background
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setDrawBackground(bool draw) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Checks if background drawing is enabled
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isDrawBackgroundEnabled() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Turns the border on or off
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setDrawBorder(bool border) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Checks if border drawing is enabled
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isDrawBorderEnabled() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Enables or disables word wrap for using the edit box as multiline text editor.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setWordWrap(bool enable) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Checks if word wrap is enabled
|
|
|
|
//! \return true if word wrap is enabled, false otherwise
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isWordWrapEnabled() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Enables or disables newlines.
|
|
|
|
/** \param enable: If set to true, the EGET_EDITBOX_ENTER event will not be fired,
|
|
|
|
instead a newline character will be inserted. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setMultiLine(bool enable) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Checks if multi line editing is enabled
|
|
|
|
//! \return true if mult-line is enabled, false otherwise
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isMultiLineEnabled() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Enables or disables automatic scrolling with cursor position
|
|
|
|
//! \param enable: If set to true, the text will move around with the cursor position
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setAutoScroll(bool enable) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Checks to see if automatic scrolling is enabled
|
|
|
|
//! \return true if automatic scrolling is enabled, false if not
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isAutoScrollEnabled() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Gets the size area of the text in the edit box
|
|
|
|
//! \return Returns the size in pixels of the text
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual core::dimension2du getTextDimension() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets text justification
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setTextAlignment(EGUI_ALIGNMENT horizontal, EGUI_ALIGNMENT vertical) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! called if an event happened.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool OnEvent(const SEvent& event) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! draws the element and its children
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void draw() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets the new caption of this element.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setText(const wchar_t* text) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets the maximum amount of characters which may be entered in the box.
|
|
|
|
//! \param max: Maximum amount of characters. If 0, the character amount is
|
|
|
|
//! infinity.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setMax(u32 max) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns maximum amount of characters, previously set by setMax();
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual u32 getMax() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Set the character used for the cursor.
|
|
|
|
/** By default it's "_" */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setCursorChar(const wchar_t cursorChar) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Get the character used for the cursor.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual wchar_t getCursorChar() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Set the blinktime for the cursor. 2x blinktime is one full cycle.
|
|
|
|
//** \param timeMs Blinktime in milliseconds. When set to 0 the cursor is constantly on without blinking */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setCursorBlinkTime(irr::u32 timeMs) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Get the cursor blinktime
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual irr::u32 getCursorBlinkTime() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets whether the edit box is a password box. Setting this to true will
|
|
|
|
/** disable MultiLine, WordWrap and the ability to copy with ctrl+c or ctrl+x
|
|
|
|
\param passwordBox: true to enable password, false to disable
|
|
|
|
\param passwordChar: the character that is displayed instead of letters */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setPasswordBox(bool passwordBox, wchar_t passwordChar = L'*') IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns true if the edit box is currently a password box.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isPasswordBox() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Updates the absolute position, splits text if required
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void updateAbsolutePosition() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Writes attributes of the element.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Reads attributes of the element
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
//! Breaks the single text line.
|
|
|
|
void breakText();
|
|
|
|
//! sets the area of the given line
|
|
|
|
void setTextRect(s32 line);
|
|
|
|
//! returns the line number that the cursor is on
|
|
|
|
s32 getLineFromPos(s32 pos);
|
|
|
|
//! adds a letter to the edit box
|
|
|
|
void inputChar(wchar_t c);
|
|
|
|
//! calculates the current scroll position
|
|
|
|
void calculateScrollPos();
|
|
|
|
//! calculated the FrameRect
|
|
|
|
void calculateFrameRect();
|
|
|
|
//! send some gui event to parent
|
|
|
|
void sendGuiEvent(EGUI_EVENT_TYPE type);
|
|
|
|
//! set text markers
|
|
|
|
void setTextMarkers(s32 begin, s32 end);
|
|
|
|
//! delete current selection or next char
|
|
|
|
bool keyDelete();
|
|
|
|
|
|
|
|
bool processKey(const SEvent& event);
|
|
|
|
bool processMouse(const SEvent& event);
|
|
|
|
s32 getCursorPos(s32 x, s32 y);
|
|
|
|
|
|
|
|
bool OverwriteMode;
|
|
|
|
bool MouseMarking;
|
|
|
|
bool Border;
|
|
|
|
bool Background;
|
|
|
|
bool OverrideColorEnabled;
|
|
|
|
s32 MarkBegin;
|
|
|
|
s32 MarkEnd;
|
|
|
|
|
|
|
|
video::SColor OverrideColor;
|
|
|
|
gui::IGUIFont *OverrideFont, *LastBreakFont;
|
|
|
|
IOSOperator* Operator;
|
|
|
|
|
|
|
|
u32 BlinkStartTime;
|
|
|
|
irr::u32 CursorBlinkTime;
|
|
|
|
core::stringw CursorChar; // IGUIFont::draw needs stringw instead of wchar_t
|
|
|
|
s32 CursorPos;
|
|
|
|
s32 HScrollPos, VScrollPos; // scroll position in characters
|
|
|
|
u32 Max;
|
|
|
|
|
|
|
|
bool WordWrap, MultiLine, AutoScroll, PasswordBox;
|
|
|
|
wchar_t PasswordChar;
|
|
|
|
EGUI_ALIGNMENT HAlign, VAlign;
|
|
|
|
|
|
|
|
core::array< core::stringw > BrokenText;
|
|
|
|
core::array< s32 > BrokenTextPositions;
|
|
|
|
|
|
|
|
core::rect<s32> CurrentTextRect, FrameRect; // temporary values
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace gui
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif // _IRR_COMPILE_WITH_GUI_
|
2021-08-27 17:55:04 +02:00
|
|
|
#endif // IRR_C_GUI_EDIT_BOX_H_INCLUDED
|