aseprite/src/ui/listitem.h

29 lines
591 B
C
Raw Normal View History

// Aseprite UI Library
// Copyright (C) 2001-2013 David Capello
//
// This source file is distributed under MIT license,
// please read LICENSE.txt for more information.
#ifndef UI_LISTITEM_H_INCLUDED
#define UI_LISTITEM_H_INCLUDED
#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