aseprite/src/ui/label.h

24 lines
415 B
C
Raw Normal View History

// 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.
2007-09-18 23:57:02 +00:00
2012-06-18 01:49:58 +00:00
#ifndef UI_LABEL_H_INCLUDED
#define UI_LABEL_H_INCLUDED
2014-03-29 22:40:17 +00:00
#pragma once
2007-09-18 23:57:02 +00:00
#include "gfx/color.h"
2012-06-18 01:49:58 +00:00
#include "ui/widget.h"
2007-09-18 23:57:02 +00:00
namespace ui {
class Label : public Widget {
public:
Label(const std::string& text);
};
} // namespace ui
2007-09-18 23:57:02 +00:00
2009-08-17 21:38:00 +00:00
#endif