CFEKeyboard.cpp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. #include "CFEKeyboard.h"
  2. #include "AndroidApp.h"
  3. #include "SYSCORE.h"
  4. #include "CFE.h"
  5. #include "SYS.h"
  6. #include "XCTRL.h"
  7. bool CFEKeyboard::ms_bShowKeyboard; //0034A930
  8. //-------------------------------------------------------------------------------------------------
  9. //0011FFEC
  10. CFEKeyboard::CFEKeyboard(bool a2, const wchar_t *a3, EKeyboardType a4, float a5, bool a6) {
  11. }
  12. //-------------------------------------------------------------------------------------------------
  13. //00120324
  14. CFEKeyboard::~CFEKeyboard() {
  15. }
  16. //-------------------------------------------------------------------------------------------------
  17. //00120220
  18. void CFEKeyboard::Show() {
  19. }
  20. //-------------------------------------------------------------------------------------------------
  21. //00120274
  22. void CFEKeyboard::SetString(wchar_t const *a2) {
  23. }
  24. //-------------------------------------------------------------------------------------------------
  25. //00120320
  26. void CFEKeyboard::Setup() {
  27. //empty
  28. }
  29. //-------------------------------------------------------------------------------------------------
  30. //00120378
  31. void CFEKeyboard::Hide() {
  32. LOGE("CFEKeyboard::Hide%p",this);
  33. }
  34. //-------------------------------------------------------------------------------------------------
  35. //001203CC
  36. void CFEKeyboard::RecalculateRowOffsets() {
  37. //empty
  38. }
  39. //-------------------------------------------------------------------------------------------------
  40. //001203CE
  41. void CFEKeyboard::SetPlaceHolderText(wchar_t const *) {
  42. //empty
  43. }
  44. //-------------------------------------------------------------------------------------------------
  45. //001203D0
  46. int CFEKeyboard::Process() {
  47. return 1;
  48. }
  49. //-------------------------------------------------------------------------------------------------
  50. //00120710 //^_^
  51. void CFEKeyboard::ToggleKeyboard() {
  52. }
  53. //-------------------------------------------------------------------------------------------------
  54. //00120758
  55. void CFEKeyboard::BackSpace() {
  56. }
  57. //-------------------------------------------------------------------------------------------------
  58. //00120778
  59. void CFEKeyboard::GetStringLength() {
  60. }
  61. //-------------------------------------------------------------------------------------------------
  62. //001207C0
  63. void CFEKeyboard::Space() {
  64. }
  65. //-------------------------------------------------------------------------------------------------
  66. //001207F4 //^_^
  67. void CFEKeyboard::Render() {
  68. }
  69. //-------------------------------------------------------------------------------------------------
  70. //00120848
  71. void CFEKeyboard::CheckMinimumLength() {
  72. }
  73. //-------------------------------------------------------------------------------------------------
  74. //0012089c ^_^
  75. const wchar_t *CFEKeyboard::GetString() {
  76. return NULL;
  77. }
  78. //-------------------------------------------------------------------------------------------------
  79. //00120928
  80. void CFEKeyboard::ClearTextfieldOnBeginEdit(bool) {
  81. //empty
  82. }
  83. //-------------------------------------------------------------------------------------------------
  84. //0012092C
  85. //0012092c ^_^
  86. void CFEKeyboard::SetMaxNumChars(int a2) {
  87. }
  88. //-------------------------------------------------------------------------------------------------
  89. //0012097C
  90. void CFEKeyboard::GetKeyRect(uchar, TRectI *, bool) {
  91. }
  92. //-------------------------------------------------------------------------------------------------
  93. //00120E00
  94. int CFEKeyboard::GetKeyArrayIndex(uchar a1) {
  95. return a1 - 6;
  96. }
  97. //-------------------------------------------------------------------------------------------------
  98. //00120E06
  99. void CFEKeyboard::RenderKey(uchar, bool) {
  100. }
  101. //-------------------------------------------------------------------------------------------------
  102. //00120E08
  103. void CFEKeyboard::RenderCursor(float, float, wchar_t *, uint) {
  104. }
  105. //-------------------------------------------------------------------------------------------------
  106. //00120E6C
  107. void CFEKeyboard::GetKeyTexture(TImage *, uchar) {
  108. }
  109. //-------------------------------------------------------------------------------------------------
  110. //00120EA8
  111. void CFEKeyboard::GetKeyTextureHandle(TImage *, uchar) {
  112. }
  113. //-------------------------------------------------------------------------------------------------
  114. //00120EE4
  115. void CFEKeyboard::GetKey(uchar, uchar) {
  116. }
  117. //-------------------------------------------------------------------------------------------------
  118. //00120EF2
  119. void CFEKeyboard::HideTextField() {
  120. field_850 = 0;
  121. }
  122. //-------------------------------------------------------------------------------------------------
  123. //00120EFA
  124. void CFEKeyboard::HideIfNeeded() {
  125. }
  126. //-------------------------------------------------------------------------------------------------
  127. //00120F12
  128. void CFEKeyboard::ShowTextField() {
  129. }
  130. //-------------------------------------------------------------------------------------------------
  131. //00120F1A
  132. void CFEKeyboard::SetEnteringPassword(bool) {
  133. }
  134. //-------------------------------------------------------------------------------------------------
  135. //00120F20
  136. void CFEKeyboard::ShowKeyboard(bool b0) {
  137. }
  138. //-------------------------------------------------------------------------------------------------
  139. //00120f30 ^_^
  140. bool CFEKeyboard::IsShowing() {
  141. return false;
  142. }
  143. //-------------------------------------------------------------------------------------------------