|
| ComplexWidget (ShuffleboardContainer &parent, std::string_view title, wpi::Sendable &sendable) |
|
| ~ComplexWidget () override |
|
void | EnableIfActuator () override |
| Enables user control of this widget in the Shuffleboard application. More...
|
|
void | DisableIfActuator () override |
| Disables user control of this widget in the Shuffleboard application. More...
|
|
void | BuildInto (std::shared_ptr< nt::NetworkTable > parentTable, std::shared_ptr< nt::NetworkTable > metaTable) override |
| Builds the entries for this value. More...
|
|
| ShuffleboardWidget (ShuffleboardContainer &parent, std::string_view title) |
|
ComplexWidget & | WithWidget (BuiltInWidgets widgetType) |
| Sets the type of widget used to display the data. More...
|
|
ComplexWidget & | WithWidget (const WidgetType &widgetType) |
| Sets the type of widget used to display the data. More...
|
|
ComplexWidget & | WithWidget (std::string_view widgetType) |
| Sets the type of widget used to display the data. More...
|
|
| ShuffleboardComponent (ShuffleboardContainer &parent, std::string_view title, std::string_view type="") |
|
ComplexWidget & | WithProperties (const wpi::StringMap< nt::Value > &properties) |
| Sets custom properties for this component. More...
|
|
ComplexWidget & | WithPosition (int columnIndex, int rowIndex) |
| Sets the position of this component in the tab. More...
|
|
ComplexWidget & | WithSize (int width, int height) |
| Sets the size of this component in the tab. More...
|
|
| ShuffleboardComponentBase (ShuffleboardContainer &parent, std::string_view title, std::string_view type="") |
|
void | SetType (std::string_view type) |
|
void | BuildMetadata (std::shared_ptr< nt::NetworkTable > metaTable) |
|
ShuffleboardContainer & | GetParent () |
|
const std::string & | GetType () const |
|
| ShuffleboardValue (std::string_view title) |
|
virtual | ~ShuffleboardValue ()=default |
|
| ShuffleboardValue (const ShuffleboardValue &)=delete |
|
ShuffleboardValue & | operator= (const ShuffleboardValue &)=delete |
|
const std::string & | GetTitle () const |
| Gets the title of this Shuffleboard value. More...
|
|
virtual void | BuildInto (std::shared_ptr< nt::NetworkTable > parentTable, std::shared_ptr< nt::NetworkTable > metaTable)=0 |
| Builds the entries for this value. More...
|
|
virtual void | EnableIfActuator () |
| Enables user control of this widget in the Shuffleboard application. More...
|
|
virtual void | DisableIfActuator () |
| Disables user control of this widget in the Shuffleboard application. More...
|
|
A Shuffleboard widget that handles a Sendable object such as a motor controller or sensor.