forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsize_hint_event.h
More file actions
38 lines (28 loc) · 780 Bytes
/
size_hint_event.h
File metadata and controls
38 lines (28 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Aseprite UI Library
// Copyright (C) 2001-2013, 2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_SIZE_HINT_EVENT_H_INCLUDED
#define UI_SIZE_HINT_EVENT_H_INCLUDED
#pragma once
#include "gfx/size.h"
#include "ui/event.h"
namespace ui {
class Widget;
class SizeHintEvent : public Event {
public:
SizeHintEvent(Widget* source, const gfx::Size& fitIn);
virtual ~SizeHintEvent();
gfx::Size fitInSize() const;
int fitInWidth() const;
int fitInHeight() const;
gfx::Size sizeHint() const;
void setSizeHint(const gfx::Size& sz);
void setSizeHint(int w, int h);
private:
gfx::Size m_fitIn;
gfx::Size m_sizeHint;
};
} // namespace ui
#endif