11 #include "guilib/GUIKeyboard.h"    20                        const std::string& initialString,
    21                        std::string& typedString,
    22                        const std::string& heading,
    23                        bool bHiddenInput) 
override;
    25   void fireCallback(
const std::string& str);
    26   void invalidateCallback();
    27   bool SetTextToKeyboard(
const std::string& text, 
bool closeKeyboard = 
false) 
override;
    29   static bool hasExternalKeyboard();
    32   char_callback_t m_pCharCallback = 
nullptr;
    33   bool m_canceled = 
false;
    34   std::unique_ptr<CDarwinEmbedKeyboardImpl> m_impl;
 void Cancel() override
This call should cancel a currently shown keyboard dialog. The implementation should return false fro...
Definition: DarwinEmbedKeyboard.mm:100
Definition: DarwinEmbedKeyboard.mm:29
Definition: GUIKeyboard.h:24
Definition: DarwinEmbedKeyboard.h:15
bool ShowAndGetInput(char_callback_t pCallback, const std::string &initialString, std::string &typedString, const std::string &heading, bool bHiddenInput) override
each native keyboard needs to implement this function with the following behaviour: ...
Definition: DarwinEmbedKeyboard.mm:39