2015-02-12 23:16:25 +08:00
|
|
|
// Aseprite
|
|
|
|
|
// Copyright (C) 2001-2015 David Capello
|
|
|
|
|
//
|
2016-08-27 04:02:58 +08:00
|
|
|
// This program is distributed under the terms of
|
|
|
|
|
// the End-User License Agreement for Aseprite.
|
2012-06-16 10:37:59 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#ifndef APP_FIND_WIDGET_H_INCLUDED
|
|
|
|
|
#define APP_FIND_WIDGET_H_INCLUDED
|
2014-03-30 06:40:17 +08:00
|
|
|
#pragma once
|
2012-06-16 10:37:59 +08:00
|
|
|
|
|
|
|
|
#include "app/widget_not_found.h"
|
2012-07-10 04:36:45 +08:00
|
|
|
#include "ui/widget.h"
|
2012-06-16 10:37:59 +08:00
|
|
|
|
|
|
|
|
namespace app {
|
|
|
|
|
|
|
|
|
|
template<class T>
|
2012-06-18 09:02:54 +08:00
|
|
|
inline T* find_widget(ui::Widget* parent, const char* childId) {
|
2012-06-16 10:37:59 +08:00
|
|
|
T* child = parent->findChildT<T>(childId);
|
|
|
|
|
if (!child)
|
|
|
|
|
throw WidgetNotFound(childId);
|
|
|
|
|
|
|
|
|
|
return child;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-18 08:27:44 +08:00
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
2012-06-16 10:37:59 +08:00
|
|
|
} // namespace app
|
|
|
|
|
|
|
|
|
|
#endif
|