2014-06-22 21:56:04 -03:00
|
|
|
// Aseprite UI Library
|
|
|
|
// Copyright (C) 2001-2014 David Capello
|
|
|
|
//
|
|
|
|
// This file is released under the terms of the MIT license.
|
|
|
|
// Read LICENSE.txt for more information.
|
|
|
|
|
|
|
|
#ifndef UI_PANEL_H_INCLUDED
|
|
|
|
#define UI_PANEL_H_INCLUDED
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ui/widget.h"
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
class Panel : public Widget {
|
|
|
|
public:
|
|
|
|
Panel();
|
|
|
|
|
|
|
|
void showChild(Widget* widget);
|
|
|
|
|
|
|
|
protected:
|
2014-08-14 23:07:47 -03:00
|
|
|
virtual void onResize(ResizeEvent& ev) override;
|
2015-12-03 21:50:05 -03:00
|
|
|
virtual void onSizeHint(SizeHintEvent& ev) override;
|
2014-06-22 21:56:04 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ui
|
|
|
|
|
|
|
|
#endif
|