mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-17 08:43:11 +00:00
28 lines
483 B
C++
28 lines
483 B
C++
// Aseprite UI Library
|
|
// Copyright (C) 2001-2013 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef UI_CUSTOM_LABEL_H_INCLUDED
|
|
#define UI_CUSTOM_LABEL_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include "ui/label.h"
|
|
|
|
namespace ui {
|
|
|
|
class CustomLabel : public Label
|
|
{
|
|
public:
|
|
CustomLabel(const std::string& text);
|
|
|
|
protected:
|
|
bool onProcessMessage(Message* msg) override;
|
|
|
|
};
|
|
|
|
} // namespace ui
|
|
|
|
#endif
|