Lines Matching defs:AceAbility
22 AceAbility::AceAbility(const AceRunArgs& runArgs) : runArgs_(runArgs) {}
24 AceAbility::~AceAbility() {}
26 void AceAbility::SetMockModuleList(const std::map<std::string, std::string>& mockJsonInfo)
31 void AceAbility::InitEnv()
36 void AceAbility::OnBackPressed() const
41 bool AceAbility::OnInputEvent(const std::shared_ptr<MMI::KeyEvent>& keyEvent) const
46 bool AceAbility::OnInputEvent(const std::shared_ptr<MMI::PointerEvent>& pointerEvent) const
51 bool AceAbility::OnInputEvent(const std::shared_ptr<MMI::AxisEvent>& axisEvent) const
56 bool AceAbility::OnInputMethodEvent(const unsigned int codePoint) const
62 void AceAbility::OnConfigurationChanged(const DeviceConfig& newConfig)
67 void AceAbility::SurfaceChanged(
74 void AceAbility::ReplacePage(const std::string& url, const std::string& params)
78 void AceAbility::LoadDocument(const std::string& url, const std::string& componentName, SystemParams& systemParams)
83 std::string AceAbility::GetJSONTree()
88 std::string AceAbility::GetDefaultJSONTree()
93 bool AceAbility::OperateComponent(const std::string& attrsJson)
99 void AceAbility::SetWindow(sptr<OHOS::Rosen::Window> rsWindow)
105 std::unique_ptr<AceAbility> AceAbility::CreateInstance(AceRunArgs& runArgs)
107 auto aceAbility = std::make_unique<AceAbility>(runArgs);
111 sptr<OHOS::Rosen::Window> AceAbility::GetWindow()