WebCFace 2.5.2
Web-based Communication Framework & Dashboard-like UI
|
文字列、数値などの型を送受信するクラス More...
#include <webcface/text.h>
Public Member Functions | |
Variant ()=default | |
Variant (const Field &base) | |
Variant (const Field &base, const SharedString &field) | |
const Variant & | onChange (std::function< void(Variant)> callback) const |
値が変化したときに呼び出されるコールバックを設定 | |
template<typename F , typename std::enable_if_t< std::is_invocable_v< F >, std::nullptr_t > = nullptr> | |
const Variant & | onChange (F callback) const |
値が変化したときに呼び出されるコールバックを設定 | |
template<typename T > | |
void | appendListener (T &&callback) const |
const Variant & | request () const |
値をリクエストする | |
std::optional< ValAdaptor > | tryGet () const |
値を取得する | |
const ValAdaptor & | get () const |
値を取得する | |
template<typename T , typename std::enable_if_t< std::is_convertible_v< ValAdaptor, T >, std::nullptr_t > = nullptr> | |
operator T () const | |
bool | empty () const |
値が空かどうか調べる | |
const std::string & | asStringRef () const |
文字列として返す | |
const std::wstring & | asWStringRef () const |
文字列として返す (wstring) | |
std::string | asString () const |
文字列として返す(コピー) | |
std::wstring | asWString () const |
文字列として返す(コピー) (wstring) | |
double | asDouble () const |
実数として返す | |
int | asInt () const |
int型の整数として返す | |
long long | asLLong () const |
long long型の整数として返す | |
bool | asBool () const |
bool値を返す | |
template<typename T , typename std::enable_if_t< std::is_constructible_v< ValAdaptor, T >, std::nullptr_t > = nullptr> | |
bool | operator== (const T &other) const |
template<typename T , typename std::enable_if_t< std::is_constructible_v< ValAdaptor, T >, std::nullptr_t > = nullptr> | |
bool | operator!= (const T &other) const |
template<typename T , typename std::enable_if_t< std::is_same_v< T, Variant >, std::nullptr_t > = nullptr> | |
bool | operator== (const T &other) const |
template<typename T , typename std::enable_if_t< std::is_same_v< T, Variant >, std::nullptr_t > = nullptr> | |
bool | operator!= (const T &other) const |
bool | operator< (const Variant &) const =delete |
bool | operator<= (const Variant &) const =delete |
bool | operator> (const Variant &) const =delete |
bool | operator>= (const Variant &) const =delete |
Protected Member Functions | |
const Variant & | set (const ValAdaptor &v) const |
値をセットする | |
std::shared_ptr< internal::ClientData > | dataLock () const |
data_wをlockし、失敗したらruntime_errorを投げる | |
std::shared_ptr< internal::ClientData > | setCheck () const |
data_wをlockし、memberがselfではなければinvalid_argumentを投げる | |
bool | expired () const |
Member | member () const |
Memberを返す | |
const std::string & | name () const |
field名を返す | |
const std::wstring & | nameW () const |
field名を返す (wstring) | |
SharedString | lastName8 () const |
Field | child (const SharedString &field) const |
Field | child (std::string_view field) const |
「(thisの名前).(追加の名前)」を新しい名前とするField | |
Field | child (std::wstring_view field) const |
「(thisの名前).(追加の名前)」を新しい名前とするField (wstring) | |
Field | child (int index) const |
「(thisの名前).(index)」を新しい名前とするField | |
std::string | lastName () const |
nameのうちピリオドで区切られた最後の部分を取り出す | |
std::wstring | lastNameW () const |
nameのうちピリオドで区切られた最後の部分を取り出す (wstring) | |
Field | parent () const |
nameの最後のピリオドの前までを新しい名前とするField | |
Field | operator[] (std::string_view field) const |
「(thisの名前).(追加の名前)」を新しい名前とするField | |
Field | operator[] (std::wstring_view field) const |
「(thisの名前).(追加の名前)」を新しい名前とするField (wstring) | |
Field | operator[] (int index) const |
「(thisの名前).(index)」を新しい名前とするField | |
Value | value (std::string_view field="") const |
Value | value (std::wstring_view field) const |
Text | text (std::string_view field="") const |
Text | text (std::wstring_view field) const |
RobotModel | robotModel (std::string_view field="") const |
RobotModel | robotModel (std::wstring_view field) const |
Image | image (std::string_view field="") const |
Image | image (std::wstring_view field) const |
Func | func (std::string_view field="") const |
Func | func (std::wstring_view field) const |
FuncListener | funcListener (std::string_view field) const |
FuncListener | funcListener (std::wstring_view field) const |
View | view (std::string_view field="") const |
View | view (std::wstring_view field) const |
Canvas3D | canvas3D (std::string_view field="") const |
Canvas3D | canvas3D (std::wstring_view field) const |
Canvas2D | canvas2D (std::string_view field="") const |
Canvas2D | canvas2D (std::wstring_view field) const |
Log | log (std::string_view field="") const |
Log | log (std::wstring_view field) const |
std::vector< Value > | valueEntries () const |
std::vector< Text > | textEntries () const |
std::vector< RobotModel > | robotModelEntries () const |
std::vector< Func > | funcEntries () const |
std::vector< View > | viewEntries () const |
std::vector< Canvas3D > | canvas3DEntries () const |
std::vector< Canvas2D > | canvas2DEntries () const |
std::vector< Image > | imageEntries () const |
std::vector< Log > | logEntries () const |
bool | isSelf () const |
memberがselfならtrue | |
bool | operator== (const Field &other) const |
bool | operator== (const FieldBase &rhs) const |
bool | operator!= (const Field &other) const |
bool | operator!= (const FieldBase &rhs) const |
Protected Attributes | |
std::weak_ptr< internal::ClientData > | data_w |
ClientDataの参照 | |
SharedString | member_ |
メンバー名 | |
SharedString | field_ |
フィールド名 | |
Friends | |
class | InputRef |
struct | InputRefState |
class | TemporalViewComponent |
文字列、数値などの型を送受信するクラス
|
default |
|
inline |
|
inline |
|
inline |
bool値を返す
|
inline |
実数として返す
|
inline |
int型の整数として返す
|
inline |
long long型の整数として返す
|
inline |
文字列として返す(コピー)
|
inline |
文字列として返す
std::stringのconst参照を返す。 参照は少なくとも次のClient::sync()までは有効
|
inline |
文字列として返す(コピー) (wstring)
|
inline |
文字列として返す (wstring)
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inlineinherited |
「(thisの名前).(index)」を新しい名前とするField
|
inlineinherited |
「(thisの名前).(追加の名前)」を新しい名前とするField
|
inlineinherited |
「(thisの名前).(追加の名前)」を新しい名前とするField (wstring)
|
inherited |
data_wをlockし、失敗したらruntime_errorを投げる
|
inline |
値が空かどうか調べる
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
const ValAdaptor & get | ( | ) | const |
値を取得する
参照は少なくとも次のClient::sync()までは有効
|
inherited |
|
inherited |
|
inherited |
|
inherited |
memberがselfならtrue
data_wがlockできなければruntime_errorを投げる
|
inlineinherited |
nameのうちピリオドで区切られた最後の部分を取り出す
|
protectedinherited |
|
inlineinherited |
nameのうちピリオドで区切られた最後の部分を取り出す (wstring)
|
inherited |
|
inherited |
|
inherited |
|
inherited |
Memberを返す
|
inlineinherited |
field名を返す
|
inlineinherited |
field名を返す (wstring)
|
inline |
値が変化したときに呼び出されるコールバックを設定
callback | 引数をとらない関数 |
値が変化したときに呼び出されるコールバックを設定
callback | Variant型の引数(thisが渡される)を1つ取る関数 |
|
inline |
|
inlineinherited |
|
inlineinherited |
|
inline |
|
inline |
|
delete |
|
delete |
|
inherited |
|
inlineinherited |
|
inline |
|
inline |
|
delete |
|
delete |
|
inlineinherited |
「(thisの名前).(index)」を新しい名前とするField
|
inlineinherited |
「(thisの名前).(追加の名前)」を新しい名前とするField
|
inlineinherited |
「(thisの名前).(追加の名前)」を新しい名前とするField (wstring)
|
inherited |
nameの最後のピリオドの前までを新しい名前とするField
const Variant & request | ( | ) | const |
値をリクエストする
|
inherited |
|
inherited |
|
inherited |
|
protected |
値をセットする
|
inherited |
data_wをlockし、memberがselfではなければinvalid_argumentを投げる
|
inherited |
|
inherited |
|
inherited |
std::optional< ValAdaptor > tryGet | ( | ) | const |
値を取得する
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
friend |
|
friend |
|
friend |
|
inherited |
ClientDataの参照
ClientData内に保持するクラスもあるので循環参照を避けるためweak_ptr
|
inherited |
フィールド名
Memberなどフィールド名が不要なクラスでは使用しない
|
inherited |
メンバー名