hivemind 1.0.0
Loading...
Searching...
No Matches
keyframe_list.h
Go to the documentation of this file.
1#pragma once
2
3#include <QListWidget>
4#include <QVBoxLayout>
5
6namespace Gui
7{
8
9 class KeyframeList : public QListWidget
10 {
11 Q_OBJECT
12
13 public:
14 KeyframeList(QWidget* parent = nullptr);
15
16 public slots:
17 void Update();
18 void DeleteSelected();
19
20 private:
21 QVBoxLayout* m_Layout;
22 };
23
24} // namespace Gui
QVBoxLayout * m_Layout
Definition: keyframe_list.h:21
Definition: action.h:6