1
0
mirror of https://github.com/aseprite/aseprite.git synced 2025-02-16 15:40:20 +00:00

34 lines
627 B
C
Raw Normal View History

// Aseprite UI Library
// Copyright (C) 2019 Igara Studio S.A.
// 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/box.h"
namespace ui {
class Panel : public VBox {
public:
Panel();
void showChild(Widget* widget);
void showAllChildren();
protected:
virtual void onResize(ResizeEvent& ev) override;
2015-12-03 21:50:05 -03:00
virtual void onSizeHint(SizeHintEvent& ev) override;
private:
bool m_multiple;
};
} // namespace ui
#endif