mirror of
https://github.com/leozide/leocad
synced 2025-01-15 15:40:48 +01:00
16 lines
290 B
C++
16 lines
290 B
C++
#ifndef _LC_TIMELINEWIDGET_H_
|
|
#define _LC_TIMELINEWIDGET_H_
|
|
|
|
class lcTimelineWidget : public QTreeWidget
|
|
{
|
|
public:
|
|
lcTimelineWidget(QWidget* Parent);
|
|
virtual ~lcTimelineWidget();
|
|
|
|
void Update();
|
|
|
|
protected:
|
|
virtual void dropEvent(QDropEvent* Event);
|
|
};
|
|
|
|
#endif // _LC_TIMELINEWIDGET_H_
|