aseprite/src/ui/listitem.h

30 lines
604 B
C
Raw Normal View History

// 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_LISTITEM_H_INCLUDED
#define UI_LISTITEM_H_INCLUDED
2014-03-29 22:40:17 +00:00
#pragma once
#include "base/compiler_specific.h"
#include "ui/widget.h"
namespace ui {
class ListItem : public Widget
{
public:
ListItem(const base::string& text);
protected:
void onPaint(PaintEvent& ev) OVERRIDE;
void onResize(ResizeEvent& ev) OVERRIDE;
void onPreferredSize(PreferredSizeEvent& ev) OVERRIDE;
};
} // namespace ui
#endif