Lines Matching refs:nConf

784 void StatementCommand::WriteControlData( Window *pBase, sal_uLong nConf, sal_Bool bFirst )  in WriteControlData()  argument
791 …pRet->GenReturn ( RET_WinInfo, rtl::OString(), (comm_ULONG)nConf | DH_MODE_DATA_VALID, UniString()… in WriteControlData()
868 if ( pBase->GetUniqueOrHelpId().isEmpty() && !( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
923 … if ( pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
926 … if ( !pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
934 … 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()
942 WriteControlData( pItemWin->GetChild(ii), nConf, sal_False ); in WriteControlData()
946 if ( nConf & DH_MODE_ALLWIN ) in WriteControlData()
969 … if ( pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
972 … if ( !pTB->GetItemCommand(pTB->GetItemId( i )).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
1049 … == MENUITEM_IMAGE || pMenu->GetItemType( i ) == MENUITEM_STRINGIMAGE || (nConf & DH_MODE_ALLWIN) ) in WriteControlData()
1072 if ( pMenu->GetItemCommand(nID).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
1075 if ( !pMenu->GetItemCommand(nID).Len() || ( nConf & DH_MODE_ALLWIN ) ) in WriteControlData()
1087 WriteControlData( pBase->GetChild(i), nConf, sal_False ); in WriteControlData()
1168 void EnableButtons( sal_uLong nConf );
1200 void SetConfig( sal_uLong nConf );
1261 void DisplayHidWin::EnableButtons( sal_uLong nConf ) in EnableButtons() argument
1263 sal_Bool bSend = sal_Bool(nConf & DH_MODE_SEND_DATA); in EnableButtons()
1314 void DisplayHidWin::SetConfig( sal_uLong nConf ) in SetConfig() argument
1316 SetItemState( TT_KURZNAME, ( nConf & DH_MODE_KURZNAME ) ? STATE_CHECK : STATE_NOCHECK ); in SetConfig()
1317 SetItemState( TT_LANGNAME, ( nConf & DH_MODE_LANGNAME ) ? STATE_CHECK : STATE_NOCHECK ); in SetConfig()
1318 SetItemState( TT_ALLWIN, ( nConf & DH_MODE_ALLWIN ) ? STATE_CHECK : STATE_NOCHECK ); in SetConfig()
1319 SetItemState( TT_SEND_DATA, ( nConf & DH_MODE_SEND_DATA ) ? STATE_CHECK : STATE_NOCHECK ); in SetConfig()
1320 EnableButtons( nConf ); in SetConfig()
1325 sal_uLong nConf = 0; in GetConfig() local
1327 nConf |= DH_MODE_KURZNAME; in GetConfig()
1329 nConf |= DH_MODE_LANGNAME; in GetConfig()
1331 nConf |= DH_MODE_ALLWIN; in GetConfig()
1333 nConf |= DH_MODE_SEND_DATA; in GetConfig()
1335 return nConf; in GetConfig()