aseprite/src/ui/separator.h
2017-02-17 18:23:21 -03:00

26 lines
482 B
C++

// Aseprite UI Library
// Copyright (C) 2001-2017 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_SEPARATOR_H_INCLUDED
#define UI_SEPARATOR_H_INCLUDED
#pragma once
#include "ui/widget.h"
namespace ui {
class Separator : public Widget {
public:
Separator(const std::string& text, int align);
protected:
void onSizeHint(SizeHintEvent& ev) override;
};
} // namespace ui
#endif