mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-04 17:40:01 +00:00
7cb41729ab
In this way the WidgetLoader looks for new styles only.
24 lines
415 B
C++
24 lines
415 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_LABEL_H_INCLUDED
|
|
#define UI_LABEL_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include "gfx/color.h"
|
|
#include "ui/widget.h"
|
|
|
|
namespace ui {
|
|
|
|
class Label : public Widget {
|
|
public:
|
|
Label(const std::string& text);
|
|
};
|
|
|
|
} // namespace ui
|
|
|
|
#endif
|