Lines Matching refs:nControlId
163 void ControlHelper::enableControl( const sal_Int16 nControlId, const sal_Bool bEnable ) const in enableControl() argument
165 DBG_PRINT_ENTRY(CLASS_NAME, __func__, "controlId", nControlId, "enable", bEnable); in enableControl()
169 if (nControlId == ExtendedFilePickerElementIds::CHECKBOX_PREVIEW) { in enableControl()
175 NSControl* pControl = getControl(nControlId); in enableControl()
185 OSL_TRACE("enable unknown control %d", nControlId ); in enableControl()
191 OUString ControlHelper::getLabel( sal_Int16 nControlId ) in getLabel() argument
193 DBG_PRINT_ENTRY(CLASS_NAME, __func__, "controlId", nControlId); in getLabel()
197 NSControl* pControl = getControl( nControlId ); in getLabel()
200 OSL_TRACE("Get label for unknown control %d", nControlId); in getLabel()
220 void ControlHelper::setLabel( sal_Int16 nControlId, NSString* aLabel ) in setLabel() argument
222 DBG_PRINT_ENTRY(CLASS_NAME, __func__, "controlId", nControlId, "label", aLabel); in setLabel()
228 NSControl* pControl = getControl(nControlId); in setLabel()
252 void ControlHelper::setValue( sal_Int16 nControlId, sal_Int16 nControlAction, const uno::Any& rValu… in setValue() argument
254 DBG_PRINT_ENTRY(CLASS_NAME, __func__, "controlId", nControlId, "controlAction", nControlAction); in setValue()
258 if (nControlId == ExtendedFilePickerElementIds::CHECKBOX_PREVIEW) { in setValue()
262 NSControl* pControl = getControl( nControlId ); in setValue()
265 OSL_TRACE("enable unknown control %d", nControlId); in setValue()
277 nControlId, nControlAction); in setValue()
285 uno::Any ControlHelper::getValue( sal_Int16 nControlId, sal_Int16 nControlAction ) const in getValue() argument
287 DBG_PRINT_ENTRY(CLASS_NAME, __func__, "controlId", nControlId, "controlAction", nControlAction); in getValue()
292 NSControl* pControl = getControl( nControlId ); in getValue()
295 OSL_TRACE("get value for unknown control %d", nControlId); in getValue()
555 int ControlHelper::getControlElementName(const Class aClazz, const int nControlId) const in getControlElementName()
557 …_ENTRY(CLASS_NAME, __func__, "aClazz", [[aClazz description] UTF8String], "controlId", nControlId); in getControlElementName()
562 switch (nControlId) { in getControlElementName()
574 switch (nControlId) { in getControlElementName()
746 NSControl* ControlHelper::getControl( const sal_Int16 nControlId ) const in getControl()
748 DBG_PRINT_ENTRY(CLASS_NAME, __func__, "controlId", nControlId); in getControl()
772 switch( nControlId ) in getControl()
789 OSL_TRACE("Handle unknown control %d", nControlId); in getControl()