| 1 | // Don't modify, generated file from /home/lucius/Code/aseprite/data/widgets/goto_frame.xml | 
|---|---|
| 2 | |
| 3 | #ifndef GENERATED_GOTO_FRAME_H_INCLUDED | 
| 4 | #define GENERATED_GOTO_FRAME_H_INCLUDED | 
| 5 | #pragma once | 
| 6 | |
| 7 | #include "app/find_widget.h" | 
| 8 | #include "app/load_widget.h" | 
| 9 | #include "ui/box.h" | 
| 10 | #include "ui/button.h" | 
| 11 | #include "ui/window.h" | 
| 12 | |
| 13 | namespace app { | 
| 14 | namespace gen { | 
| 15 | |
| 16 | class GotoFrame : public ui::Window { | 
| 17 | public: | 
| 18 | GotoFrame() : ui::Window(ui::Window::WithTitleBar) { | 
| 19 | app::load_widget( "goto_frame.xml", "goto_frame", this); | 
| 20 | app::finder(this) | 
| 21 | >> "frame_placeholder">> m_framePlaceholder | 
| 22 | >> "ok">> m_ok | 
| 23 | ; | 
| 24 | } | 
| 25 | |
| 26 | ui::VBox* framePlaceholder() const { return m_framePlaceholder; } | 
| 27 | ui::Button* ok() const { return m_ok; } | 
| 28 | |
| 29 | private: | 
| 30 | ui::VBox* m_framePlaceholder; | 
| 31 | ui::Button* m_ok; | 
| 32 | }; | 
| 33 | |
| 34 | } // namespace gen | 
| 35 | } // namespace app | 
| 36 | |
| 37 | #endif | 
| 38 | 
