Lines Matching refs:nIndex

1695     for(sal_uInt16 nIndex = 0; nIndex < AUTH_FIELD_END; nIndex++)  in SwCreateAuthEntryDlg_Impl()  local
1697 const TextInfo aCurInfo = aTextInfoArr[nIndex]; in SwCreateAuthEntryDlg_Impl()
1699 pFixedTexts[nIndex] = new FixedText(this); in SwCreateAuthEntryDlg_Impl()
1700 if(nIndex) in SwCreateAuthEntryDlg_Impl()
1701 pFixedTexts[nIndex]->SetZOrder( pRefWindow, WINDOW_ZORDER_BEHIND ); in SwCreateAuthEntryDlg_Impl()
1703 pFixedTexts[nIndex]->SetZOrder( 0, WINDOW_ZORDER_FIRST ); in SwCreateAuthEntryDlg_Impl()
1705 pRefWindow = pFixedTexts[nIndex]; in SwCreateAuthEntryDlg_Impl()
1707 pFixedTexts[nIndex]->SetSizePixel(aFixedTextSize); in SwCreateAuthEntryDlg_Impl()
1708 pFixedTexts[nIndex]->SetPosPixel(bLeft ? aTL1 : aTL2); in SwCreateAuthEntryDlg_Impl()
1709 pFixedTexts[nIndex]->SetText(SW_RES(STR_AUTH_FIELD_START + aCurInfo.nToxField)); in SwCreateAuthEntryDlg_Impl()
1710 pFixedTexts[nIndex]->Show(); in SwCreateAuthEntryDlg_Impl()
1711 pEdits[nIndex] = 0; in SwCreateAuthEntryDlg_Impl()
1762 pEdits[nIndex] = new Edit(this, WB_BORDER); in SwCreateAuthEntryDlg_Impl()
1763 pEdits[nIndex]->SetZOrder( pRefWindow, WINDOW_ZORDER_BEHIND ); in SwCreateAuthEntryDlg_Impl()
1764 pRefWindow = pEdits[nIndex]; in SwCreateAuthEntryDlg_Impl()
1765 pEdits[nIndex]->SetSizePixel(aEditSize); in SwCreateAuthEntryDlg_Impl()
1766 pEdits[nIndex]->SetPosPixel(bLeft ? aTR1 : aTR2); in SwCreateAuthEntryDlg_Impl()
1767 pEdits[nIndex]->SetText(pFields[aCurInfo.nToxField]); in SwCreateAuthEntryDlg_Impl()
1768 pEdits[nIndex]->Show(); in SwCreateAuthEntryDlg_Impl()
1769 pEdits[nIndex]->SetHelpId(aCurInfo.pHelpId); in SwCreateAuthEntryDlg_Impl()
1772 pEdits[nIndex]->SetModifyHdl(LINK(this, SwCreateAuthEntryDlg_Impl, ShortNameHdl)); in SwCreateAuthEntryDlg_Impl()
1773 m_bNameAllowed = pFields[nIndex].Len() > 0; in SwCreateAuthEntryDlg_Impl()
1776 pFixedTexts[nIndex]->Enable(sal_False); in SwCreateAuthEntryDlg_Impl()
1777 pEdits[nIndex]->Enable(sal_False); in SwCreateAuthEntryDlg_Impl()
1835 for(sal_uInt16 nIndex = 0; nIndex < AUTH_FIELD_END; nIndex++) in GetEntryText() local
1837 const TextInfo aCurInfo = aTextInfoArr[nIndex]; in GetEntryText()
1840 sRet = pEdits[nIndex]->GetText(); in GetEntryText()