mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-01 01:13:40 +00:00
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
// Aseprite UI Library
|
|
// Copyright (C) 2001-2013 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 ClickBehavior {
|
|
kDoNothingOnClick,
|
|
kCloseOnClickInOtherWindow,
|
|
kCloseOnClickOutsideHotRegion
|
|
};
|
|
|
|
PopupWindow(const std::string& text, ClickBehavior clickBehavior);
|
|
~PopupWindow();
|
|
|
|
void setHotRegion(const gfx::Region& region);
|
|
|
|
void makeFloating();
|
|
void makeFixed();
|
|
|
|
protected:
|
|
bool onProcessMessage(Message* msg) override;
|
|
void onPreferredSize(PreferredSizeEvent& ev) override;
|
|
void onPaint(PaintEvent& ev) override;
|
|
void onInitTheme(InitThemeEvent& ev) override;
|
|
|
|
private:
|
|
void startFilteringMessages();
|
|
void stopFilteringMessages();
|
|
|
|
ClickBehavior m_clickBehavior;
|
|
gfx::Region m_hotRegion;
|
|
bool m_filtering;
|
|
};
|
|
|
|
} // namespace ui
|
|
|
|
#endif
|