summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/dlgolbul.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2000-09-18 16:07:07 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2000-09-18 16:07:07 +0000
commitf47a9d9db3d06927380bb79b04bb6d4721a92d2b (patch)
tree19d89fdf39c23688415f8884ec433f02fdce7672 /sd/source/ui/dlg/dlgolbul.cxx
initial import
Diffstat (limited to 'sd/source/ui/dlg/dlgolbul.cxx')
-rw-r--r--sd/source/ui/dlg/dlgolbul.cxx281
1 files changed, 281 insertions, 0 deletions
diff --git a/sd/source/ui/dlg/dlgolbul.cxx b/sd/source/ui/dlg/dlgolbul.cxx
new file mode 100644
index 000000000000..f2df9b3f646c
--- /dev/null
+++ b/sd/source/ui/dlg/dlgolbul.cxx
@@ -0,0 +1,281 @@
+/*************************************************************************
+ *
+ * $RCSfile: dlgolbul.cxx,v $
+ *
+ * $Revision: 1.1.1.1 $
+ *
+ * last change: $Author: hr $ $Date: 2000-09-18 16:48:32 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (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.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef _SVX_SVXIDS_HRC
+#include <svx/svxids.hrc>
+#endif
+#ifndef _SFX_OBJSH_HXX //autogen
+#include <sfx2/objsh.hxx>
+#endif
+#define ITEMID_COLOR_TABLE SID_COLOR_TABLE
+#ifndef _SVX_DRAWITEM_HXX //autogen
+#include <svx/drawitem.hxx>
+#endif
+#ifndef _SVX_BULITEM_HXX
+#include <svx/bulitem.hxx>
+#endif
+#ifndef _EEITEM_HXX
+#include <svx/eeitem.hxx>
+#endif
+
+#include <svx/numpages.hxx>
+#include <svx/numitem.hxx>
+
+#include <svx/dialogs.hrc>
+#ifndef _SFXINTITEM_HXX //autogen
+#include <svtools/intitem.hxx>
+#endif
+
+#ifndef _SVDMARK_HXX //autogen
+#include <svx/svdmark.hxx>
+#endif
+
+#ifndef _SD_SDVIEW_HXX
+#include "sdview.hxx"
+#endif
+
+#ifndef _SVDOBJ_HXX //autogen
+#include <svx/svdobj.hxx>
+#endif
+
+#ifndef _SFXSTYLE_HXX //autogen
+#include <svtools/style.hxx>
+#endif
+
+#ifndef _DRAWDOC_HXX
+#include <drawdoc.hxx>
+#endif
+
+#include "glob.hrc"
+#include "dlgolbul.hxx"
+#include "dlgolbul.hrc"
+#include "enumdlg.hxx"
+#include "bulmaper.hxx"
+#include "docshell.hxx"
+
+/*************************************************************************
+|*
+|* Konstruktor des Tab-Dialogs: Fuegt die Seiten zum Dialog hinzu
+|*
+\************************************************************************/
+
+SdOutlineBulletDlg::SdOutlineBulletDlg( Window* pParent, const SfxItemSet* pAttr, SdView* pView ) :
+ SfxTabDialog ( pParent, SdResId(TAB_OUTLINEBULLET) ),
+ aInputSet ( *pAttr ),
+ bTitle ( FALSE ),
+ pSdView ( pView )
+{
+ FreeResource();
+
+ aInputSet.MergeRange( SID_PARAM_NUM_PRESET, SID_PARAM_CUR_NUM_LEVEL );
+ aInputSet.Put( *pAttr );
+
+ pOutputSet = new SfxItemSet( *pAttr );
+ pOutputSet->ClearItem();
+
+ BOOL bOutliner = FALSE;
+
+ // Sonderbehandlung wenn eine Title Objekt selektiert wurde
+ if( pView )
+ {
+ const SdrMarkList& rMarkList = pView->GetMarkList();
+ const ULONG nCount = rMarkList.GetMarkCount();
+ for(ULONG nNum = 0; nNum < nCount; nNum++)
+ {
+ SdrObject* pObj = rMarkList.GetMark(nNum)->GetObj();
+ if( pObj->GetObjInventor() == SdrInventor )
+ {
+
+ switch(pObj->GetObjIdentifier())
+ {
+ case OBJ_TITLETEXT:
+ bTitle = TRUE;
+ break;
+ case OBJ_OUTLINETEXT:
+ bOutliner = TRUE;
+ break;
+ }
+ }
+ }
+ }
+
+ if( SFX_ITEM_SET != aInputSet.GetItemState(EE_PARA_NUMBULLET))
+ {
+ const SvxNumBulletItem *pItem = NULL;
+ if(bOutliner)
+ {
+ SfxStyleSheetBasePool* pSSPool = pView->GetDocSh()->GetStyleSheetPool();
+ String aStyleName((SdResId(STR_LAYOUT_OUTLINE)));
+ aStyleName.AppendAscii( RTL_CONSTASCII_STRINGPARAM( " 1" ) );
+ SfxStyleSheetBase* pFirstStyleSheet = pSSPool->Find( aStyleName, SFX_STYLE_FAMILY_PSEUDO);
+ if( pFirstStyleSheet )
+ pFirstStyleSheet->GetItemSet().GetItemState(EE_PARA_NUMBULLET, FALSE, (const SfxPoolItem**)&pItem);
+ }
+
+ if( pItem == NULL )
+ pItem = (SvxNumBulletItem*) aInputSet.GetPool()->GetSecondaryPool()->GetPoolDefaultItem(EE_PARA_NUMBULLET);
+
+ DBG_ASSERT( pItem, "Kein EE_PARA_NUMBULLET im Pool! [CL]" );
+
+ aInputSet.Put(*pItem, EE_PARA_NUMBULLET);
+ }
+
+ /* debug
+ if( SFX_ITEM_SET == aInputSet.GetItemState(EE_PARA_NUMBULLET, FALSE, &pItem ))
+ {
+ SvxNumRule& rItem = *((SvxNumBulletItem*)pItem)->GetNumRule();
+ for( int i = 0; i < 9; i++ )
+ {
+ SvxNumberFormat aNumberFormat = rItem.GetLevel(i);
+ }
+ }
+ */
+
+ if(bTitle && aInputSet.GetItemState(EE_PARA_NUMBULLET,TRUE) == SFX_ITEM_ON )
+ {
+ SvxNumBulletItem* pItem = (SvxNumBulletItem*)aInputSet.GetItem(EE_PARA_NUMBULLET,TRUE);
+ SvxNumRule* pRule = pItem->GetNumRule();
+ if(pRule)
+ {
+ SvxNumRule aNewRule( *pRule );
+ aNewRule.SetFeatureFlag( NUM_NO_NUMBERS, TRUE );
+
+ SvxNumBulletItem aNewItem( aNewRule, EE_PARA_NUMBULLET );
+ aInputSet.Put(aNewItem);
+ }
+ }
+
+ SdBulletMapper::PreMapNumBulletForDialog( aInputSet );
+
+ SetInputSet( &aInputSet );
+
+ if(!bTitle)
+ AddTabPage(RID_SVXPAGE_PICK_SINGLE_NUM, &SvxSingleNumPickTabPage::Create, 0);
+ else
+ RemoveTabPage( RID_SVXPAGE_PICK_SINGLE_NUM );
+
+ AddTabPage(RID_SVXPAGE_PICK_BULLET , &SvxBulletPickTabPage::Create, 0);
+ AddTabPage(RID_SVXPAGE_PICK_BMP , &SvxBitmapPickTabPage::Create, 0);
+ AddTabPage(RID_SVXPAGE_NUM_OPTIONS , &SvxNumOptionsTabPage::Create, 0);
+ AddTabPage(RID_SVXPAGE_NUM_POSITION , &SvxNumPositionTabPage::Create, 0);
+
+}
+
+SdOutlineBulletDlg::~SdOutlineBulletDlg()
+{
+ delete pOutputSet;
+}
+
+void SdOutlineBulletDlg::PageCreated( USHORT nId, SfxTabPage &rPage )
+{
+ switch ( nId )
+ {
+ case RID_SVXPAGE_NUM_OPTIONS:
+ {
+ if( pSdView )
+ {
+ FieldUnit eMetric = pSdView->GetDoc()->GetUIUnit();
+ ((SvxNumOptionsTabPage&)rPage).SetMetric(eMetric);
+ }
+ }
+ break;
+ case RID_SVXPAGE_NUM_POSITION:
+ {
+ if( pSdView )
+ {
+ FieldUnit eMetric = pSdView->GetDoc()->GetUIUnit();
+ ((SvxNumPositionTabPage&)rPage).SetMetric(eMetric);
+ }
+ }
+ break;
+ }
+}
+
+const SfxItemSet* SdOutlineBulletDlg::GetOutputItemSet()
+{
+ SfxItemSet aSet( *SfxTabDialog::GetOutputItemSet() );
+ pOutputSet->Put( aSet );
+
+ const SfxPoolItem *pItem = NULL;
+ if( SFX_ITEM_SET == pOutputSet->GetItemState(pOutputSet->GetPool()->GetWhich(SID_ATTR_NUMBERING_RULE), FALSE, &pItem ))
+ {
+ SdBulletMapper::MapFontsInNumRule( *((SvxNumBulletItem*)pItem)->GetNumRule(), *pOutputSet );
+
+ SfxUInt16Item aBulletState( EE_PARA_BULLETSTATE, 1 );
+ pOutputSet->Put(aBulletState);
+ }
+
+ SdBulletMapper::PostMapNumBulletForDialog( *pOutputSet );
+
+ if(bTitle && pOutputSet->GetItemState(EE_PARA_NUMBULLET,TRUE) == SFX_ITEM_ON )
+ {
+ SvxNumBulletItem* pItem = (SvxNumBulletItem*)pOutputSet->GetItem(EE_PARA_NUMBULLET,TRUE);
+ SvxNumRule* pRule = pItem->GetNumRule();
+ if(pRule)
+ pRule->SetFeatureFlag( NUM_NO_NUMBERS, FALSE );
+ }
+
+ return pOutputSet;
+}
+
+
+
+