123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- #include "CFEKeyboard.h"
- #include "AndroidApp.h"
- #include "SYSCORE.h"
- #include "CFE.h"
- #include "SYS.h"
- #include "XCTRL.h"
- bool CFEKeyboard::ms_bShowKeyboard; //0034A930
- //-------------------------------------------------------------------------------------------------
- //0011FFEC
- CFEKeyboard::CFEKeyboard(bool a2, const wchar_t *a3, EKeyboardType a4, float a5, bool a6) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120324
- CFEKeyboard::~CFEKeyboard() {
- }
- //-------------------------------------------------------------------------------------------------
- //00120220
- void CFEKeyboard::Show() {
- }
- //-------------------------------------------------------------------------------------------------
- //00120274
- void CFEKeyboard::SetString(wchar_t const *a2) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120320
- void CFEKeyboard::Setup() {
- //empty
- }
- //-------------------------------------------------------------------------------------------------
- //00120378
- void CFEKeyboard::Hide() {
- LOGE("CFEKeyboard::Hide%p",this);
- }
- //-------------------------------------------------------------------------------------------------
- //001203CC
- void CFEKeyboard::RecalculateRowOffsets() {
- //empty
- }
- //-------------------------------------------------------------------------------------------------
- //001203CE
- void CFEKeyboard::SetPlaceHolderText(wchar_t const *) {
- //empty
- }
- //-------------------------------------------------------------------------------------------------
- //001203D0
- int CFEKeyboard::Process() {
- return 1;
- }
- //-------------------------------------------------------------------------------------------------
- //00120710 //^_^
- void CFEKeyboard::ToggleKeyboard() {
- }
- //-------------------------------------------------------------------------------------------------
- //00120758
- void CFEKeyboard::BackSpace() {
- }
- //-------------------------------------------------------------------------------------------------
- //00120778
- void CFEKeyboard::GetStringLength() {
- }
- //-------------------------------------------------------------------------------------------------
- //001207C0
- void CFEKeyboard::Space() {
- }
- //-------------------------------------------------------------------------------------------------
- //001207F4 //^_^
- void CFEKeyboard::Render() {
- }
- //-------------------------------------------------------------------------------------------------
- //00120848
- void CFEKeyboard::CheckMinimumLength() {
- }
- //-------------------------------------------------------------------------------------------------
- //0012089c ^_^
- const wchar_t *CFEKeyboard::GetString() {
- return NULL;
- }
- //-------------------------------------------------------------------------------------------------
- //00120928
- void CFEKeyboard::ClearTextfieldOnBeginEdit(bool) {
- //empty
- }
- //-------------------------------------------------------------------------------------------------
- //0012092C
- //0012092c ^_^
- void CFEKeyboard::SetMaxNumChars(int a2) {
- }
- //-------------------------------------------------------------------------------------------------
- //0012097C
- void CFEKeyboard::GetKeyRect(uchar, TRectI *, bool) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120E00
- int CFEKeyboard::GetKeyArrayIndex(uchar a1) {
- return a1 - 6;
- }
- //-------------------------------------------------------------------------------------------------
- //00120E06
- void CFEKeyboard::RenderKey(uchar, bool) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120E08
- void CFEKeyboard::RenderCursor(float, float, wchar_t *, uint) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120E6C
- void CFEKeyboard::GetKeyTexture(TImage *, uchar) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120EA8
- void CFEKeyboard::GetKeyTextureHandle(TImage *, uchar) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120EE4
- void CFEKeyboard::GetKey(uchar, uchar) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120EF2
- void CFEKeyboard::HideTextField() {
- field_850 = 0;
- }
- //-------------------------------------------------------------------------------------------------
- //00120EFA
- void CFEKeyboard::HideIfNeeded() {
- }
- //-------------------------------------------------------------------------------------------------
- //00120F12
- void CFEKeyboard::ShowTextField() {
- }
- //-------------------------------------------------------------------------------------------------
- //00120F1A
- void CFEKeyboard::SetEnteringPassword(bool) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120F20
- void CFEKeyboard::ShowKeyboard(bool b0) {
- }
- //-------------------------------------------------------------------------------------------------
- //00120f30 ^_^
- bool CFEKeyboard::IsShowing() {
- return false;
- }
- //-------------------------------------------------------------------------------------------------
|