Merge pull request #3850 from zhaowenlan1779/swkbd

applets/swkbd: Software Keyboard Implementation
This commit is contained in:
James Rowe 2018-07-17 09:02:55 -06:00 committed by GitHub
commit bf6da61da5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 774 additions and 34 deletions

View file

@ -199,6 +199,10 @@ const Service::SM::ServiceManager& System::ServiceManager() const {
return *service_manager;
}
void System::RegisterSoftwareKeyboard(std::shared_ptr<Frontend::SoftwareKeyboard> swkbd) {
registered_swkbd = std::move(swkbd);
}
void System::Shutdown() {
// Log last frame performance stats
auto perf_results = GetAndResetPerfStats();