aseprite/src/ui/preferred_size_event.h

41 lines
826 B
C
Raw Normal View History

// Aseprite UI Library
2013-01-27 15:13:13 +00:00
// Copyright (C) 2001-2013 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
2012-06-18 01:49:58 +00:00
#ifndef UI_PREFERRED_SIZE_EVENT_H_INCLUDED
#define UI_PREFERRED_SIZE_EVENT_H_INCLUDED
2014-03-29 22:40:17 +00:00
#pragma once
#include "gfx/size.h"
2012-06-18 01:49:58 +00:00
#include "ui/event.h"
namespace ui {
class Widget;
class PreferredSizeEvent : public Event
{
gfx::Size m_fitIn;
gfx::Size m_preferredSize;
public:
PreferredSizeEvent(Widget* source, const gfx::Size& fitIn);
virtual ~PreferredSizeEvent();
gfx::Size fitInSize() const;
int fitInWidth() const;
int fitInHeight() const;
gfx::Size getPreferredSize() const;
void setPreferredSize(const gfx::Size& preferredSize);
void setPreferredSize(int w, int h);
};
} // namespace ui
#endif