Lines Matching refs:iCustom

491 static void setLabelToControl(CResourceProvider& rResourceProvider, TFileDialogCustomize iCustom, s…  in setLabelToControl()  argument
495 iCustom->SetControlLabel(nControlId, reinterpret_cast<LPCWSTR>(aLabel.getStr()) ); in setLabelToControl()
545 TFileDialogCustomize iCustom = impl_getCustomizeInterface(); in impl_sta_enableFeatures() local
549 iCustom->StartVisualGroup (GROUP_VERSION, L"Version"); in impl_sta_enableFeatures()
550 iCustom->AddComboBox (css::ui::dialogs::ExtendedFilePickerElementIds::LISTBOX_VERSION); in impl_sta_enableFeatures()
551 iCustom->EndVisualGroup (); in impl_sta_enableFeatures()
552 iCustom->MakeProminent (GROUP_VERSION); in impl_sta_enableFeatures()
557 iCustom->StartVisualGroup (GROUP_TEMPLATE, L"Template"); in impl_sta_enableFeatures()
558iCustom->AddComboBox (css::ui::dialogs::ExtendedFilePickerElementIds::LISTBOX_TEMPLATE); in impl_sta_enableFeatures()
559 iCustom->EndVisualGroup (); in impl_sta_enableFeatures()
560 iCustom->MakeProminent (GROUP_TEMPLATE); in impl_sta_enableFeatures()
565 iCustom->StartVisualGroup (GROUP_IMAGETEMPLATE, L"Style"); in impl_sta_enableFeatures()
566iCustom->AddComboBox (css::ui::dialogs::ExtendedFilePickerElementIds::LISTBOX_IMAGE_TEMPLATE); in impl_sta_enableFeatures()
567 iCustom->EndVisualGroup (); in impl_sta_enableFeatures()
568 iCustom->MakeProminent (GROUP_IMAGETEMPLATE); in impl_sta_enableFeatures()
571 iCustom->StartVisualGroup (GROUP_CHECKBOXES, L""); in impl_sta_enableFeatures()
577 iCustom->AddCheckButton (nControlId, L"Auto Extension", true); in impl_sta_enableFeatures()
578 setLabelToControl(m_ResProvider, iCustom, nControlId); in impl_sta_enableFeatures()
584 iCustom->AddCheckButton (nControlId, L"Password", false); in impl_sta_enableFeatures()
585 setLabelToControl(m_ResProvider, iCustom, nControlId); in impl_sta_enableFeatures()
591 iCustom->AddCheckButton (nControlId, L"Readonly", false); in impl_sta_enableFeatures()
592 setLabelToControl(m_ResProvider, iCustom, nControlId); in impl_sta_enableFeatures()
598 iCustom->AddCheckButton (nControlId, L"Filter Options", false); in impl_sta_enableFeatures()
599 setLabelToControl(m_ResProvider, iCustom, nControlId); in impl_sta_enableFeatures()
605 iCustom->AddCheckButton (nControlId, L"Link", false); in impl_sta_enableFeatures()
606 setLabelToControl(m_ResProvider, iCustom, nControlId); in impl_sta_enableFeatures()
612 iCustom->AddCheckButton (nControlId, L"Selection", false); in impl_sta_enableFeatures()
613 setLabelToControl(m_ResProvider, iCustom, nControlId); in impl_sta_enableFeatures()
621 iCustom->EndVisualGroup(); in impl_sta_enableFeatures()
624iCustom->AddPushButton (css::ui::dialogs::ExtendedFilePickerElementIds::PUSHBUTTON_PLAY, L"Play"); in impl_sta_enableFeatures()
736 TFileDialogCustomize iCustom = impl_getCustomizeInterface(); in impl_sta_SetDefaultName() local
737 if ( ! iCustom.is()) in impl_sta_SetDefaultName()
743 …HRESULT hResult = iCustom->GetCheckButtonState( css::ui::dialogs::ExtendedFilePickerElementIds::CH… in impl_sta_SetDefaultName()
909 TFileDialogCustomize iCustom = impl_getCustomizeInterface(); in impl_sta_ShowDialogModal() local
912 …HRESULT hResult = iCustom->GetCheckButtonState( css::ui::dialogs::ExtendedFilePickerElementIds::CH… in impl_sta_ShowDialogModal()
1005 TFileDialogCustomize iCustom; in impl_getCustomizeInterface() local
1012 m_iDialogOpen->QueryInterface(IID_IFileDialogCustomize, (void**)(&iCustom)); in impl_getCustomizeInterface()
1014 m_iDialogOpen.query(&iCustom); in impl_getCustomizeInterface()
1019 m_iDialogSave->QueryInterface(IID_IFileDialogCustomize, (void**)(&iCustom)); in impl_getCustomizeInterface()
1021 m_iDialogSave.query(&iCustom); in impl_getCustomizeInterface()
1024 return iCustom; in impl_getCustomizeInterface()
1028 void lcl_removeControlItemsWorkaround(const TFileDialogCustomize& iCustom , in lcl_removeControlItemsWorkaround() argument
1034 hResult = iCustom->SetSelectedControlItem(nControlId, 1000); in lcl_removeControlItemsWorkaround()
1037 hResult = iCustom->RemoveControlItem(nControlId, i++); in lcl_removeControlItemsWorkaround()
1050 TFileDialogCustomize iCustom = impl_getCustomizeInterface(); in impl_sta_SetControlValue() local
1051 if ( ! iCustom.is()) in impl_sta_SetControlValue()
1066 iCustom->SetCheckButtonState(nId, bValue); in impl_sta_SetControlValue()
1079 hResult = iCustom->RemoveAllControlItems(nId); in impl_sta_SetControlValue()
1081 lcl_removeControlItemsWorkaround(iCustom, nId); in impl_sta_SetControlValue()
1092 … hResult = iCustom->AddControlItem(nId, i, reinterpret_cast<LPCTSTR>(sItem.getStr())); in impl_sta_SetControlValue()
1101 hResult = iCustom->SetSelectedControlItem(nId, nItem); in impl_sta_SetControlValue()
1124 TFileDialogCustomize iCustom = impl_getCustomizeInterface(); in impl_sta_GetControlValue() local
1125 if ( ! iCustom.is()) in impl_sta_GetControlValue()
1140 HRESULT hResult = iCustom->GetCheckButtonState(nId, &bValue); in impl_sta_GetControlValue()
1160 TFileDialogCustomize iCustom = impl_getCustomizeInterface(); in impl_sta_SetControlLabel() local
1161 if ( ! iCustom.is()) in impl_sta_SetControlLabel()
1163 iCustom->SetControlLabel ( nId, reinterpret_cast<LPCTSTR>(sLabel.getStr())); in impl_sta_SetControlLabel()
1180 TFileDialogCustomize iCustom = impl_getCustomizeInterface(); in impl_sta_EnableControl() local
1181 if ( ! iCustom.is()) in impl_sta_EnableControl()
1190 iCustom->SetControlState(nId, eState); in impl_sta_EnableControl()