WidgetProxy.cpp
Go to the documentation of this file.
1#include "WidgetProxy.h"
2
3namespace armarx::RemoteGui
4{
6 TabProxy::getButton(const std::string& name)
7 {
8 return ButtonProxy(this, name);
9 }
10
11 bool
12 TabProxy::getButtonClicked(const std::string& name)
13 {
14 return getButton(name).clicked();
15 }
16
17 bool
18 TabProxy::hasValueChanged(const std::string& name)
19 {
21 return oldValues.at(name) != currentValues.at(name);
22 }
23} // namespace armarx::RemoteGui
bool hasValueChanged(std::string const &name)
bool getButtonClicked(std::string const &name)
ButtonProxy getButton(std::string const &name)
#define ARMARX_TRACE
Definition trace.h:77