Lines Matching refs:m_aTablesList
147 ,m_aTablesList (this, NULL,ModuleRes(CTL_TABLESUBSCRIPTION),sal_True) in DBG_NAME()
155 m_aTablesList.SetCheckHandler(getControlModifiedLink()); in DBG_NAME()
158 m_aTablesList.SetSelectionMode( MULTIPLE_SELECTION ); in DBG_NAME()
159 m_aTablesList.SetDragDropMode( 0 ); in DBG_NAME()
160 m_aTablesList.EnableInplaceEditing( sal_False ); in DBG_NAME()
161 …m_aTablesList.SetStyle(m_aTablesList.GetStyle() | WB_BORDER | WB_HASLINES | WB_HASLINESATROOT | WB… in DBG_NAME()
163 m_aTablesList.Clear(); in DBG_NAME()
167 m_aTablesList.SetCheckButtonHdl(LINK(this, OTableSubscriptionPage, OnTreeEntryChecked)); in DBG_NAME()
168 m_aTablesList.SetCheckHandler(LINK(this, OTableSubscriptionPage, OnTreeEntryChecked)); in DBG_NAME()
192 m_aTablesList.notifyHiContrastChanged(); in StateChanged()
205 m_aTablesList.notifyHiContrastChanged(); in DataChanged()
213 Size aOldSize = m_aTablesList.GetSizePixel(); in resizeControls()
215 m_aTablesList.SetPosSizePixel( in resizeControls()
216 m_aTablesList.GetPosPixel()+Point(0,_rDiff.Height()), in resizeControls()
243 SvLBoxEntry* pRootEntry = m_aTablesList.getAllObjectsEntry(); in implCheckTables()
259 SvLBoxEntry* pCatalog = m_aTablesList.GetEntryPosByName(sCatalog, pRootEntry); in implCheckTables()
266 m_aTablesList.checkWildcard(pCatalog); in implCheckTables()
271 …SvLBoxEntry* pSchema = m_aTablesList.GetEntryPosByName(sSchema, (pCatalog ? pCatalog : pRootEntry)… in implCheckTables()
278 m_aTablesList.checkWildcard(pSchema); in implCheckTables()
282 …SvLBoxEntry* pEntry = m_aTablesList.GetEntryPosByName(sName, pSchema ? pSchema : (pCatalog ? pCata… in implCheckTables()
284 m_aTablesList.SetCheckButtonState(pEntry, SV_BUTTON_CHECKED); in implCheckTables()
286 m_aTablesList.CheckButtons(); in implCheckTables()
329 m_aTablesList.Clear(); in implInitControls()
360 m_aTablesList.GetModel()->SetSortMode(SortAscending); in implInitControls()
361 … m_aTablesList.GetModel()->SetCompareHdl(LINK(this, OTableSubscriptionPage, OnTreeEntryCompare)); in implInitControls()
364 m_aTablesList.setORB(m_xORB); in implInitControls()
393 m_aTablesList.UpdateTableList( m_xCurrentConnection ); in implInitControls()
409 m_aTablesList.Enable(sal_False); in implInitControls()
411 m_aTablesList.Clear(); in implInitControls()
458 SvLBoxEntry* pExpand = m_aTablesList.getAllObjectsEntry(); in implInitControls()
461 m_aTablesList.Expand(pExpand); in implInitControls()
462 pExpand = m_aTablesList.FirstChild(pExpand); in implInitControls()
463 if (pExpand && m_aTablesList.NextSibling(pExpand)) in implInitControls()
475 SvLBoxEntry* pEntry = m_aTablesList.First(); in CheckAll()
478 m_aTablesList.SetCheckButtonState( pEntry, eState); in CheckAll()
479 pEntry = m_aTablesList.Next(pEntry); in CheckAll()
482 if (_bCheck && m_aTablesList.getAllObjectsEntry()) in CheckAll()
483 m_aTablesList.checkWildcard(m_aTablesList.getAllObjectsEntry()); in CheckAll()
546 const SvLBoxEntry* pAllObjectsEntry = m_aTablesList.getAllObjectsEntry(); in collectDetailedSelection()
549 … SvLBoxEntry* pEntry = m_aTablesList.GetModel()->Next(const_cast<SvLBoxEntry*>(pAllObjectsEntry)); in collectDetailedSelection()
557 …if (m_aTablesList.GetCheckButtonState(pEntry) == SV_BUTTON_CHECKED && !m_aTablesList.GetModel()->H… in collectDetailedSelection()
560 if(m_aTablesList.GetModel()->HasParent(pEntry)) in collectDetailedSelection()
562 pSchema = m_aTablesList.GetModel()->GetParent(pEntry); in collectDetailedSelection()
569 if(m_aTablesList.GetModel()->HasParent(pSchema)) in collectDetailedSelection()
571 pCatalog = m_aTablesList.GetModel()->GetParent(pSchema); in collectDetailedSelection()
578 bCatalogWildcard = m_aTablesList.isWildcardChecked(pCatalog); in collectDetailedSelection()
581 sComposedName += m_aTablesList.GetEntryText( pCatalog ); in collectDetailedSelection()
593 sCatalog += m_aTablesList.GetEntryText( pCatalog ); in collectDetailedSelection()
597 bSchemaWildcard = m_aTablesList.isWildcardChecked(pSchema); in collectDetailedSelection()
598 sComposedName += m_aTablesList.GetEntryText( pSchema ); in collectDetailedSelection()
606 sComposedName += m_aTablesList.GetEntryText( pEntry ); in collectDetailedSelection()
626 pEntry = m_aTablesList.GetModel()->Next(pEntry); in collectDetailedSelection()
638 pReturn = m_aTablesList.NextSibling(_pEntry); in implNextSibling()
640 pReturn = implNextSibling(m_aTablesList.GetParent(_pEntry)); in implNextSibling()
660 if (m_aTablesList.isWildcardChecked(m_aTablesList.getAllObjectsEntry())) in FillItemSet()
682 _rControlList.push_back(new ODisableWrapper<OTableTreeListBox>(&m_aTablesList)); in fillWindows()