1// Don't modify, generated file from /home/lucius/Code/aseprite/data/widgets/tileset_selector_window.xml
2
3#ifndef GENERATED_TILESET_SELECTOR_WINDOW_H_INCLUDED
4#define GENERATED_TILESET_SELECTOR_WINDOW_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
13namespace app {
14namespace gen {
15
16 class TilesetSelectorWindow : public ui::Window {
17 public:
18 TilesetSelectorWindow() : ui::Window(ui::Window::WithTitleBar) {
19 app::load_widget("tileset_selector_window.xml", "tileset_selector_window", this);
20 app::finder(this)
21 >> "tileset_options" >> m_tilesetOptions
22 >> "ok" >> m_ok
23 ;
24 }
25
26 ui::HBox* tilesetOptions() const { return m_tilesetOptions; }
27 ui::Button* ok() const { return m_ok; }
28
29 private:
30 ui::HBox* m_tilesetOptions;
31 ui::Button* m_ok;
32 };
33
34} // namespace gen
35} // namespace app
36
37#endif
38