1// Don't modify, generated file from /home/lucius/Code/aseprite/data/widgets/undo_history.xml
2
3#ifndef GENERATED_UNDO_HISTORY_H_INCLUDED
4#define GENERATED_UNDO_HISTORY_H_INCLUDED
5#pragma once
6
7#include "app/find_widget.h"
8#include "app/load_widget.h"
9#include "ui/view.h"
10#include "ui/window.h"
11
12namespace app {
13namespace gen {
14
15 class UndoHistory : public ui::Window {
16 public:
17 UndoHistory() : ui::Window(ui::Window::WithTitleBar) {
18 app::load_widget("undo_history.xml", "undo_history", this);
19 app::finder(this)
20 >> "view" >> m_view
21 ;
22 }
23
24 ui::View* view() const { return m_view; }
25
26 private:
27 ui::View* m_view;
28 };
29
30} // namespace gen
31} // namespace app
32
33#endif
34