Inviwo
0.9.10.1
Inviwo documentation
|
#include <minmaxpropertywidgetcef.h>
Public Member Functions | |
MinMaxPropertyWidgetCEF (MinMaxProperty< T > *property, CefRefPtr< CefFrame > frame=nullptr, std::string htmlId="") | |
virtual | ~MinMaxPropertyWidgetCEF ()=default |
virtual void | updateFromProperty () override |
virtual bool | onQuery (CefRefPtr< CefBrowser > browser, CefRefPtr< CefFrame > frame, int64, const CefString &request, bool, CefRefPtr< CefMessageRouterBrowserSide::Handler::Callback > callback) override |
Public Member Functions inherited from inviwo::PropertyWidgetCEF | |
PropertyWidgetCEF (Property *prop, std::unique_ptr< PropertyJSONConverter > converter, CefRefPtr< CefFrame > frame=nullptr, std::string onChange="") | |
void | setFrameIfPartOfFrame (CefRefPtr< CefFrame > frame) |
void | setOnChange (std::string onChange) |
const std::string & | getOnChange () const |
void | setPropertyObserverCallback (std::string propertyObserverCallback) |
const std::string & | getPropertyObserverCallback () const |
Public Member Functions inherited from inviwo::PropertyWidget | |
PropertyWidget (Property *property) | |
virtual | ~PropertyWidget () |
virtual PropertyEditorWidget * | getEditorWidget () const |
virtual bool | hasEditorWidget () const |
virtual Property * | getProperty () |
Public Member Functions inherited from inviwo::Observer | |
Observer (const Observer &other) | |
Observer (Observer &&other) | |
Observer & | operator= (Observer &&other) |
Observer & | operator= (const Observer &other) |
virtual | ~Observer () |
void | removeObservation (ObservableInterface *observable) |
void | removeObservations () |
Additional Inherited Members | |
Protected Types inherited from inviwo::Observer | |
using | ObservableSet = std::unordered_set< ObservableInterface * > |
Protected Member Functions inherited from inviwo::PropertyWidgetCEF | |
virtual void | onSetIdentifier (Property *property, const std::string &identifier) override |
virtual void | onSetDisplayName (Property *property, const std::string &displayName) override |
virtual void | onSetSemantics (Property *property, const PropertySemantics &semantics) override |
virtual void | onSetReadOnly (Property *property, bool readonly) override |
virtual void | onSetVisible (Property *property, bool visible) override |
virtual void | onSetUsageMode (Property *property, UsageMode usageMode) override |
void | setFrame (CefRefPtr< CefFrame > frame) |
Protected Member Functions inherited from inviwo::Observer | |
void | addObservation (ObservableInterface *observable) |
Protected Attributes inherited from inviwo::PropertyWidgetCEF | |
std::unique_ptr< PropertyJSONConverter > | converter_ |
std::string | onChange_ |
std::string | propertyObserverCallback_ |
Callback to execute in javascript when property changes. | |
CefRefPtr< CefFrame > | frame_ |
Execute on any PropertyObserver notifications. | |
Protected Attributes inherited from inviwo::PropertyWidget | |
Property * | property_ = nullptr |
Protected Attributes inherited from inviwo::Observer | |
ObservableSet | observables_ |
Widget for synchronizing HTML elements:
where there are min and max attributes. The min and max attributes correspond to MinMaxProperty<T>::value Optionally, there may also be start, end, step and minSeparation attributes.
inviwo::MinMaxPropertyWidgetCEF< T >::MinMaxPropertyWidgetCEF | ( | MinMaxProperty< T > * | property, |
CefRefPtr< CefFrame > | frame = nullptr , |
||
std::string | htmlId = "" |
||
) |
The PropertyWidget will register it self with the property.
|
virtualdefault |
The PropertyWidget will deregister it self with the property.
|
overridevirtual |
Update HTML widget using calls javascript oninput() function on element. Assumes that widget is HTML input attribute.
Reimplemented from inviwo::PropertyWidgetCEF.