Lines Matching refs:m_aTablesList
145 ,m_aTablesList (this, NULL,ModuleRes(CTL_TABLESUBSCRIPTION),sal_True) in DBG_NAME()
153 m_aTablesList.SetCheckHandler(getControlModifiedLink()); in DBG_NAME()
156 m_aTablesList.SetSelectionMode( MULTIPLE_SELECTION ); in DBG_NAME()
157 m_aTablesList.SetDragDropMode( 0 ); in DBG_NAME()
158 m_aTablesList.EnableInplaceEditing( sal_False ); in DBG_NAME()
159 …m_aTablesList.SetStyle(m_aTablesList.GetStyle() | WB_BORDER | WB_HASLINES | WB_HASLINESATROOT | WB… in DBG_NAME()
161 m_aTablesList.Clear(); in DBG_NAME()
165 m_aTablesList.SetCheckButtonHdl(LINK(this, OTableSubscriptionPage, OnTreeEntryChecked)); in DBG_NAME()
166 m_aTablesList.SetCheckHandler(LINK(this, OTableSubscriptionPage, OnTreeEntryChecked)); in DBG_NAME()
190 m_aTablesList.notifyHiContrastChanged(); in StateChanged()
203 m_aTablesList.notifyHiContrastChanged(); in DataChanged()
211 Size aOldSize = m_aTablesList.GetSizePixel(); in resizeControls()
213 m_aTablesList.SetPosSizePixel( in resizeControls()
214 m_aTablesList.GetPosPixel()+Point(0,_rDiff.Height()), in resizeControls()
241 SvLBoxEntry* pRootEntry = m_aTablesList.getAllObjectsEntry(); in implCheckTables()
257 SvLBoxEntry* pCatalog = m_aTablesList.GetEntryPosByName(sCatalog, pRootEntry); in implCheckTables()
264 m_aTablesList.checkWildcard(pCatalog); in implCheckTables()
269 …SvLBoxEntry* pSchema = m_aTablesList.GetEntryPosByName(sSchema, (pCatalog ? pCatalog : pRootEntry)… in implCheckTables()
276 m_aTablesList.checkWildcard(pSchema); in implCheckTables()
280 …SvLBoxEntry* pEntry = m_aTablesList.GetEntryPosByName(sName, pSchema ? pSchema : (pCatalog ? pCata… in implCheckTables()
282 m_aTablesList.SetCheckButtonState(pEntry, SV_BUTTON_CHECKED); in implCheckTables()
284 m_aTablesList.CheckButtons(); in implCheckTables()
327 m_aTablesList.Clear(); in implInitControls()
358 m_aTablesList.GetModel()->SetSortMode(SortAscending); in implInitControls()
359 … m_aTablesList.GetModel()->SetCompareHdl(LINK(this, OTableSubscriptionPage, OnTreeEntryCompare)); in implInitControls()
362 m_aTablesList.setORB(m_xORB); in implInitControls()
391 m_aTablesList.UpdateTableList( m_xCurrentConnection ); in implInitControls()
407 m_aTablesList.Enable(sal_False); in implInitControls()
409 m_aTablesList.Clear(); in implInitControls()
456 SvLBoxEntry* pExpand = m_aTablesList.getAllObjectsEntry(); in implInitControls()
459 m_aTablesList.Expand(pExpand); in implInitControls()
460 pExpand = m_aTablesList.FirstChild(pExpand); in implInitControls()
461 if (pExpand && m_aTablesList.NextSibling(pExpand)) in implInitControls()
473 SvLBoxEntry* pEntry = m_aTablesList.First(); in CheckAll()
476 m_aTablesList.SetCheckButtonState( pEntry, eState); in CheckAll()
477 pEntry = m_aTablesList.Next(pEntry); in CheckAll()
480 if (_bCheck && m_aTablesList.getAllObjectsEntry()) in CheckAll()
481 m_aTablesList.checkWildcard(m_aTablesList.getAllObjectsEntry()); in CheckAll()
544 const SvLBoxEntry* pAllObjectsEntry = m_aTablesList.getAllObjectsEntry(); in collectDetailedSelection()
547 … SvLBoxEntry* pEntry = m_aTablesList.GetModel()->Next(const_cast<SvLBoxEntry*>(pAllObjectsEntry)); in collectDetailedSelection()
555 …if (m_aTablesList.GetCheckButtonState(pEntry) == SV_BUTTON_CHECKED && !m_aTablesList.GetModel()->H… in collectDetailedSelection()
558 if(m_aTablesList.GetModel()->HasParent(pEntry)) in collectDetailedSelection()
560 pSchema = m_aTablesList.GetModel()->GetParent(pEntry); in collectDetailedSelection()
567 if(m_aTablesList.GetModel()->HasParent(pSchema)) in collectDetailedSelection()
569 pCatalog = m_aTablesList.GetModel()->GetParent(pSchema); in collectDetailedSelection()
576 bCatalogWildcard = m_aTablesList.isWildcardChecked(pCatalog); in collectDetailedSelection()
579 sComposedName += m_aTablesList.GetEntryText( pCatalog ); in collectDetailedSelection()
591 sCatalog += m_aTablesList.GetEntryText( pCatalog ); in collectDetailedSelection()
595 bSchemaWildcard = m_aTablesList.isWildcardChecked(pSchema); in collectDetailedSelection()
596 sComposedName += m_aTablesList.GetEntryText( pSchema ); in collectDetailedSelection()
604 sComposedName += m_aTablesList.GetEntryText( pEntry ); in collectDetailedSelection()
624 pEntry = m_aTablesList.GetModel()->Next(pEntry); in collectDetailedSelection()
636 pReturn = m_aTablesList.NextSibling(_pEntry); in implNextSibling()
638 pReturn = implNextSibling(m_aTablesList.GetParent(_pEntry)); in implNextSibling()
658 if (m_aTablesList.isWildcardChecked(m_aTablesList.getAllObjectsEntry())) in FillItemSet()
680 _rControlList.push_back(new ODisableWrapper<OTableTreeListBox>(&m_aTablesList)); in fillWindows()