mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-04 17:40:01 +00:00
bcd69495ce
We've refactored the code to support locating windows (and popups windows + hot regions) correctly in both modes: with one ui::Display and with multiple ui::Displays. For this we've added a new ui::fit_bounds() function that works in both modes.
75 lines
1.9 KiB
C++
75 lines
1.9 KiB
C++
// Aseprite UI Library
|
|
// Copyright (C) 2021 Igara Studio S.A.
|
|
// Copyright (C) 2001-2017 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef UI_POPUP_WINDOW_H_INCLUDED
|
|
#define UI_POPUP_WINDOW_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include "ui/window.h"
|
|
|
|
namespace ui {
|
|
|
|
class PopupWindow : public Window {
|
|
public:
|
|
enum class ClickBehavior {
|
|
DoNothingOnClick,
|
|
CloseOnClickInOtherWindow,
|
|
CloseOnClickOutsideHotRegion
|
|
};
|
|
|
|
enum class EnterBehavior {
|
|
DoNothingOnEnter,
|
|
CloseOnEnter,
|
|
};
|
|
|
|
PopupWindow(const std::string& text = "",
|
|
const ClickBehavior clickBehavior = ClickBehavior::CloseOnClickOutsideHotRegion,
|
|
const EnterBehavior enterBehavior = EnterBehavior::CloseOnEnter,
|
|
const bool withCloseButton = false);
|
|
~PopupWindow();
|
|
|
|
// Sets the hot region. This region indicates the area where the
|
|
// mouse can be located and the window will be kept open.
|
|
//
|
|
// The screenRegion must be specified in native screen coordinates.
|
|
void setHotRegion(const gfx::Region& screenRegion);
|
|
|
|
void setClickBehavior(ClickBehavior behavior);
|
|
void setEnterBehavior(EnterBehavior behavior);
|
|
|
|
void makeFloating();
|
|
void makeFixed();
|
|
|
|
protected:
|
|
bool onProcessMessage(Message* msg) override;
|
|
void onHitTest(HitTestEvent& ev) override;
|
|
|
|
virtual void onMakeFloating();
|
|
virtual void onMakeFixed();
|
|
|
|
private:
|
|
void startFilteringMessages();
|
|
void stopFilteringMessages();
|
|
|
|
ClickBehavior m_clickBehavior;
|
|
EnterBehavior m_enterBehavior;
|
|
gfx::Region m_hotRegion;
|
|
bool m_filtering = false;
|
|
bool m_fixed = false;
|
|
};
|
|
|
|
class TransparentPopupWindow : public PopupWindow {
|
|
public:
|
|
TransparentPopupWindow(ClickBehavior clickBehavior);
|
|
protected:
|
|
void onInitTheme(InitThemeEvent& ev) override;
|
|
};
|
|
|
|
} // namespace ui
|
|
|
|
#endif
|