/dports/devel/indi/indi-1.9.1/libs/indibase/property/ |
H A D | indipropertyview_client.cpp | 76 void PropertyView<IText>::fill( in fill() 83 void PropertyView<INumber>::fill( in fill() 90 void PropertyView<ISwitch>::fill( in fill() 97 void PropertyView<ILight>::fill( in fill() 104 void PropertyView<IBLOB>::fill( in fill() 123 bool PropertyView<IBLOB>::update( in update() 151 template struct PropertyView<INumber>; variable 152 template struct PropertyView<IText>; variable 153 template struct PropertyView<ISwitch>; variable 154 template struct PropertyView<ILight>; variable [all …]
|
H A D | indipropertyview_driver.cpp | 74 void PropertyView<IText>::fill( in fill() 86 void PropertyView<INumber>::fill( in fill() 98 void PropertyView<ISwitch>::fill( in fill() 110 void PropertyView<ILight>::fill( in fill() 122 void PropertyView<IBLOB>::fill( in fill() 146 bool PropertyView<IBLOB>::update( in update() 181 template struct PropertyView<INumber>; variable 182 template struct PropertyView<IText>; variable 183 template struct PropertyView<ISwitch>; variable 184 template struct PropertyView<ILight>; variable [all …]
|
H A D | indipropertyview.h | 39 template <typename> struct PropertyView; 89 PropertyView(); argument 559 inline PropertyView<T>::PropertyView() 652 inline void PropertyView<T>::setRule(ISRule) 736 inline int PropertyView<IText>::count() const 752 inline int PropertyView<IBLOB>::count() const 756 inline PropertyView<IText>::WidgetType *PropertyView<IText>::widget() const 760 inline PropertyView<INumber>::WidgetType *PropertyView<INumber>::widget() const 764 inline PropertyView<ISwitch>::WidgetType *PropertyView<ISwitch>::widget() const 768 inline PropertyView<ILight>::WidgetType *PropertyView<ILight>::widget() const [all …]
|
H A D | indiproperty.cpp | 91 …case INDI_NUMBER: { auto property = static_cast<PropertyView<INumber> *>(d->property); CODE } brea… 368 PropertyView<INumber> *Property::getNumber() const in getNumber() 372 return static_cast<PropertyView<INumber>*>(d->property); in getNumber() 377 PropertyView<IText> *Property::getText() const in getText() 381 return static_cast<PropertyView<IText>*>(d->property); in getText() 386 PropertyView<ILight> *Property::getLight() const in getLight() 390 return static_cast<PropertyView<ILight>*>(d->property); in getLight() 395 PropertyView<ISwitch> *Property::getSwitch() const in getSwitch() 399 return static_cast<PropertyView<ISwitch>*>(d->property); in getSwitch() 404 PropertyView<IBLOB> *Property::getBLOB() const in getBLOB() [all …]
|
H A D | indiproperty.h | 113 INDI::PropertyView<INumber> *getNumber() const; 114 INDI::PropertyView<IText> *getText() const; 115 INDI::PropertyView<ISwitch> *getSwitch() const; 116 INDI::PropertyView<ILight> *getLight() const; 117 INDI::PropertyView<IBLOB> *getBLOB() const;
|
H A D | indipropertybasic_p.h | 38 PropertyView<T> property;
|
H A D | indipropertybasic.h | 97 PropertyView<T> * operator &();
|
H A D | indipropertybasic.cpp | 380 PropertyView<T> * PropertyBasic<T>::operator &() in operator &()
|
/dports/audio/spectmorph/spectmorph-0.5.2/glui/ |
H A D | smmorphoutputview.hh | 32 PropertyView pv_adsr_skip; 33 PropertyView pv_adsr_attack; 34 PropertyView pv_adsr_decay; 35 PropertyView pv_adsr_sustain; 36 PropertyView pv_adsr_release; 38 PropertyView pv_portamento_glide; 39 PropertyView pv_vibrato_depth; 40 PropertyView pv_vibrato_frequency; 41 PropertyView pv_vibrato_attack; 42 PropertyView pv_velocity_sensitivity;
|
H A D | smpropertyview.cc | 12 PropertyView::PropertyView (Property& property) : in PropertyView() function in PropertyView 18 PropertyView::set_enabled (bool enabled) in set_enabled() 26 PropertyView::set_visible (bool visible) in set_visible() 34 PropertyView::init_ui (Widget *parent, FixedGrid& grid, int yoffset) in init_ui() 43 connect (slider->signal_int_value_changed, this, &PropertyView::on_value_changed); in init_ui() 53 PropertyView::init_ui (Widget *parent, OperatorLayout& op_layout) in init_ui() 62 connect (slider->signal_int_value_changed, this, &PropertyView::on_value_changed); in init_ui() 68 PropertyView::on_value_changed (int value) in on_value_changed() 77 PropertyView::on_update_value() in on_update_value()
|
H A D | smmorphlfoview.hh | 25 PropertyView pv_frequency; 26 PropertyView pv_depth; 27 PropertyView pv_center; 28 PropertyView pv_start_phase;
|
H A D | smpropertyview.hh | 16 struct PropertyView : public SignalReceiver 27 PropertyView (Property& property);
|
H A D | smmorphwavsourceview.hh | 31 PropertyView pv_position;
|
H A D | smmorphoutputview.cc | 106 …for (auto pv_ptr : vector<PropertyView *> { &pv_adsr_attack, &pv_adsr_decay, &pv_adsr_sustain, &pv… in MorphOutputView() 109 … connect (output_adsr_widget->signal_adsr_params_changed, pv_ptr, &PropertyView::on_update_value); in MorphOutputView()
|
/dports/devel/indi/indi-1.9.1/libs/indibase/ |
H A D | basedevice.h | 97 INDI::PropertyView<INumber> *getNumber(const char *name) const; 99 INDI::PropertyView<IText> *getText(const char *name) const; 101 INDI::PropertyView<ISwitch> *getSwitch(const char *name) const; 103 INDI::PropertyView<ILight> *getLight(const char *name) const; 105 INDI::PropertyView<IBLOB> *getBLOB(const char *name) const; 123 void registerProperty(INDI::PropertyView<IText> *property); 124 void registerProperty(INDI::PropertyView<INumber> *property); 125 void registerProperty(INDI::PropertyView<ISwitch> *property); 126 void registerProperty(INDI::PropertyView<ILight> *property); 127 void registerProperty(INDI::PropertyView<IBLOB> *property);
|
H A D | basedevice.cpp | 83 INDI::PropertyView<INumber> *BaseDevice::getNumber(const char *name) const in getNumber() 88 INDI::PropertyView<IText> *BaseDevice::getText(const char *name) const in getText() 90 return static_cast<PropertyView<IText> *>(getRawProperty(name, INDI_TEXT)); in getText() 93 INDI::PropertyView<ISwitch> *BaseDevice::getSwitch(const char *name) const in getSwitch() 98 INDI::PropertyView<ILight> *BaseDevice::getLight(const char *name) const in getLight() 103 INDI::PropertyView<IBLOB> *BaseDevice::getBLOB(const char *name) const in getBLOB() 942 void BaseDevice::registerProperty(PropertyView<IText> *property) in registerProperty() 947 void BaseDevice::registerProperty(PropertyView<INumber> *property) in registerProperty() 952 void BaseDevice::registerProperty(PropertyView<ISwitch> *property) in registerProperty() 957 void BaseDevice::registerProperty(PropertyView<ILight> *property) in registerProperty() [all …]
|
H A D | defaultdevice.cpp | 1000 static_cast<PropertyView<INumber>*>(property)->define(); in defineProperty() 1006 static_cast<PropertyView<IText>*>(property)->define(); in defineProperty() 1012 static_cast<PropertyView<ISwitch>*>(property)->define(); in defineProperty() 1018 static_cast<PropertyView<ILight>*>(property)->define(); in defineProperty() 1024 static_cast<PropertyView<IBLOB>*>(property)->define(); in defineProperty()
|
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/auxiliary/ |
H A D | portselector.cpp | 72 …INDI::PropertyView<ISwitch> connectionMode = *(m_Device->getBaseDevice()->getSwitch("CONNECTION_MO… in initGUI() 86 …INDI::PropertyView<ISwitch> connectionMode = *(m_Device->getBaseDevice()->getSwitch("CONNECTION_MO… in initGUI() 93 INDI::PropertyView<ISwitch> connectionMode = *(modeProperty->getSwitch()); in initGUI() 103 … INDI::PropertyView<ISwitch> systemPorts = *(m_Device->getBaseDevice()->getSwitch("SYSTEM_PORTS")); in initGUI() 113 INDI::PropertyView<ISwitch> systemPortsSwitch = *(systemPorts->getSwitch()); in initGUI() 122 … INDI::PropertyView<IText> port = *(m_Device->getBaseDevice()->getText("DEVICE_PORT")); in initGUI() 153 … INDI::PropertyView<IText> server = *(m_Device->getBaseDevice()->getText("DEVICE_ADDRESS")); in initGUI() 162 … INDI::PropertyView<IText> server = *(m_Device->getBaseDevice()->getText("DEVICE_ADDRESS")); in initGUI() 225 …INDI::PropertyView<ISwitch> connectionMode = *(m_Device->getBaseDevice()->getSwitch("CONNECTION_MO… in syncGUI() 235 INDI::PropertyView<IText> port = *(m_Device->getBaseDevice()->getText("DEVICE_PORT")); in syncGUI() [all …]
|
/dports/astro/kstars/kstars-3.5.6/kstars/indi/ |
H A D | indifocuser.cpp | 172 INDI::PropertyView<INumber> *focusProp; in moveRel()
|
H A D | indistd.cpp | 1210 INDI::PropertyView<INumber> *npulse = nullptr; in doPulse()
|
H A D | inditelescope.cpp | 557 INDI::PropertyView<INumber> *npulse = nullptr; in doPulse()
|
/dports/devel/indi/indi-1.9.1/libs/stream/ |
H A D | streammanager_p.h | 196 INDI::PropertyView<IBLOB> *imageBP {nullptr};
|
/dports/devel/indi/indi-1.9.1/ |
H A D | ChangeLog | 273 155ca727 2021-03-02 Paweł Soja PropertyView - client/server side + refactor (#1361) 274 …4c3f1c60 2021-02-28 Paweł Soja PropertyView - implementation of subsequent methods (#136…
|