mirror of
https://github.com/luanti-org/luanti.git
synced 2025-09-30 19:22:14 +00:00
Remove irr
namespace (#16309)
This commit is contained in:
parent
7e22c72492
commit
61551cfc3a
381 changed files with 680 additions and 1632 deletions
|
@ -8,8 +8,6 @@
|
|||
#include "irrArray.h"
|
||||
#include "IOSOperator.h"
|
||||
|
||||
namespace irr
|
||||
{
|
||||
namespace gui
|
||||
{
|
||||
class CGUIEditBox : public IGUIEditBox
|
||||
|
@ -117,10 +115,10 @@ public:
|
|||
|
||||
//! 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 */
|
||||
void setCursorBlinkTime(irr::u32 timeMs) override;
|
||||
void setCursorBlinkTime(u32 timeMs) override;
|
||||
|
||||
//! Get the cursor blinktime
|
||||
irr::u32 getCursorBlinkTime() const override;
|
||||
u32 getCursorBlinkTime() const override;
|
||||
|
||||
//! 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
|
||||
|
@ -176,7 +174,7 @@ protected:
|
|||
IOSOperator *Operator;
|
||||
|
||||
u32 BlinkStartTime;
|
||||
irr::u32 CursorBlinkTime;
|
||||
u32 CursorBlinkTime;
|
||||
core::stringw CursorChar; // IGUIFont::draw needs stringw instead of wchar_t
|
||||
s32 CursorPos;
|
||||
s32 HScrollPos, VScrollPos; // scroll position in characters
|
||||
|
@ -193,4 +191,3 @@ protected:
|
|||
};
|
||||
|
||||
} // end namespace gui
|
||||
} // end namespace irr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue