CFEKeyboard.cpp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. }
  33. //-------------------------------------------------------------------------------------------------
  34. //001203CC
  35. void CFEKeyboard::RecalculateRowOffsets() {
  36. //empty
  37. }
  38. //-------------------------------------------------------------------------------------------------
  39. //001203CE
  40. void CFEKeyboard::SetPlaceHolderText(wchar_t const *) {
  41. //empty
  42. }
  43. //-------------------------------------------------------------------------------------------------
  44. //001203D0
  45. int CFEKeyboard::Process() {
  46. return 1;
  47. }
  48. //-------------------------------------------------------------------------------------------------
  49. //00120710 //^_^
  50. void CFEKeyboard::ToggleKeyboard() {
  51. }
  52. //-------------------------------------------------------------------------------------------------
  53. //00120758
  54. void CFEKeyboard::BackSpace() {
  55. }
  56. //-------------------------------------------------------------------------------------------------
  57. //00120778
  58. void CFEKeyboard::GetStringLength() {
  59. }
  60. //-------------------------------------------------------------------------------------------------
  61. //001207C0
  62. void CFEKeyboard::Space() {
  63. }
  64. //-------------------------------------------------------------------------------------------------
  65. //001207F4 //^_^
  66. void CFEKeyboard::Render() {
  67. }
  68. //-------------------------------------------------------------------------------------------------
  69. //00120848
  70. void CFEKeyboard::CheckMinimumLength() {
  71. }
  72. //-------------------------------------------------------------------------------------------------
  73. //0012089c ^_^
  74. const wchar_t *CFEKeyboard::GetString() {
  75. return NULL;
  76. }
  77. //-------------------------------------------------------------------------------------------------
  78. //00120928
  79. void CFEKeyboard::ClearTextfieldOnBeginEdit(bool) {
  80. //empty
  81. }
  82. //-------------------------------------------------------------------------------------------------
  83. //0012092C
  84. //0012092c ^_^
  85. void CFEKeyboard::SetMaxNumChars(int a2) {
  86. }
  87. //-------------------------------------------------------------------------------------------------
  88. //0012097C
  89. void CFEKeyboard::GetKeyRect(uchar, TRectI *, bool) {
  90. }
  91. //-------------------------------------------------------------------------------------------------
  92. //00120E00
  93. int CFEKeyboard::GetKeyArrayIndex(uchar a1) {
  94. return a1 - 6;
  95. }
  96. //-------------------------------------------------------------------------------------------------
  97. //00120E06
  98. void CFEKeyboard::RenderKey(uchar, bool) {
  99. }
  100. //-------------------------------------------------------------------------------------------------
  101. //00120E08
  102. void CFEKeyboard::RenderCursor(float, float, wchar_t *, uint) {
  103. }
  104. //-------------------------------------------------------------------------------------------------
  105. //00120E6C
  106. void CFEKeyboard::GetKeyTexture(TImage *, uchar) {
  107. }
  108. //-------------------------------------------------------------------------------------------------
  109. //00120EA8
  110. void CFEKeyboard::GetKeyTextureHandle(TImage *, uchar) {
  111. }
  112. //-------------------------------------------------------------------------------------------------
  113. //00120EE4
  114. void CFEKeyboard::GetKey(uchar, uchar) {
  115. }
  116. //-------------------------------------------------------------------------------------------------
  117. //00120EF2
  118. void CFEKeyboard::HideTextField() {
  119. field_850 = 0;
  120. }
  121. //-------------------------------------------------------------------------------------------------
  122. //00120EFA
  123. void CFEKeyboard::HideIfNeeded() {
  124. }
  125. //-------------------------------------------------------------------------------------------------
  126. //00120F12
  127. void CFEKeyboard::ShowTextField() {
  128. }
  129. //-------------------------------------------------------------------------------------------------
  130. //00120F1A
  131. void CFEKeyboard::SetEnteringPassword(bool) {
  132. }
  133. //-------------------------------------------------------------------------------------------------
  134. //00120F20
  135. void CFEKeyboard::ShowKeyboard(bool b0) {
  136. }
  137. //-------------------------------------------------------------------------------------------------
  138. //00120f30 ^_^
  139. bool CFEKeyboard::IsShowing() {
  140. return false;
  141. }
  142. //-------------------------------------------------------------------------------------------------