mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
959a1b0750
This feels vaguely crashy. I haven't tested window/widget destruction before so there's sure to be bugs.
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "Object.h"
|
|
#include "Rect.h"
|
|
#include "Color.h"
|
|
#include <AK/HashTable.h>
|
|
#include <AK/WeakPtr.h>
|
|
|
|
class MouseEvent;
|
|
class PaintEvent;
|
|
class Widget;
|
|
class Window;
|
|
|
|
class WindowManager : public Object {
|
|
public:
|
|
static WindowManager& the();
|
|
void addWindow(Window&);
|
|
void removeWindow(Window&);
|
|
void paintWindowFrames();
|
|
|
|
void notifyTitleChanged(Window&);
|
|
void notifyRectChanged(Window&, const Rect& oldRect, const Rect& newRect);
|
|
|
|
Widget* rootWidget() { return m_rootWidget; }
|
|
void setRootWidget(Widget*);
|
|
|
|
Window* activeWindow() { return m_activeWindow.ptr(); }
|
|
void setActiveWindow(Window*);
|
|
|
|
bool isVisible(Window&) const;
|
|
|
|
void repaint();
|
|
|
|
private:
|
|
WindowManager();
|
|
~WindowManager();
|
|
|
|
void processMouseEvent(MouseEvent&);
|
|
void handleTitleBarMouseEvent(Window&, MouseEvent&);
|
|
void handlePaintEvent(PaintEvent&);
|
|
void repaintAfterMove(const Rect& oldRect, const Rect& newRect);
|
|
|
|
virtual void event(Event&) override;
|
|
|
|
Color m_activeWindowBorderColor;
|
|
Color m_activeWindowTitleColor;
|
|
|
|
Color m_inactiveWindowBorderColor;
|
|
Color m_inactiveWindowTitleColor;
|
|
|
|
void paintWindowFrame(Window&);
|
|
HashTable<Window*> m_windows;
|
|
Widget* m_rootWidget { nullptr };
|
|
|
|
WeakPtr<Window> m_activeWindow;
|
|
|
|
WeakPtr<Window> m_dragWindow;
|
|
|
|
Point m_dragOrigin;
|
|
Point m_dragWindowOrigin;
|
|
Rect m_lastDragRect;
|
|
Rect m_dragStartRect;
|
|
Rect m_dragEndRect;
|
|
};
|