Pre-resize fillparent

This commit is contained in:
2018-08-13 22:22:10 -04:00
parent 58fa6f0503
commit 353dc21750
95 changed files with 478 additions and 437 deletions
@@ -3,7 +3,7 @@
using InputEngine::cTextInput;
cTextInput::cTextInput()
: cKeyboard("TextInput"), m_text(""), m_caps(false), m_shift(false), INTERNATIONAL_MASK(0xFF80), UNICODE_MASK(0x7F)
: cKeyboard("TextInput"), m_text(""), m_caps(false), m_shift(false), INTERNATIONAL_MASK(0xFF80), UNICODE_MASK(0x7F)
{
/*if (SDL_EnableUNICODE(SDL_QUERY) != SDL_ENABLE) {
SDL_EnableUNICODE(SDL_ENABLE);
@@ -21,7 +21,7 @@ cTextInput::cTextInput( const cTextInput& copy )
/*virtual*/ cTextInput::~cTextInput()
{}
///Functions
/// Functions
/* */
/*virtual*/ void cTextInput::KeyboardCheck( const SDL_Event& event )
{
@@ -49,19 +49,19 @@ void cTextInput::ClearText()
m_text = "";
}
///Sets
/// Sets
void cTextInput::setText( const cString& text )
{
m_text = text;
}
///Gets
/// Gets
const cString& cTextInput::getText() const
{
return m_text;
}
//Private
/// private
const char cTextInput::UnicodeValue( const SDL_Event& event )
{
event;