/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include "srchxtra.hxx" #include #include #include #include #include #include #include #include #include #include "chardlg.hxx" #include "paragrph.hxx" #include #include "backgrnd.hxx" #include #include #include #include "svtools/treelistentry.hxx" SvxSearchFormatDialog::SvxSearchFormatDialog(vcl::Window* pParent, const SfxItemSet& rSet) : SfxTabDialog(pParent, "SearchFormatDialog", "cui/ui/searchformatdialog.ui", &rSet) , m_pFontList(NULL) , m_nNamePageId(0) , m_nParaStdPageId(0) , m_nParaAlignPageId(0) , m_nBackPageId(0) { m_nNamePageId = AddTabPage("font", SvxCharNamePage::Create, 0); AddTabPage("fonteffects", SvxCharEffectsPage::Create, 0); AddTabPage("position", SvxCharPositionPage::Create, 0); AddTabPage("asianlayout", SvxCharTwoLinesPage::Create, 0); m_nParaStdPageId = AddTabPage("labelTP_PARA_STD", SvxStdParagraphTabPage::Create, 0); m_nParaAlignPageId = AddTabPage("labelTP_PARA_ALIGN", SvxParaAlignTabPage::Create, 0); AddTabPage("labelTP_PARA_EXT", SvxExtParagraphTabPage::Create, 0); AddTabPage("labelTP_PARA_ASIAN", SvxAsianTabPage::Create, 0 ); m_nBackPageId = AddTabPage("background", SvxBackgroundTabPage::Create, 0); // remove asian tabpages if necessary SvtCJKOptions aCJKOptions; if ( !aCJKOptions.IsDoubleLinesEnabled() ) RemoveTabPage("asianlayout"); if ( !aCJKOptions.IsAsianTypographyEnabled() ) RemoveTabPage("labelTP_PARA_ASIAN"); } SvxSearchFormatDialog::~SvxSearchFormatDialog() { dispose(); } void SvxSearchFormatDialog::dispose() { delete m_pFontList; m_pFontList = NULL; SfxTabDialog::dispose(); } void SvxSearchFormatDialog::PageCreated( sal_uInt16 nId, SfxTabPage& rPage ) { if (nId == m_nNamePageId) { const FontList* pApm_pFontList = 0; SfxObjectShell* pSh = SfxObjectShell::Current(); if ( pSh ) { const SvxFontListItem* pFLItem = static_cast( pSh->GetItem( SID_ATTR_CHAR_FONTLIST )); if ( pFLItem ) pApm_pFontList = pFLItem->GetFontList(); } const FontList* pList = pApm_pFontList; if ( !pList ) { if ( !m_pFontList ) m_pFontList = new FontList( this ); pList = m_pFontList; } if ( pList ) static_cast(rPage). SetFontList( SvxFontListItem( pList, SID_ATTR_CHAR_FONTLIST ) ); static_cast(rPage).EnableSearchMode(); } else if (nId == m_nParaStdPageId) { static_cast(rPage).EnableAutoFirstLine(); } else if (nId == m_nParaAlignPageId) { static_cast(rPage).EnableJustifyExt(); } else if (nId == m_nBackPageId) { static_cast(rPage).ShowParaControl(true); } } SvxSearchAttributeDialog::SvxSearchAttributeDialog(vcl::Window* pParent, SearchAttrItemList& rLst, const sal_uInt16* pWhRanges) : ModalDialog(pParent, "SearchAttrDialog", "cui/ui/searchattrdialog.ui") , rList(rLst) { get(m_pOKBtn, "ok"); get(m_pAttrLB, "treeview"); m_pAttrLB->set_height_request(m_pAttrLB->GetTextHeight() * 12); m_pAttrLB->set_width_request(m_pAttrLB->approximate_char_width() * 56); m_pAttrLB->SetStyle( GetStyle() | WB_CLIPCHILDREN | WB_HSCROLL | WB_SORT ); m_pAttrLB->GetModel()->SetSortMode( SortAscending ); m_pOKBtn->SetClickHdl( LINK( this, SvxSearchAttributeDialog, OKHdl ) ); SfxObjectShell* pSh = SfxObjectShell::Current(); DBG_ASSERT( pSh, "No DocShell" ); ResStringArray aAttrNames( SVX_RES( RID_ATTR_NAMES ) ); SfxItemPool& rPool = pSh->GetPool(); SfxItemSet aSet( rPool, pWhRanges ); SfxWhichIter aIter( aSet ); sal_uInt16 nWhich = aIter.FirstWhich(); while ( nWhich ) { sal_uInt16 nSlot = rPool.GetSlotId( nWhich ); if ( nSlot >= SID_SVX_START ) { bool bChecked = false, bFound = false; for ( sal_uInt16 i = 0; !bFound && i < rList.Count(); ++i ) { if ( nSlot == rList[i].nSlot ) { bFound = true; if ( IsInvalidItem( rList[i].pItem ) ) bChecked = true; } } // item resources are in svx sal_uInt32 nId = aAttrNames.FindIndex( nSlot ); SvTreeListEntry* pEntry = NULL; if ( RESARRAY_INDEX_NOTFOUND != nId ) pEntry = m_pAttrLB->SvTreeListBox::InsertEntry( aAttrNames.GetString(nId) ); else SAL_WARN( "cui.dialogs", "no resource for slot id " << static_cast(nSlot) ); if ( pEntry ) { m_pAttrLB->SetCheckButtonState( pEntry, bChecked ? SV_BUTTON_CHECKED : SV_BUTTON_UNCHECKED ); pEntry->SetUserData( reinterpret_cast(nSlot) ); } } nWhich = aIter.NextWhich(); } m_pAttrLB->SetHighlightRange(); m_pAttrLB->SelectEntryPos( 0 ); } SvxSearchAttributeDialog::~SvxSearchAttributeDialog() { dispose(); } void SvxSearchAttributeDialog::dispose() { m_pAttrLB.clear(); m_pOKBtn.clear(); ModalDialog::dispose(); } IMPL_LINK_NOARG(SvxSearchAttributeDialog, OKHdl) { SearchAttrItem aInvalidItem; aInvalidItem.pItem = reinterpret_cast(-1); for ( sal_uInt16 i = 0; i < m_pAttrLB->GetEntryCount(); ++i ) { sal_uInt16 nSlot = (sal_uInt16)reinterpret_cast(m_pAttrLB->GetEntryData(i)); bool bChecked = m_pAttrLB->IsChecked(i); sal_uInt16 j; for ( j = rList.Count(); j; ) { SearchAttrItem& rItem = rList[ --j ]; if( rItem.nSlot == nSlot ) { if( bChecked ) { if( !IsInvalidItem( rItem.pItem ) ) delete rItem.pItem; rItem.pItem = reinterpret_cast(-1); } else if( IsInvalidItem( rItem.pItem ) ) rItem.pItem = 0; j = 1; break; } } if ( !j && bChecked ) { aInvalidItem.nSlot = nSlot; rList.Insert( aInvalidItem ); } } // remove invalid items (pItem == NULL) for ( sal_uInt16 n = rList.Count(); n; ) if ( !rList[ --n ].pItem ) rList.Remove( n ); EndDialog( RET_OK ); return 0; } // class SvxSearchSimilarityDialog --------------------------------------- SvxSearchSimilarityDialog::SvxSearchSimilarityDialog ( vcl::Window* pParent, bool bRelax, sal_uInt16 nOther, sal_uInt16 nShorter, sal_uInt16 nLonger ) : ModalDialog( pParent, "SimilaritySearchDialog", "cui/ui/similaritysearchdialog.ui" ) { get( m_pOtherFld, "otherfld"); get( m_pLongerFld, "longerfld"); get( m_pShorterFld, "shorterfld"); get( m_pRelaxBox, "relaxbox"); m_pOtherFld->SetValue( nOther ); m_pShorterFld->SetValue( nShorter ); m_pLongerFld->SetValue( nLonger ); m_pRelaxBox->Check( bRelax ); } SvxSearchSimilarityDialog::~SvxSearchSimilarityDialog() { dispose(); } void SvxSearchSimilarityDialog::dispose() { m_pOtherFld.clear(); m_pLongerFld.clear(); m_pShorterFld.clear(); m_pRelaxBox.clear(); ModalDialog::dispose(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */