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
@@ -24,27 +24,27 @@ namespace InputEngine {
cTextInput( const cTextInput& copy );
virtual ~cTextInput();
///Functions
/// Functions
/* */
virtual void KeyboardCheck( const SDL_Event& event );
/* Clears out the Text */
void ClearText();
///Sets
/// Sets
void setText( const cString& text );
///Gets
/// Gets
const cString& getText() const;
private:
const char UnicodeValue( const SDL_Event& event );
private:
cString m_text;// = ""
bool m_caps;// = false
bool m_shift;// = false
cString m_text;/// = ""
bool m_caps;/// = false
bool m_shift;/// = false
// magic numbers courtesy of SDL docs
const unsigned long int INTERNATIONAL_MASK;// = 0xFF80
const unsigned long int UNICODE_MASK;// = 0x7F
/// magic numbers courtesy of SDL docs
const unsigned long int INTERNATIONAL_MASK;/// = 0xFF80
const unsigned long int UNICODE_MASK;/// = 0x7F
};/// END CLASS DEFINITION cTextInput
}/// END NAMESPACE DEFINITION InputEngine
#endif/// END IFNDEF _CTEXTINPUT_HPP_