Lines Matching refs:nConf

787 void StatementCommand::WriteControlData( Window *pBase, sal_uLong nConf, sal_Bool bFirst )  in WriteControlData()  argument
794 …pRet->GenReturn ( RET_WinInfo, rtl::OString(), (comm_ULONG)nConf | DH_MODE_DATA_VALID, UniString()… in WriteControlData()
871 if ( pBase->GetUniqueOrHelpId().isEmpty() && !( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
926 if ( pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
929 if ( !pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
937 … if ( pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
940 … if ( !pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
945 WriteControlData( pItemWin->GetChild(ii), nConf, sal_False ); in WriteControlData()
949 if ( nConf & DH_MODE_ALLWIN ) in WriteControlData()
972 … if ( pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
975 … if ( !pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
1052 …== MENUITEM_IMAGE || pMenu->GetItemType( i ) == MENUITEM_STRINGIMAGE || (nConf & DH_MODE_ALLWIN) ) in WriteControlData()
1075 if ( pMenu->GetItemCommand(nID).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
1078 if ( !pMenu->GetItemCommand(nID).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
1090 WriteControlData( pBase->GetChild(i), nConf, sal_False ); in WriteControlData()
1172 void EnableButtons( sal_uLong nConf );
1204 void SetConfig( sal_uLong nConf );
1265 void DisplayHidWin::EnableButtons( sal_uLong nConf ) in EnableButtons() argument
1267 sal_Bool bSend = sal_Bool(nConf & DH_MODE_SEND_DATA); in EnableButtons()
1318 void DisplayHidWin::SetConfig( sal_uLong nConf ) in SetConfig() argument
1320 SetItemState( TT_KURZNAME, ( nConf & DH_MODE_KURZNAME ) ? STATE_CHECK : STATE_NOCHECK ); in SetConfig()
1321 SetItemState( TT_LANGNAME, ( nConf & DH_MODE_LANGNAME ) ? STATE_CHECK : STATE_NOCHECK ); in SetConfig()
1322 SetItemState( TT_ALLWIN, ( nConf & DH_MODE_ALLWIN ) ? STATE_CHECK : STATE_NOCHECK ); in SetConfig()
1323 SetItemState( TT_SEND_DATA, ( nConf & DH_MODE_SEND_DATA ) ? STATE_CHECK : STATE_NOCHECK ); in SetConfig()
1324 EnableButtons( nConf ); in SetConfig()
1329 sal_uLong nConf = 0; in GetConfig() local
1331 nConf |= DH_MODE_KURZNAME; in GetConfig()
1333 nConf |= DH_MODE_LANGNAME; in GetConfig()
1335 nConf |= DH_MODE_ALLWIN; in GetConfig()
1337 nConf |= DH_MODE_SEND_DATA; in GetConfig()
1339 return nConf; in GetConfig()