mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-18 16:24:27 -04:00
ca69db7505
Signed-off-by: zhirong <215782872@qq.com> Change-Id: I24e1790cefe5d11e29f9e9e2862effb79803603f Signed-off-by: zhirong <215782872@qq.com>
417 lines
20 KiB
C++
417 lines
20 KiB
C++
/*
|
|
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef OHOS_ROSEN_WINDOW_IMPL_H
|
|
#define OHOS_ROSEN_WINDOW_IMPL_H
|
|
|
|
#include <map>
|
|
|
|
#include <ability_context.h>
|
|
#include <i_input_event_consumer.h>
|
|
#include <key_event.h>
|
|
#include <refbase.h>
|
|
#include <ui_content.h>
|
|
#include <ui/rs_surface_node.h>
|
|
|
|
#include "event_handler.h"
|
|
#include "input_transfer_station.h"
|
|
#include "vsync_station.h"
|
|
#include "window.h"
|
|
#include "window_property.h"
|
|
#include "window_transition_info.h"
|
|
#include "wm_common_inner.h"
|
|
#include "wm_common.h"
|
|
|
|
using OHOS::AppExecFwk::DisplayOrientation;
|
|
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
union ColorParam {
|
|
#if BIG_ENDIANNESS
|
|
struct {
|
|
uint8_t alpha;
|
|
uint8_t red;
|
|
uint8_t green;
|
|
uint8_t blue;
|
|
} argb;
|
|
#else
|
|
struct {
|
|
uint8_t blue;
|
|
uint8_t green;
|
|
uint8_t red;
|
|
uint8_t alpha;
|
|
} argb;
|
|
#endif
|
|
uint32_t value;
|
|
};
|
|
|
|
const std::map<DisplayOrientation, Orientation> ABILITY_TO_WMS_ORIENTATION_MAP {
|
|
{DisplayOrientation::UNSPECIFIED, Orientation::UNSPECIFIED },
|
|
{DisplayOrientation::LANDSCAPE, Orientation::HORIZONTAL },
|
|
{DisplayOrientation::PORTRAIT, Orientation::VERTICAL },
|
|
{DisplayOrientation::FOLLOWRECENT, Orientation::UNSPECIFIED },
|
|
{DisplayOrientation::LANDSCAPE_INVERTED, Orientation::REVERSE_HORIZONTAL },
|
|
{DisplayOrientation::PORTRAIT_INVERTED, Orientation::REVERSE_VERTICAL },
|
|
{DisplayOrientation::AUTO_ROTATION, Orientation::SENSOR },
|
|
{DisplayOrientation::AUTO_ROTATION_LANDSCAPE, Orientation::SENSOR_HORIZONTAL },
|
|
{DisplayOrientation::AUTO_ROTATION_PORTRAIT, Orientation::SENSOR_VERTICAL },
|
|
{DisplayOrientation::AUTO_ROTATION_RESTRICTED, Orientation::AUTO_ROTATION_RESTRICTED },
|
|
{DisplayOrientation::AUTO_ROTATION_LANDSCAPE_RESTRICTED, Orientation::AUTO_ROTATION_LANDSCAPE_RESTRICTED },
|
|
{DisplayOrientation::AUTO_ROTATION_PORTRAIT_RESTRICTED, Orientation::AUTO_ROTATION_PORTRAIT_RESTRICTED },
|
|
{DisplayOrientation::LOCKED, Orientation::LOCKED },
|
|
};
|
|
|
|
class WindowImpl : public Window {
|
|
using ListenerTaskCallback = std::function<void()>;
|
|
using EventHandler = OHOS::AppExecFwk::EventHandler;
|
|
using Priority = OHOS::AppExecFwk::EventQueue::Priority;
|
|
#define CALL_LIFECYCLE_LISTENER(windowLifecycleCb) \
|
|
do { \
|
|
for (auto& listener : lifecycleListeners_) { \
|
|
if (listener != nullptr) { \
|
|
listener->windowLifecycleCb(); \
|
|
} \
|
|
} \
|
|
} while (0)
|
|
|
|
#define CALL_UI_CONTENT(uiContentCb) \
|
|
do { \
|
|
if (uiContent_ != nullptr) { \
|
|
uiContent_->uiContentCb(); \
|
|
} \
|
|
} while (0)
|
|
|
|
public:
|
|
explicit WindowImpl(const sptr<WindowOption>& option);
|
|
~WindowImpl();
|
|
|
|
static sptr<Window> Find(const std::string& id);
|
|
static sptr<Window> GetTopWindowWithContext(const std::shared_ptr<AbilityRuntime::Context>& context = nullptr);
|
|
static sptr<Window> GetTopWindowWithId(uint32_t mainWinId);
|
|
static std::vector<sptr<Window>> GetSubWindow(uint32_t parantId);
|
|
virtual std::shared_ptr<RSSurfaceNode> GetSurfaceNode() const override;
|
|
virtual Rect GetRect() const override;
|
|
virtual Rect GetRequestRect() const override;
|
|
virtual WindowType GetType() const override;
|
|
virtual WindowMode GetMode() const override;
|
|
virtual WindowBlurLevel GetWindowBackgroundBlur() const override;
|
|
virtual float GetAlpha() const override;
|
|
virtual bool GetShowState() const override;
|
|
virtual WMError SetFocusable(bool isFocusable) override;
|
|
virtual bool GetFocusable() const override;
|
|
virtual WMError SetTouchable(bool isTouchable) override;
|
|
virtual bool GetTouchable() const override;
|
|
virtual const std::string& GetWindowName() const override;
|
|
virtual uint32_t GetWindowId() const override;
|
|
virtual uint32_t GetWindowFlags() const override;
|
|
uint32_t GetRequestModeSupportInfo() const override;
|
|
inline NotifyNativeWinDestroyFunc GetNativeDestroyCallback()
|
|
{
|
|
return notifyNativefunc_;
|
|
}
|
|
virtual SystemBarProperty GetSystemBarPropertyByType(WindowType type) const override;
|
|
virtual bool IsFullScreen() const override;
|
|
virtual bool IsLayoutFullScreen() const override;
|
|
virtual WMError SetWindowType(WindowType type) override;
|
|
virtual WMError SetWindowMode(WindowMode mode) override;
|
|
virtual WMError SetWindowBackgroundBlur(WindowBlurLevel level) override;
|
|
virtual void SetAlpha(float alpha) override;
|
|
virtual void SetTransform(const Transform& trans) override;
|
|
virtual WMError AddWindowFlag(WindowFlag flag) override;
|
|
virtual WMError RemoveWindowFlag(WindowFlag flag) override;
|
|
virtual WMError SetWindowFlags(uint32_t flags) override;
|
|
virtual WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) override;
|
|
virtual WMError SetLayoutFullScreen(bool status) override;
|
|
virtual WMError SetFullScreen(bool status) override;
|
|
virtual Transform GetTransform() const override;
|
|
virtual WMError UpdateSurfaceNodeAfterCustomAnimation(bool isAdd) override;
|
|
inline void SetWindowState(WindowState state)
|
|
{
|
|
state_ = state;
|
|
}
|
|
virtual WMError GetAvoidAreaByType(AvoidAreaType type, AvoidArea& avoidArea) override;
|
|
|
|
WMError Create(const std::string& parentName,
|
|
const std::shared_ptr<AbilityRuntime::Context>& context = nullptr);
|
|
virtual WMError Destroy() override;
|
|
virtual WMError Show(uint32_t reason = 0, bool withAnimation = false) override;
|
|
virtual WMError Hide(uint32_t reason = 0, bool withAnimation = false) override;
|
|
virtual WMError MoveTo(int32_t x, int32_t y) override;
|
|
virtual WMError Resize(uint32_t width, uint32_t height) override;
|
|
virtual WMError SetKeepScreenOn(bool keepScreenOn) override;
|
|
virtual bool IsKeepScreenOn() const override;
|
|
virtual WMError SetTurnScreenOn(bool turnScreenOn) override;
|
|
virtual bool IsTurnScreenOn() const override;
|
|
virtual WMError SetBackgroundColor(const std::string& color) override;
|
|
virtual WMError SetTransparent(bool isTransparent) override;
|
|
virtual bool IsTransparent() const override;
|
|
virtual WMError SetBrightness(float brightness) override;
|
|
virtual float GetBrightness() const override;
|
|
virtual WMError SetCallingWindow(uint32_t windowId) override;
|
|
virtual void SetPrivacyMode(bool isPrivacyMode) override;
|
|
virtual bool IsPrivacyMode() const override;
|
|
virtual void DisableAppWindowDecor() override;
|
|
|
|
virtual bool IsDecorEnable() const override;
|
|
virtual WMError Maximize() override;
|
|
virtual WMError Minimize() override;
|
|
virtual WMError Recover() override;
|
|
virtual WMError Close() override;
|
|
virtual void StartMove() override;
|
|
|
|
virtual WMError RequestFocus() const override;
|
|
virtual void AddInputEventListener(const std::shared_ptr<MMI::IInputEventConsumer>& inputEventListener) override;
|
|
virtual void SetInputEventConsumer(const std::shared_ptr<IInputEventConsumer>& inputEventConsumer) override;
|
|
|
|
virtual void RegisterLifeCycleListener(const sptr<IWindowLifeCycle>& listener) override;
|
|
virtual void RegisterWindowChangeListener(sptr<IWindowChangeListener>& listener) override;
|
|
virtual void UnregisterLifeCycleListener(const sptr<IWindowLifeCycle>& listener) override;
|
|
virtual void UnregisterWindowChangeListener(sptr<IWindowChangeListener>& listener) override;
|
|
virtual void RegisterAvoidAreaChangeListener(sptr<IAvoidAreaChangedListener>& listener) override;
|
|
virtual void UnregisterAvoidAreaChangeListener(sptr<IAvoidAreaChangedListener>& listener) override;
|
|
virtual void RegisterDragListener(const sptr<IWindowDragListener>& listener) override;
|
|
virtual void UnregisterDragListener(const sptr<IWindowDragListener>& listener) override;
|
|
virtual void RegisterDisplayMoveListener(sptr<IDisplayMoveListener>& listener) override;
|
|
virtual void UnregisterDisplayMoveListener(sptr<IDisplayMoveListener>& listener) override;
|
|
virtual void RegisterInputEventListener(const sptr<IInputEventListener>& listener) override;
|
|
virtual void UnregisterInputEventListener(const sptr<IInputEventListener>& listener) override;
|
|
virtual void RegisterWindowDestroyedListener(const NotifyNativeWinDestroyFunc& func) override;
|
|
virtual void RegisterOccupiedAreaChangeListener(const sptr<IOccupiedAreaChangeListener>& listener) override;
|
|
virtual void UnregisterOccupiedAreaChangeListener(const sptr<IOccupiedAreaChangeListener>& listener) override;
|
|
virtual void RegisterTouchOutsideListener(const sptr<ITouchOutsideListener>& listener) override;
|
|
virtual void UnregisterTouchOutsideListener(const sptr<ITouchOutsideListener>& listener) override;
|
|
virtual void RegisterAnimationTransitionController(const sptr<IAnimationTransitionController>& listener) override;
|
|
virtual void SetAceAbilityHandler(const sptr<IAceAbilityHandler>& handler) override;
|
|
virtual void SetRequestModeSupportInfo(uint32_t modeSupportInfo) override;
|
|
void UpdateRect(const struct Rect& rect, bool decoStatus, WindowSizeChangeReason reason);
|
|
void UpdateMode(WindowMode mode);
|
|
void UpdateModeSupportInfo(uint32_t modeSupportInfo);
|
|
virtual void ConsumeKeyEvent(std::shared_ptr<MMI::KeyEvent>& inputEvent) override;
|
|
virtual void ConsumePointerEvent(std::shared_ptr<MMI::PointerEvent>& inputEvent) override;
|
|
virtual void RequestFrame() override;
|
|
void UpdateFocusStatus(bool focused);
|
|
virtual void UpdateConfiguration(const std::shared_ptr<AppExecFwk::Configuration>& configuration) override;
|
|
void UpdateAvoidArea(const sptr<AvoidArea>& avoidArea, AvoidAreaType type);
|
|
void UpdateWindowState(WindowState state);
|
|
sptr<WindowProperty> GetWindowProperty();
|
|
void UpdateDragEvent(const PointInfo& point, DragEvent event);
|
|
void UpdateDisplayId(DisplayId from, DisplayId to);
|
|
void UpdateOccupiedAreaChangeInfo(const sptr<OccupiedAreaChangeInfo>& info);
|
|
void UpdateActiveStatus(bool isActive);
|
|
void NotifyOutsidePressed();
|
|
void NotifySizeChange(Rect rect, WindowSizeChangeReason reason);
|
|
void NotifyKeyEvent(std::shared_ptr<MMI::KeyEvent> &keyEvent);
|
|
void NotifyPointEvent(std::shared_ptr<MMI::PointerEvent>& pointerEvent);
|
|
void NotifyAvoidAreaChange(const sptr<AvoidArea>& avoidArea, AvoidAreaType type);
|
|
void NotifyDisplayMoveChange(DisplayId from, DisplayId to);
|
|
void NotifyOccupiedAreaChange(const sptr<OccupiedAreaChangeInfo>& info);
|
|
void NotifyModeChange(WindowMode mode);
|
|
void NotifyDragEvent(const PointInfo& point, DragEvent event);
|
|
void NotifyTouchOutside();
|
|
|
|
virtual WMError SetUIContent(const std::string& contentInfo, NativeEngine* engine,
|
|
NativeValue* storage, bool isdistributed, AppExecFwk::Ability* ability) override;
|
|
virtual std::string GetContentInfo() override;
|
|
virtual const std::shared_ptr<AbilityRuntime::Context> GetContext() const override;
|
|
virtual Ace::UIContent* GetUIContent() const override;
|
|
virtual void OnNewWant(const AAFwk::Want& want) override;
|
|
virtual void SetRequestedOrientation(Orientation) override;
|
|
virtual Orientation GetRequestedOrientation() override;
|
|
virtual void SetNeedRemoveWindowInputChannel(bool needRemoveWindowInputChannel) override;
|
|
virtual WMError SetTouchHotAreas(const std::vector<Rect>& rects) override;
|
|
virtual void GetRequestedTouchHotAreas(std::vector<Rect>& rects) const override;
|
|
|
|
// colorspace, gamut
|
|
virtual bool IsSupportWideGamut() override;
|
|
virtual void SetColorSpace(ColorSpace colorSpace) override;
|
|
virtual ColorSpace GetColorSpace() override;
|
|
|
|
virtual void DumpInfo(const std::vector<std::string>& params, std::vector<std::string>& info) override;
|
|
void PostListenerTask(ListenerTaskCallback &&callback, Priority priority = Priority::LOW,
|
|
const std::string taskName = "");
|
|
private:
|
|
inline void NotifyAfterForeground()
|
|
{
|
|
PostListenerTask([this]() {
|
|
CALL_LIFECYCLE_LISTENER(AfterForeground);
|
|
CALL_UI_CONTENT(Foreground);
|
|
});
|
|
}
|
|
inline void NotifyAfterBackground()
|
|
{
|
|
PostListenerTask([this]() {
|
|
CALL_LIFECYCLE_LISTENER(AfterBackground);
|
|
CALL_UI_CONTENT(Background);
|
|
});
|
|
}
|
|
inline void NotifyAfterFocused()
|
|
{
|
|
PostListenerTask([this]() {
|
|
CALL_LIFECYCLE_LISTENER(AfterFocused);
|
|
CALL_UI_CONTENT(Focus);
|
|
});
|
|
}
|
|
inline void NotifyAfterUnfocused()
|
|
{
|
|
PostListenerTask([this]() {
|
|
CALL_LIFECYCLE_LISTENER(AfterUnfocused);
|
|
CALL_UI_CONTENT(UnFocus);
|
|
});
|
|
}
|
|
inline void NotifyListenerAfterUnfocused()
|
|
{
|
|
PostListenerTask([this]() {
|
|
CALL_LIFECYCLE_LISTENER(AfterUnfocused);
|
|
});
|
|
}
|
|
inline void NotifyBeforeDestroy(std::string windowName)
|
|
{
|
|
if (uiContent_ != nullptr) {
|
|
auto uiContent = std::move(uiContent_);
|
|
uiContent_ = nullptr;
|
|
uiContent->Destroy();
|
|
}
|
|
if (notifyNativefunc_) {
|
|
notifyNativefunc_(windowName);
|
|
}
|
|
}
|
|
inline void NotifyBeforeSubWindowDestroy(sptr<WindowImpl> window)
|
|
{
|
|
auto uiContent = window->GetUIContent();
|
|
if (uiContent != nullptr) {
|
|
uiContent->Destroy();
|
|
}
|
|
if (window->GetNativeDestroyCallback()) {
|
|
window->GetNativeDestroyCallback()(window->GetWindowName());
|
|
}
|
|
}
|
|
inline void NotifyAfterActive()
|
|
{
|
|
PostListenerTask([this]() {
|
|
CALL_LIFECYCLE_LISTENER(AfterActive);
|
|
});
|
|
}
|
|
inline void NotifyAfterInactive()
|
|
{
|
|
PostListenerTask([this]() {
|
|
CALL_LIFECYCLE_LISTENER(AfterInactive);
|
|
});
|
|
}
|
|
inline void NotifyForegroundFailed()
|
|
{
|
|
PostListenerTask([this]() {
|
|
CALL_LIFECYCLE_LISTENER(ForegroundFailed);
|
|
});
|
|
}
|
|
inline void NotifyForegroundInvalidWindowMode()
|
|
{
|
|
PostListenerTask([this]() {
|
|
CALL_LIFECYCLE_LISTENER(ForegroundInvalidMode);
|
|
});
|
|
}
|
|
void DestroyFloatingWindow();
|
|
void DestroySubWindow();
|
|
void SetDefaultOption(); // for api7
|
|
bool IsWindowValid() const;
|
|
void OnVsync(int64_t timeStamp);
|
|
static sptr<Window> FindTopWindow(uint32_t topWinId);
|
|
WMError Drag(const Rect& rect);
|
|
void ConsumeMoveOrDragEvent(std::shared_ptr<MMI::PointerEvent>& pointerEvent);
|
|
void HandleDragEvent(int32_t posX, int32_t posY, int32_t pointId);
|
|
void HandleMoveEvent(int32_t posX, int32_t posY, int32_t pointId);
|
|
void ReadyToMoveOrDragWindow(int32_t globalX, int32_t globalY, int32_t pointId, const Rect& rect);
|
|
void EndMoveOrDragWindow(int32_t posX, int32_t posY, int32_t pointId);
|
|
bool IsPointerEventConsumed();
|
|
void AdjustWindowAnimationFlag(bool withAnimation = false);
|
|
void MapFloatingWindowToAppIfNeeded();
|
|
WMError UpdateProperty(PropertyChangeAction action);
|
|
WMError Destroy(bool needNotifyServer);
|
|
WMError SetBackgroundColor(uint32_t color);
|
|
uint32_t GetBackgroundColor() const;
|
|
void RecordLifeCycleExceptionEvent(LifeCycleEvent event, WMError errCode) const;
|
|
std::string TransferLifeCycleEventToString(LifeCycleEvent type) const;
|
|
Rect GetSystemAlarmWindowDefaultSize(Rect defaultRect);
|
|
void HandleModeChangeHotZones(int32_t posX, int32_t posY);
|
|
WMError NotifyWindowTransition(TransitionReason reason);
|
|
void UpdatePointerEvent(std::shared_ptr<MMI::PointerEvent>& pointerEvent);
|
|
void UpdatePointerEventForStretchableWindow(std::shared_ptr<MMI::PointerEvent>& pointerEvent);
|
|
void UpdateDragType();
|
|
void InitListenerHandler();
|
|
void HandleBackKeyPressedEvent(const std::shared_ptr<MMI::KeyEvent>& keyEvent);
|
|
bool CheckCameraFloatingWindowMultiCreated(WindowType type);
|
|
void GetConfigurationFromAbilityInfo();
|
|
void UpdateTitleButtonVisibility();
|
|
void SetModeSupportInfo(uint32_t modeSupportInfo);
|
|
uint32_t GetModeSupportInfo() const;
|
|
WMError PreProcessShow(uint32_t reason, bool withAnimation);
|
|
// colorspace, gamut
|
|
using ColorSpaceConvertMap = struct {
|
|
ColorSpace colorSpace;
|
|
ColorGamut surfaceColorGamut;
|
|
};
|
|
static const ColorSpaceConvertMap colorSpaceConvertMap[];
|
|
static ColorSpace GetColorSpaceFromSurfaceGamut(ColorGamut ColorGamut);
|
|
static ColorGamut GetSurfaceGamutFromColorSpace(ColorSpace colorSpace);
|
|
|
|
std::shared_ptr<VsyncStation::VsyncCallback> callback_ =
|
|
std::make_shared<VsyncStation::VsyncCallback>(VsyncStation::VsyncCallback());
|
|
static std::map<std::string, std::pair<uint32_t, sptr<Window>>> windowMap_;
|
|
static std::map<uint32_t, std::vector<sptr<WindowImpl>>> subWindowMap_;
|
|
static std::map<uint32_t, std::vector<sptr<WindowImpl>>> appFloatingWindowMap_;
|
|
sptr<WindowProperty> property_;
|
|
WindowState state_ { WindowState::STATE_INITIAL };
|
|
WindowTag windowTag_;
|
|
sptr<IAceAbilityHandler> aceAbilityHandler_;
|
|
std::vector<sptr<ITouchOutsideListener>> touchOutsideListeners_;
|
|
std::vector<sptr<IWindowLifeCycle>> lifecycleListeners_;
|
|
std::vector<sptr<IWindowChangeListener>> windowChangeListeners_;
|
|
std::vector<sptr<IAvoidAreaChangedListener>> avoidAreaChangeListeners_;
|
|
std::vector<sptr<IWindowDragListener>> windowDragListeners_;
|
|
std::vector<sptr<IDisplayMoveListener>> displayMoveListeners_;
|
|
std::vector<sptr<IOccupiedAreaChangeListener>> occupiedAreaChangeListeners_;
|
|
std::vector<sptr<IInputEventListener>> inputEventListeners_;
|
|
std::shared_ptr<IInputEventConsumer> inputEventConsumer_;
|
|
sptr<IAnimationTransitionController> animationTranistionController_;
|
|
NotifyNativeWinDestroyFunc notifyNativefunc_;
|
|
std::shared_ptr<RSSurfaceNode> surfaceNode_;
|
|
std::string name_;
|
|
std::unique_ptr<Ace::UIContent> uiContent_;
|
|
std::shared_ptr<AbilityRuntime::Context> context_;
|
|
std::shared_ptr<EventHandler> eventHandler_;
|
|
std::recursive_mutex mutex_;
|
|
const float SYSTEM_ALARM_WINDOW_WIDTH_RATIO = 0.8;
|
|
const float SYSTEM_ALARM_WINDOW_HEIGHT_RATIO = 0.3;
|
|
|
|
int32_t startPointPosX_ = 0;
|
|
int32_t startPointPosY_ = 0;
|
|
int32_t startPointerId_ = 0;
|
|
bool startDragFlag_ = false;
|
|
bool startMoveFlag_ = false;
|
|
bool pointEventStarted_ = false;
|
|
Rect startPointRect_ = { 0, 0, 0, 0 };
|
|
Rect startRectExceptFrame_ = { 0, 0, 0, 0 };
|
|
Rect startRectExceptCorner_ = { 0, 0, 0, 0 };
|
|
DragType dragType_ = DragType::DRAG_UNDEFINED;
|
|
bool isAppDecorEnable_ = true;
|
|
SystemConfig windowSystemConfig_ ;
|
|
bool isOriginRectSet_ = false;
|
|
bool isWaitingFrame_ = false;
|
|
bool needRemoveWindowInputChannel_ = false;
|
|
bool isListenerHandlerRunning_ = false;
|
|
};
|
|
} // namespace Rosen
|
|
} // namespace OHOS
|
|
#endif // OHOS_ROSEN_WINDOW_IMPL_H
|