forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind_widget.h
53 lines (41 loc) · 1.07 KB
/
find_widget.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Aseprite
// Copyright (C) 2001-2015 David Capello
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
#ifndef APP_FIND_WIDGET_H_INCLUDED
#define APP_FIND_WIDGET_H_INCLUDED
#pragma once
#include "app/widget_not_found.h"
#include "ui/widget.h"
namespace app {
template<class T>
inline T* find_widget(ui::Widget* parent, const char* childId) {
T* child = parent->findChildT<T>(childId);
if (!child)
throw WidgetNotFound(childId);
return child;
}
class finder {
public:
finder(ui::Widget* parent) : m_parent(parent) {
}
finder& operator>>(const char* id) {
m_lastId = id;
return *this;
}
finder& operator>>(const std::string& id) {
m_lastId = id;
return *this;
}
template<typename T>
finder& operator>>(T*& child) {
child = app::find_widget<T>(m_parent, m_lastId.c_str());
return *this;
}
private:
ui::Widget* m_parent;
std::string m_lastId;
};
} // namespace app
#endif