Pre-resize fillparent
This commit is contained in:
@@ -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_
|
||||
|
||||
Reference in New Issue
Block a user