2010-10-12 15:57:08 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-10-04 11:25:41 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
2009-10-31 00:36:06 +01:00
|
|
|
*
|
2012-10-04 11:25:41 +01:00
|
|
|
* 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/.
|
2009-10-31 00:36:06 +01:00
|
|
|
*
|
2012-10-04 11:25:41 +01:00
|
|
|
* This file incorporates work covered by the following license notice:
|
2009-10-31 00:36:06 +01:00
|
|
|
*
|
2012-10-04 11:25:41 +01:00
|
|
|
* 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 .
|
|
|
|
*/
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
#include <vcl/wrkwin.hxx>
|
|
|
|
#include <tools/shl.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include <tools/urlobj.hxx>
|
|
|
|
#include <unotools/ucbstreamhelper.hxx>
|
|
|
|
#include <unotools/pathoptions.hxx>
|
|
|
|
#include <sfx2/app.hxx>
|
|
|
|
#include <sfx2/filedlghelper.hxx>
|
|
|
|
#include <unotools/localfilehelper.hxx>
|
|
|
|
#include "com/sun/star/ui/dialogs/TemplateDescription.hpp"
|
2009-11-02 20:49:14 +01:00
|
|
|
#include <svx/dialmgr.hxx>
|
2009-10-31 00:36:06 +01:00
|
|
|
#include <vcl/bmpacc.hxx>
|
2009-11-02 20:49:14 +01:00
|
|
|
#include <svx/dialogs.hrc>
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2009-11-02 20:49:14 +01:00
|
|
|
#include <cuires.hrc>
|
2009-10-31 00:36:06 +01:00
|
|
|
#include "helpid.hrc"
|
|
|
|
#include "svx/xattr.hxx"
|
|
|
|
#include <svx/xpool.hxx>
|
|
|
|
#include <svx/xtable.hxx>
|
|
|
|
#include "svx/xoutbmp.hxx"
|
|
|
|
#include "svx/drawitem.hxx"
|
|
|
|
#include "cuitabarea.hxx"
|
|
|
|
#include "tabarea.hrc"
|
2010-10-04 20:36:05 +01:00
|
|
|
#include "defdlgname.hxx"
|
2013-01-25 03:27:27 +02:00
|
|
|
#include "dlgname.hxx"
|
2010-10-04 20:36:05 +01:00
|
|
|
#include <svx/svxdlg.hxx>
|
2009-11-02 20:49:14 +01:00
|
|
|
#include <dialmgr.hxx>
|
2010-01-14 18:08:36 +01:00
|
|
|
#include "sfx2/opengrf.hxx"
|
2011-01-20 12:21:31 +01:00
|
|
|
#include "paragrph.hrc"
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
SvxBitmapTabPage::SvxBitmapTabPage
|
|
|
|
(
|
|
|
|
Window* pParent,
|
|
|
|
const SfxItemSet& rInAttrs
|
|
|
|
) :
|
|
|
|
|
2009-11-02 20:49:14 +01:00
|
|
|
SvxTabPage ( pParent, CUI_RES( RID_SVXPAGE_BITMAP ), rInAttrs ),
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2009-11-02 20:49:14 +01:00
|
|
|
aCtlPixel ( this, CUI_RES( CTL_PIXEL ) ),
|
|
|
|
aFtPixelEdit ( this, CUI_RES( FT_PIXEL_EDIT ) ),
|
|
|
|
aFtColor ( this, CUI_RES( FT_COLOR ) ),
|
|
|
|
aLbColor ( this, CUI_RES( LB_COLOR ) ),
|
|
|
|
aFtBackgroundColor ( this, CUI_RES( FT_BACKGROUND_COLOR ) ),
|
|
|
|
aLbBackgroundColor ( this, CUI_RES( LB_BACKGROUND_COLOR ) ),
|
2009-10-31 00:36:06 +01:00
|
|
|
// This fix text is used only to provide the name for the following
|
|
|
|
// bitmap list box. The fixed text is not displayed.
|
2009-11-02 20:49:14 +01:00
|
|
|
aLbBitmapsHidden ( this, CUI_RES( FT_BITMAPS_HIDDEN ) ),
|
|
|
|
aLbBitmaps ( this, CUI_RES( LB_BITMAPS ) ),
|
|
|
|
aFlProp ( this, CUI_RES( FL_PROP ) ),
|
|
|
|
aCtlPreview ( this, CUI_RES( CTL_PREVIEW ) ),
|
|
|
|
aBtnAdd ( this, CUI_RES( BTN_ADD ) ),
|
|
|
|
aBtnModify ( this, CUI_RES( BTN_MODIFY ) ),
|
|
|
|
aBtnImport ( this, CUI_RES( BTN_IMPORT ) ),
|
|
|
|
aBtnDelete ( this, CUI_RES( BTN_DELETE ) ),
|
|
|
|
aBtnLoad ( this, CUI_RES( BTN_LOAD ) ),
|
|
|
|
aBtnSave ( this, CUI_RES( BTN_SAVE ) ),
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
aBitmapCtl ( this, aCtlPreview.GetSizePixel() ),
|
|
|
|
rOutAttrs ( rInAttrs ),
|
|
|
|
|
2013-02-06 09:58:51 +01:00
|
|
|
pnBitmapListState ( 0 ),
|
|
|
|
pnColorListState ( 0 ),
|
|
|
|
pPageType ( 0 ),
|
|
|
|
pDlgType ( 0 ),
|
|
|
|
pbAreaTP ( 0 ),
|
|
|
|
|
|
|
|
bBmpChanged ( false ),
|
|
|
|
|
2009-10-31 00:36:06 +01:00
|
|
|
pXPool ( (XOutdevItemPool*) rInAttrs.GetPool() ),
|
|
|
|
aXFStyleItem ( XFILL_BITMAP ),
|
2012-05-10 09:29:55 +00:00
|
|
|
aXBitmapItem ( String(), Graphic() ),
|
2009-10-31 00:36:06 +01:00
|
|
|
aXFillAttr ( pXPool ),
|
|
|
|
rXFSet ( aXFillAttr.GetItemSet() )
|
|
|
|
{
|
|
|
|
FreeResource();
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// this page needs ExchangeSupport
|
2009-10-31 00:36:06 +01:00
|
|
|
SetExchangeSupport();
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// setting the output device
|
2009-10-31 00:36:06 +01:00
|
|
|
rXFSet.Put( aXFStyleItem );
|
|
|
|
rXFSet.Put( aXBitmapItem );
|
|
|
|
|
|
|
|
aBtnAdd.SetClickHdl( LINK( this, SvxBitmapTabPage, ClickAddHdl_Impl ) );
|
|
|
|
aBtnImport.SetClickHdl(
|
|
|
|
LINK( this, SvxBitmapTabPage, ClickImportHdl_Impl ) );
|
|
|
|
aBtnModify.SetClickHdl(
|
|
|
|
LINK( this, SvxBitmapTabPage, ClickModifyHdl_Impl ) );
|
|
|
|
aBtnDelete.SetClickHdl(
|
|
|
|
LINK( this, SvxBitmapTabPage, ClickDeleteHdl_Impl ) );
|
|
|
|
aBtnLoad.SetClickHdl( LINK( this, SvxBitmapTabPage, ClickLoadHdl_Impl ) );
|
|
|
|
aBtnSave.SetClickHdl( LINK( this, SvxBitmapTabPage, ClickSaveHdl_Impl ) );
|
|
|
|
|
|
|
|
aLbBitmaps.SetSelectHdl(
|
|
|
|
LINK( this, SvxBitmapTabPage, ChangeBitmapHdl_Impl ) );
|
|
|
|
aLbColor.SetSelectHdl(
|
|
|
|
LINK( this, SvxBitmapTabPage, ChangePixelColorHdl_Impl ) );
|
|
|
|
aLbBackgroundColor.SetSelectHdl(
|
|
|
|
LINK( this, SvxBitmapTabPage, ChangeBackgrndColorHdl_Impl ) );
|
|
|
|
|
2012-10-04 11:25:41 +01:00
|
|
|
String accName = String(CUI_RES(STR_EXAMPLE));
|
2011-01-20 12:21:31 +01:00
|
|
|
aCtlPreview.SetAccessibleName(accName);
|
|
|
|
aCtlPixel.SetAccessibleRelationMemberOf( &aFlProp );
|
|
|
|
aCtlPixel.SetAccessibleRelationLabeledBy( &aFtPixelEdit );
|
|
|
|
aLbBitmaps.SetAccessibleRelationLabeledBy(&aLbBitmaps);
|
|
|
|
aBtnAdd.SetAccessibleRelationMemberOf( &aFlProp );
|
|
|
|
aBtnModify.SetAccessibleRelationMemberOf( &aFlProp );
|
|
|
|
aBtnImport.SetAccessibleRelationMemberOf( &aFlProp );
|
|
|
|
aBtnDelete.SetAccessibleRelationMemberOf( &aFlProp );
|
|
|
|
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SvxBitmapTabPage::Construct()
|
|
|
|
{
|
2011-09-26 22:00:40 +01:00
|
|
|
aLbColor.Fill( pColorList );
|
2009-10-31 00:36:06 +01:00
|
|
|
aLbBackgroundColor.CopyEntries( aLbColor );
|
|
|
|
|
|
|
|
aLbBitmaps.Fill( pBitmapList );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SvxBitmapTabPage::ActivatePage( const SfxItemSet& )
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nPos;
|
|
|
|
sal_uInt16 nCount;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
if( *pDlgType == 0 ) // area dialog
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
*pbAreaTP = sal_False;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2011-09-26 22:00:40 +01:00
|
|
|
if( pColorList.is() )
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2011-09-26 22:00:40 +01:00
|
|
|
// ColorList
|
|
|
|
if( *pnColorListState & CT_CHANGED ||
|
|
|
|
*pnColorListState & CT_MODIFIED )
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2011-09-26 22:00:40 +01:00
|
|
|
if( *pnColorListState & CT_CHANGED )
|
2011-09-27 12:37:00 +01:00
|
|
|
pColorList = ( (SvxAreaTabDialog*) GetParentDialog() )->GetNewColorList();
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
// LbColor
|
|
|
|
nPos = aLbColor.GetSelectEntryPos();
|
|
|
|
aLbColor.Clear();
|
2011-09-26 22:00:40 +01:00
|
|
|
aLbColor.Fill( pColorList );
|
2009-10-31 00:36:06 +01:00
|
|
|
nCount = aLbColor.GetEntryCount();
|
|
|
|
if( nCount == 0 )
|
2012-04-15 17:50:21 +02:00
|
|
|
; // this case should not occur
|
2009-10-31 00:36:06 +01:00
|
|
|
else if( nCount <= nPos )
|
|
|
|
aLbColor.SelectEntryPos( 0 );
|
|
|
|
else
|
|
|
|
aLbColor.SelectEntryPos( nPos );
|
|
|
|
|
|
|
|
// LbColorBackground
|
|
|
|
nPos = aLbBackgroundColor.GetSelectEntryPos();
|
|
|
|
aLbBackgroundColor.Clear();
|
|
|
|
aLbBackgroundColor.CopyEntries( aLbColor );
|
|
|
|
nCount = aLbBackgroundColor.GetEntryCount();
|
|
|
|
if( nCount == 0 )
|
2012-04-15 17:50:21 +02:00
|
|
|
; // this case should not occur
|
2009-10-31 00:36:06 +01:00
|
|
|
else if( nCount <= nPos )
|
|
|
|
aLbBackgroundColor.SelectEntryPos( 0 );
|
|
|
|
else
|
|
|
|
aLbBackgroundColor.SelectEntryPos( nPos );
|
|
|
|
|
|
|
|
ChangePixelColorHdl_Impl( this );
|
|
|
|
ChangeBackgrndColorHdl_Impl( this );
|
|
|
|
}
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// determining (possibly cutting) the name and
|
|
|
|
// displaying it in the GroupBox
|
2013-03-15 13:40:30 -03:00
|
|
|
OUString aString( CUI_RES( RID_SVXSTR_TABLE ) );
|
|
|
|
aString += ": ";
|
2009-10-31 00:36:06 +01:00
|
|
|
INetURLObject aURL( pBitmapList->GetPath() );
|
|
|
|
|
|
|
|
aURL.Append( pBitmapList->GetName() );
|
|
|
|
DBG_ASSERT( aURL.GetProtocol() != INET_PROT_NOT_VALID, "invalid URL" );
|
|
|
|
|
|
|
|
if( aURL.getBase().getLength() > 18 )
|
|
|
|
{
|
2013-03-15 13:40:30 -03:00
|
|
|
aString += aURL.getBase().copy( 0, 15 );
|
|
|
|
aString += "...";
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
else
|
2013-03-15 13:40:30 -03:00
|
|
|
aString += aURL.getBase();
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
if( *pPageType == PT_BITMAP && *pPos != LISTBOX_ENTRY_NOTFOUND )
|
|
|
|
{
|
|
|
|
aLbBitmaps.SelectEntryPos( *pPos );
|
|
|
|
}
|
2012-04-15 17:50:21 +02:00
|
|
|
// colors could have been deleted
|
2009-10-31 00:36:06 +01:00
|
|
|
ChangeBitmapHdl_Impl( this );
|
|
|
|
|
|
|
|
*pPageType = PT_BITMAP;
|
|
|
|
*pPos = LISTBOX_ENTRY_NOTFOUND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
int SvxBitmapTabPage::DeactivatePage( SfxItemSet* _pSet)
|
|
|
|
{
|
|
|
|
if ( CheckChanges_Impl() == -1L )
|
|
|
|
return KEEP_PAGE;
|
|
|
|
|
|
|
|
if( _pSet )
|
|
|
|
FillItemSet( *_pSet );
|
|
|
|
|
|
|
|
return LEAVE_PAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_Bool SvxBitmapTabPage::FillItemSet( SfxItemSet& _rOutAttrs )
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-04-15 17:50:21 +02:00
|
|
|
if( *pDlgType == 0 && *pbAreaTP == sal_False ) // area dialog
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
if(PT_BITMAP == *pPageType)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
_rOutAttrs.Put(XFillStyleItem(XFILL_BITMAP));
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nPos = aLbBitmaps.GetSelectEntryPos();
|
2012-05-10 09:29:55 +00:00
|
|
|
if(LISTBOX_ENTRY_NOTFOUND != nPos)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
const XBitmapEntry* pXBitmapEntry = pBitmapList->GetBitmap(nPos);
|
|
|
|
const String aString(aLbBitmaps.GetSelectEntry());
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2012-05-10 09:29:55 +00:00
|
|
|
_rOutAttrs.Put(XFillBitmapItem(aString, pXBitmapEntry->GetGraphicObject()));
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
const BitmapEx aBitmapEx(aBitmapCtl.GetBitmapEx());
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2012-05-10 09:29:55 +00:00
|
|
|
_rOutAttrs.Put(XFillBitmapItem(String(), Graphic(aBitmapEx)));
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-05-10 09:29:55 +00:00
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
return sal_True;
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SvxBitmapTabPage::Reset( const SfxItemSet& )
|
|
|
|
{
|
|
|
|
// aLbBitmaps.SelectEntryPos( 0 );
|
|
|
|
|
|
|
|
aBitmapCtl.SetLines( aCtlPixel.GetLineCount() );
|
|
|
|
aBitmapCtl.SetPixelColor( aLbColor.GetSelectEntryColor() );
|
|
|
|
aBitmapCtl.SetBackgroundColor( aLbBackgroundColor.GetSelectEntryColor() );
|
|
|
|
aBitmapCtl.SetBmpArray( aCtlPixel.GetBitmapPixelPtr() );
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// get bitmap and display it
|
2012-05-10 09:29:55 +00:00
|
|
|
const XFillBitmapItem aBmpItem(OUString(), Graphic(aBitmapCtl.GetBitmapEx()));
|
2009-10-31 00:36:06 +01:00
|
|
|
rXFSet.Put( aBmpItem );
|
|
|
|
aCtlPreview.SetAttributes( aXFillAttr.GetItemSet() );
|
|
|
|
aCtlPreview.Invalidate();
|
|
|
|
|
|
|
|
ChangeBitmapHdl_Impl( this );
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// determine button state
|
2009-10-31 00:36:06 +01:00
|
|
|
if( pBitmapList->Count() )
|
|
|
|
{
|
|
|
|
aBtnAdd.Enable();
|
|
|
|
aBtnModify.Enable();
|
|
|
|
aBtnDelete.Enable();
|
|
|
|
aBtnSave.Enable();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aBtnModify.Disable();
|
|
|
|
aBtnDelete.Disable();
|
|
|
|
aBtnSave.Disable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SfxTabPage* SvxBitmapTabPage::Create( Window* pWindow,
|
|
|
|
const SfxItemSet& rSet )
|
|
|
|
{
|
|
|
|
return new SvxBitmapTabPage( pWindow, rSet );
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxBitmapTabPage, ChangeBitmapHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
GraphicObject* pGraphicObject = 0;
|
|
|
|
int nPos(aLbBitmaps.GetSelectEntryPos());
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2012-05-10 09:29:55 +00:00
|
|
|
if(LISTBOX_ENTRY_NOTFOUND != nPos)
|
|
|
|
{
|
|
|
|
pGraphicObject = new GraphicObject(pBitmapList->GetBitmap(nPos)->GetGraphicObject());
|
|
|
|
}
|
2009-10-31 00:36:06 +01:00
|
|
|
else
|
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
const SfxPoolItem* pPoolItem = 0;
|
|
|
|
|
|
|
|
if(SFX_ITEM_SET == rOutAttrs.GetItemState(GetWhich(XATTR_FILLSTYLE), true, &pPoolItem))
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
const XFillStyle eXFS((XFillStyle)((const XFillStyleItem*)pPoolItem)->GetValue());
|
|
|
|
|
|
|
|
if((XFILL_BITMAP == eXFS) && (SFX_ITEM_SET == rOutAttrs.GetItemState(GetWhich(XATTR_FILLBITMAP), true, &pPoolItem)))
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
pGraphicObject = new GraphicObject(((const XFillBitmapItem*)pPoolItem)->GetGraphicObject());
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
}
|
2012-05-10 09:29:55 +00:00
|
|
|
|
|
|
|
if(!pGraphicObject)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
aLbBitmaps.SelectEntryPos(0);
|
2009-10-31 00:36:06 +01:00
|
|
|
nPos = aLbBitmaps.GetSelectEntryPos();
|
|
|
|
|
2012-05-10 09:29:55 +00:00
|
|
|
if(LISTBOX_ENTRY_NOTFOUND != nPos)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
pGraphicObject = new GraphicObject(pBitmapList->GetBitmap(nPos)->GetGraphicObject());
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
}
|
2012-05-10 09:29:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(pGraphicObject)
|
|
|
|
{
|
|
|
|
BitmapColor aBack;
|
|
|
|
BitmapColor aFront;
|
|
|
|
bool bIs8x8(isHistorical8x8(pGraphicObject->GetGraphic().GetBitmap(), aBack, aFront));
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
aLbColor.SetNoSelection();
|
|
|
|
aLbBackgroundColor.SetNoSelection();
|
|
|
|
|
2012-05-10 09:29:55 +00:00
|
|
|
if(bIs8x8)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
aCtlPixel.SetPaintable( sal_True );
|
2009-10-31 00:36:06 +01:00
|
|
|
aCtlPixel.Enable();
|
|
|
|
aFtPixelEdit.Enable();
|
|
|
|
aFtColor.Enable();
|
|
|
|
aLbColor.Enable();
|
|
|
|
aFtBackgroundColor.Enable();
|
|
|
|
aLbBackgroundColor.Enable();
|
|
|
|
aBtnModify.Enable();
|
|
|
|
aBtnAdd.Enable();
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// setting the pixel control
|
2012-05-10 09:29:55 +00:00
|
|
|
aCtlPixel.SetXBitmap(pGraphicObject->GetGraphic().GetBitmapEx());
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2012-05-10 09:29:55 +00:00
|
|
|
Color aPixelColor = aFront;
|
|
|
|
Color aBackColor = aBack;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
aBitmapCtl.SetPixelColor( aPixelColor );
|
|
|
|
aBitmapCtl.SetBackgroundColor( aBackColor );
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// if the entry is not in the listbox,
|
|
|
|
// the color is added temporarily
|
2009-10-31 00:36:06 +01:00
|
|
|
if( 0 == aLbBitmaps.GetSelectEntryPos() )
|
|
|
|
{
|
|
|
|
aLbColor.SelectEntry( Color( COL_BLACK ) );
|
|
|
|
ChangePixelColorHdl_Impl( this );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aLbColor.SelectEntry( aPixelColor );
|
|
|
|
if( aLbColor.GetSelectEntryCount() == 0 )
|
|
|
|
{
|
|
|
|
aLbColor.InsertEntry( aPixelColor, String() );
|
|
|
|
aLbColor.SelectEntry( aPixelColor );
|
|
|
|
}
|
|
|
|
aLbBackgroundColor.SelectEntry( aBackColor );
|
|
|
|
if( aLbBackgroundColor.GetSelectEntryCount() == 0 )
|
|
|
|
{
|
|
|
|
aLbBackgroundColor.InsertEntry( aBackColor, String() );
|
|
|
|
aLbBackgroundColor.SelectEntry( aBackColor );
|
|
|
|
}
|
|
|
|
}
|
2012-05-10 09:29:55 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
aCtlPixel.Reset();
|
|
|
|
aCtlPixel.SetPaintable( sal_False );
|
|
|
|
aCtlPixel.Disable();
|
|
|
|
aFtPixelEdit.Disable();
|
|
|
|
aFtColor.Disable();
|
|
|
|
aLbColor.Disable();
|
|
|
|
aFtBackgroundColor.Disable();
|
|
|
|
aLbBackgroundColor.Disable();
|
|
|
|
aBtnModify.Disable();
|
|
|
|
aBtnAdd.Disable();
|
|
|
|
}
|
|
|
|
|
2009-10-31 00:36:06 +01:00
|
|
|
aCtlPixel.Invalidate();
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// display bitmap
|
2012-05-10 09:29:55 +00:00
|
|
|
const XFillBitmapItem aXBmpItem(String(), *pGraphicObject);
|
2009-10-31 00:36:06 +01:00
|
|
|
rXFSet.Put( aXBmpItem );
|
|
|
|
|
|
|
|
aCtlPreview.SetAttributes( aXFillAttr.GetItemSet() );
|
|
|
|
aCtlPreview.Invalidate();
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
bBmpChanged = sal_False;
|
2012-05-10 09:29:55 +00:00
|
|
|
delete pGraphicObject;
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
2012-05-10 09:29:55 +00:00
|
|
|
|
|
|
|
return 0;
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
long SvxBitmapTabPage::CheckChanges_Impl()
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nPos = aLbBitmaps.GetSelectEntryPos();
|
2009-10-31 00:36:06 +01:00
|
|
|
if( nPos != LISTBOX_ENTRY_NOTFOUND )
|
|
|
|
{
|
|
|
|
if( bBmpChanged )
|
|
|
|
{
|
2009-11-02 20:49:14 +01:00
|
|
|
ResMgr& rMgr = CUI_MGR();
|
2009-10-31 00:36:06 +01:00
|
|
|
Image aWarningBoxImage = WarningBox::GetStandardImage();
|
2013-01-25 03:27:27 +02:00
|
|
|
SvxMessDialog* aMessDlg = new SvxMessDialog(GetParentDialog(),
|
2009-11-02 20:49:14 +01:00
|
|
|
String( SVX_RES( RID_SVXSTR_BITMAP ) ),
|
|
|
|
String( CUI_RES( RID_SVXSTR_ASK_CHANGE_BITMAP ) ),
|
2009-10-31 00:36:06 +01:00
|
|
|
&aWarningBoxImage );
|
2010-10-11 20:11:42 -04:00
|
|
|
DBG_ASSERT(aMessDlg, "Dialogdiet fail!");
|
|
|
|
aMessDlg->SetButtonText( MESS_BTN_1,
|
2009-10-31 00:36:06 +01:00
|
|
|
String( ResId( RID_SVXSTR_CHANGE, rMgr ) ) );
|
2010-10-11 20:11:42 -04:00
|
|
|
aMessDlg->SetButtonText( MESS_BTN_2,
|
2009-10-31 00:36:06 +01:00
|
|
|
String( ResId( RID_SVXSTR_ADD, rMgr ) ) );
|
|
|
|
|
2010-10-11 20:11:42 -04:00
|
|
|
short nRet = aMessDlg->Execute();
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
switch( nRet )
|
|
|
|
{
|
2012-04-15 17:50:21 +02:00
|
|
|
case RET_BTN_1:
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
ClickModifyHdl_Impl( this );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
case RET_BTN_2:
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
ClickAddHdl_Impl( this );
|
|
|
|
nPos = aLbBitmaps.GetSelectEntryPos();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RET_CANCEL:
|
|
|
|
break;
|
|
|
|
}
|
2010-10-11 20:11:42 -04:00
|
|
|
delete aMessDlg;
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
nPos = aLbBitmaps.GetSelectEntryPos();
|
|
|
|
if( nPos != LISTBOX_ENTRY_NOTFOUND )
|
|
|
|
*pPos = nPos;
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxBitmapTabPage, ClickAddHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2009-11-02 20:49:14 +01:00
|
|
|
ResMgr& rMgr = CUI_MGR();
|
|
|
|
String aNewName( SVX_RES( RID_SVXSTR_BITMAP ) );
|
|
|
|
String aDesc( CUI_RES( RID_SVXSTR_DESC_NEW_BITMAP ) );
|
2009-10-31 00:36:06 +01:00
|
|
|
String aName;
|
|
|
|
|
|
|
|
long nCount = pBitmapList->Count();
|
|
|
|
long j = 1;
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_Bool bDifferent = sal_False;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
while( !bDifferent )
|
|
|
|
{
|
|
|
|
aName = aNewName;
|
|
|
|
aName += sal_Unicode(' ');
|
2012-11-30 14:10:50 -02:00
|
|
|
aName += OUString::valueOf( j++ );
|
2011-01-14 12:41:27 +01:00
|
|
|
bDifferent = sal_True;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
for( long i = 0; i < nCount && bDifferent; i++ )
|
|
|
|
if( aName == pBitmapList->GetBitmap( i )->GetName() )
|
2011-01-14 12:41:27 +01:00
|
|
|
bDifferent = sal_False;
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
|
2010-10-11 20:11:42 -04:00
|
|
|
DBG_ASSERT(pFact, "Dialogdiet fail!");
|
2011-09-27 12:37:00 +01:00
|
|
|
AbstractSvxNameDialog* pDlg = pFact->CreateSvxNameDialog( GetParentDialog(), aName, aDesc );
|
2010-10-11 20:11:42 -04:00
|
|
|
DBG_ASSERT(pDlg, "Dialogdiet fail!");
|
2009-10-31 00:36:06 +01:00
|
|
|
WarningBox* pWarnBox = NULL;
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nError = RID_SVXSTR_WARN_NAME_DUPLICATE;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
while( pDlg->Execute() == RET_OK )
|
|
|
|
{
|
|
|
|
pDlg->GetName( aName );
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
bDifferent = sal_True;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
for( long i = 0; i < nCount && bDifferent; i++ )
|
|
|
|
if( aName == pBitmapList->GetBitmap( i )->GetName() )
|
2011-01-14 12:41:27 +01:00
|
|
|
bDifferent = sal_False;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
if( bDifferent ) {
|
|
|
|
nError = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !pWarnBox )
|
|
|
|
{
|
2011-09-27 12:37:00 +01:00
|
|
|
pWarnBox = new WarningBox( GetParentDialog(),
|
2009-10-31 00:36:06 +01:00
|
|
|
WinBits( WB_OK_CANCEL ),
|
|
|
|
String( ResId( nError, rMgr ) ) );
|
|
|
|
pWarnBox->SetHelpId( HID_WARN_NAME_DUPLICATE );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( pWarnBox->Execute() != RET_OK )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
delete pDlg;
|
|
|
|
delete pWarnBox;
|
|
|
|
|
|
|
|
if( !nError )
|
|
|
|
{
|
|
|
|
XBitmapEntry* pEntry = 0;
|
|
|
|
if( aCtlPixel.IsEnabled() )
|
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
const BitmapEx aBitmapEx(aBitmapCtl.GetBitmapEx());
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2012-05-10 09:29:55 +00:00
|
|
|
pEntry = new XBitmapEntry(Graphic(aBitmapEx), aName);
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
2012-04-15 17:50:21 +02:00
|
|
|
else // it must be a not existing imported bitmap
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
const SfxPoolItem* pPoolItem = 0;
|
|
|
|
|
|
|
|
if(SFX_ITEM_SET == rOutAttrs.GetItemState(XATTR_FILLBITMAP, true, &pPoolItem))
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
pEntry = new XBitmapEntry(dynamic_cast< const XFillBitmapItem* >(pPoolItem)->GetGraphicObject(), aName);
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG_ASSERT( pEntry, "SvxBitmapTabPage::ClickAddHdl_Impl(), pEntry == 0 ?" );
|
|
|
|
|
|
|
|
if( pEntry )
|
|
|
|
{
|
|
|
|
pBitmapList->Insert( pEntry );
|
2013-04-22 15:38:05 +00:00
|
|
|
const StyleSettings& rStyleSettings = Application::GetSettings().GetStyleSettings();
|
|
|
|
aLbBitmaps.Append(rStyleSettings.GetListBoxPreviewDefaultPixelSize(), *pEntry );
|
2009-10-31 00:36:06 +01:00
|
|
|
aLbBitmaps.SelectEntryPos( aLbBitmaps.GetEntryCount() - 1 );
|
|
|
|
|
|
|
|
#ifdef WNT
|
|
|
|
// hack: #31355# W.P.
|
|
|
|
Rectangle aRect( aLbBitmaps.GetPosPixel(), aLbBitmaps.GetSizePixel() );
|
2011-01-14 12:41:27 +01:00
|
|
|
if( sal_True ) { // ??? overlapped with pDlg
|
2009-10-31 00:36:06 +01:00
|
|
|
// and srolling
|
|
|
|
Invalidate( aRect );
|
|
|
|
//aLbBitmaps.Invalidate();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*pnBitmapListState |= CT_MODIFIED;
|
|
|
|
|
|
|
|
ChangeBitmapHdl_Impl( this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// determine button state
|
2009-10-31 00:36:06 +01:00
|
|
|
if( pBitmapList->Count() )
|
|
|
|
{
|
|
|
|
aBtnModify.Enable();
|
|
|
|
aBtnDelete.Enable();
|
|
|
|
aBtnSave.Enable();
|
|
|
|
}
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxBitmapTabPage, ClickImportHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2009-11-02 20:49:14 +01:00
|
|
|
ResMgr& rMgr = CUI_MGR();
|
2012-11-30 14:10:50 -02:00
|
|
|
SvxOpenGraphicDialog aDlg( OUString("Import") );
|
2009-10-31 00:36:06 +01:00
|
|
|
aDlg.EnableLink(sal_False);
|
|
|
|
|
|
|
|
if( !aDlg.Execute() )
|
|
|
|
{
|
|
|
|
Graphic aGraphic;
|
|
|
|
int nError = 1;
|
|
|
|
|
|
|
|
EnterWait();
|
|
|
|
nError = aDlg.GetGraphic( aGraphic );
|
|
|
|
LeaveWait();
|
|
|
|
|
|
|
|
if( !nError )
|
|
|
|
{
|
|
|
|
String aDesc( ResId(RID_SVXSTR_DESC_EXT_BITMAP, rMgr) );
|
|
|
|
WarningBox* pWarnBox = NULL;
|
|
|
|
|
|
|
|
// convert file URL to UI name
|
|
|
|
String aName;
|
|
|
|
INetURLObject aURL( aDlg.GetPath() );
|
|
|
|
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
|
2010-10-11 20:11:42 -04:00
|
|
|
DBG_ASSERT(pFact, "Dialogdiet fail!");
|
2011-09-27 12:37:00 +01:00
|
|
|
AbstractSvxNameDialog* pDlg = pFact->CreateSvxNameDialog( GetParentDialog(), String(aURL.GetName()).GetToken( 0, '.' ), aDesc );
|
2010-10-11 20:11:42 -04:00
|
|
|
DBG_ASSERT(pDlg, "Dialogdiet fail!");
|
2009-10-31 00:36:06 +01:00
|
|
|
nError = RID_SVXSTR_WARN_NAME_DUPLICATE;
|
|
|
|
|
|
|
|
while( pDlg->Execute() == RET_OK )
|
|
|
|
{
|
|
|
|
pDlg->GetName( aName );
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_Bool bDifferent = sal_True;
|
2009-10-31 00:36:06 +01:00
|
|
|
long nCount = pBitmapList->Count();
|
|
|
|
|
|
|
|
for( long i = 0; i < nCount && bDifferent; i++ )
|
|
|
|
if( aName == pBitmapList->GetBitmap( i )->GetName() )
|
2011-01-14 12:41:27 +01:00
|
|
|
bDifferent = sal_False;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
if( bDifferent ) {
|
|
|
|
nError = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !pWarnBox )
|
|
|
|
{
|
2011-09-27 12:37:00 +01:00
|
|
|
pWarnBox = new WarningBox( GetParentDialog(),
|
2009-10-31 00:36:06 +01:00
|
|
|
WinBits( WB_OK_CANCEL ),
|
|
|
|
String( ResId( nError, rMgr ) ) );
|
|
|
|
pWarnBox->SetHelpId( HID_WARN_NAME_DUPLICATE );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if( pWarnBox->Execute() != RET_OK )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
delete pDlg;
|
|
|
|
delete pWarnBox;
|
|
|
|
|
|
|
|
if( !nError )
|
|
|
|
{
|
2012-05-10 09:29:55 +00:00
|
|
|
XBitmapEntry* pEntry = new XBitmapEntry( aGraphic, aName );
|
2009-10-31 00:36:06 +01:00
|
|
|
pBitmapList->Insert( pEntry );
|
|
|
|
|
2013-04-22 15:38:05 +00:00
|
|
|
const StyleSettings& rStyleSettings = Application::GetSettings().GetStyleSettings();
|
|
|
|
aLbBitmaps.Append(rStyleSettings.GetListBoxPreviewDefaultPixelSize(), *pEntry );
|
2009-10-31 00:36:06 +01:00
|
|
|
aLbBitmaps.SelectEntryPos( aLbBitmaps.GetEntryCount() - 1 );
|
|
|
|
|
|
|
|
#ifdef WNT
|
|
|
|
// hack: #31355# W.P.
|
|
|
|
Rectangle aRect( aLbBitmaps.GetPosPixel(), aLbBitmaps.GetSizePixel() );
|
2011-01-14 12:41:27 +01:00
|
|
|
if( sal_True ) { // ??? overlapped with pDlg
|
2009-10-31 00:36:06 +01:00
|
|
|
// and srolling
|
|
|
|
Invalidate( aRect );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*pnBitmapListState |= CT_MODIFIED;
|
|
|
|
|
|
|
|
ChangeBitmapHdl_Impl( this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2012-04-15 17:50:21 +02:00
|
|
|
// graphic couldn't be loaded
|
2011-09-27 12:37:00 +01:00
|
|
|
ErrorBox( GetParentDialog(),
|
2009-10-31 00:36:06 +01:00
|
|
|
WinBits( WB_OK ),
|
|
|
|
String( ResId( RID_SVXSTR_READ_DATA_ERROR, rMgr ) ) ).Execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxBitmapTabPage, ClickModifyHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nPos = aLbBitmaps.GetSelectEntryPos();
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
if ( nPos != LISTBOX_ENTRY_NOTFOUND )
|
|
|
|
{
|
2009-11-02 20:49:14 +01:00
|
|
|
ResMgr& rMgr = CUI_MGR();
|
2009-10-31 00:36:06 +01:00
|
|
|
String aDesc( ResId( RID_SVXSTR_DESC_NEW_BITMAP, rMgr ) );
|
|
|
|
String aName( pBitmapList->GetBitmap( nPos )->GetName() );
|
|
|
|
String aOldName = aName;
|
|
|
|
|
|
|
|
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
|
2010-10-11 20:11:42 -04:00
|
|
|
DBG_ASSERT(pFact, "Dialogdiet fail!");
|
2011-09-27 12:37:00 +01:00
|
|
|
AbstractSvxNameDialog* pDlg = pFact->CreateSvxNameDialog( GetParentDialog(), aName, aDesc );
|
2010-10-11 20:11:42 -04:00
|
|
|
DBG_ASSERT(pDlg, "Dialogdiet fail!");
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
long nCount = pBitmapList->Count();
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_Bool bDifferent = sal_False;
|
|
|
|
sal_Bool bLoop = sal_True;
|
2013-04-22 15:38:05 +00:00
|
|
|
const StyleSettings& rStyleSettings = Application::GetSettings().GetStyleSettings();
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
while( bLoop && pDlg->Execute() == RET_OK )
|
|
|
|
{
|
|
|
|
pDlg->GetName( aName );
|
2011-01-14 12:41:27 +01:00
|
|
|
bDifferent = sal_True;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
for( long i = 0; i < nCount && bDifferent; i++ )
|
|
|
|
{
|
|
|
|
if( aName == pBitmapList->GetBitmap( i )->GetName() &&
|
|
|
|
aName != aOldName )
|
2011-01-14 12:41:27 +01:00
|
|
|
bDifferent = sal_False;
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if( bDifferent )
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
bLoop = sal_False;
|
2009-10-31 00:36:06 +01:00
|
|
|
XBitmapEntry* pEntry = pBitmapList->GetBitmap( nPos );
|
|
|
|
|
|
|
|
pEntry->SetName( aName );
|
|
|
|
|
2012-05-10 09:29:55 +00:00
|
|
|
const BitmapEx aBitmapEx(aBitmapCtl.GetBitmapEx());
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2012-05-10 09:29:55 +00:00
|
|
|
pEntry->SetGraphicObject(Graphic(aBitmapEx));
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2013-04-22 15:38:05 +00:00
|
|
|
aLbBitmaps.Modify( rStyleSettings.GetListBoxPreviewDefaultPixelSize(), *pEntry, nPos );
|
2009-10-31 00:36:06 +01:00
|
|
|
aLbBitmaps.SelectEntryPos( nPos );
|
|
|
|
|
|
|
|
*pnBitmapListState |= CT_MODIFIED;
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
bBmpChanged = sal_False;
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-27 12:37:00 +01:00
|
|
|
WarningBox aBox( GetParentDialog(), WinBits( WB_OK ), String( ResId( RID_SVXSTR_WARN_NAME_DUPLICATE, rMgr ) ) );
|
2009-10-31 00:36:06 +01:00
|
|
|
aBox.SetHelpId( HID_WARN_NAME_DUPLICATE );
|
|
|
|
aBox.Execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete pDlg;
|
|
|
|
}
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxBitmapTabPage, ClickDeleteHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nPos = aLbBitmaps.GetSelectEntryPos();
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
if( nPos != LISTBOX_ENTRY_NOTFOUND )
|
|
|
|
{
|
2011-09-27 12:37:00 +01:00
|
|
|
QueryBox aQueryBox( GetParentDialog(), WinBits( WB_YES_NO | WB_DEF_NO ),
|
2009-11-02 20:49:14 +01:00
|
|
|
String( CUI_RES( RID_SVXSTR_ASK_DEL_BITMAP ) ) );
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
if( aQueryBox.Execute() == RET_YES )
|
|
|
|
{
|
|
|
|
delete pBitmapList->Remove( nPos );
|
|
|
|
aLbBitmaps.RemoveEntry( nPos );
|
|
|
|
aLbBitmaps.SelectEntryPos( 0 );
|
|
|
|
|
|
|
|
aCtlPreview.Invalidate();
|
|
|
|
aCtlPixel.Invalidate();
|
|
|
|
|
|
|
|
ChangeBitmapHdl_Impl( this );
|
|
|
|
|
|
|
|
*pnBitmapListState |= CT_MODIFIED;
|
|
|
|
}
|
|
|
|
}
|
2012-04-15 17:50:21 +02:00
|
|
|
// determine button state
|
2009-10-31 00:36:06 +01:00
|
|
|
if( !pBitmapList->Count() )
|
|
|
|
{
|
|
|
|
aBtnModify.Disable();
|
|
|
|
aBtnDelete.Disable();
|
|
|
|
aBtnSave.Disable();
|
|
|
|
}
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxBitmapTabPage, ClickLoadHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nReturn = RET_YES;
|
2009-11-02 20:49:14 +01:00
|
|
|
ResMgr& rMgr = CUI_MGR();
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
if ( *pnBitmapListState & CT_MODIFIED )
|
|
|
|
{
|
2011-09-27 12:37:00 +01:00
|
|
|
nReturn = WarningBox( GetParentDialog(), WinBits( WB_YES_NO_CANCEL ),
|
2009-10-31 00:36:06 +01:00
|
|
|
String( ResId( RID_SVXSTR_WARN_TABLE_OVERWRITE, rMgr ) ) ).Execute();
|
|
|
|
|
|
|
|
if ( nReturn == RET_YES )
|
|
|
|
pBitmapList->Save();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( nReturn != RET_CANCEL )
|
|
|
|
{
|
|
|
|
::sfx2::FileDialogHelper aDlg(
|
|
|
|
com::sun::star::ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE,
|
|
|
|
0 );
|
2012-11-30 14:10:50 -02:00
|
|
|
String aStrFilterType( "*.sob" );
|
2009-10-31 00:36:06 +01:00
|
|
|
aDlg.AddFilter( aStrFilterType, aStrFilterType );
|
|
|
|
INetURLObject aFile( SvtPathOptions().GetPalettePath() );
|
|
|
|
aDlg.SetDisplayDirectory( aFile.GetMainURL( INetURLObject::NO_DECODE ) );
|
|
|
|
|
|
|
|
if ( aDlg.Execute() == ERRCODE_NONE )
|
|
|
|
{
|
|
|
|
EnterWait();
|
|
|
|
INetURLObject aURL( aDlg.GetPath() );
|
|
|
|
INetURLObject aPathURL( aURL );
|
|
|
|
|
|
|
|
aPathURL.removeSegment();
|
|
|
|
aPathURL.removeFinalSlash();
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// save table
|
2011-09-23 14:05:07 +01:00
|
|
|
XBitmapListRef pBmpList = XPropertyList::CreatePropertyList(
|
2013-06-18 10:07:44 +01:00
|
|
|
XBITMAP_LIST, aPathURL.GetMainURL( INetURLObject::NO_DECODE ) )->AsBitmapList();
|
2009-10-31 00:36:06 +01:00
|
|
|
pBmpList->SetName( aURL.getName() );
|
|
|
|
if( pBmpList->Load() )
|
|
|
|
{
|
2010-11-24 09:53:21 +00:00
|
|
|
pBitmapList = pBmpList;
|
2011-09-27 12:37:00 +01:00
|
|
|
( (SvxAreaTabDialog*) GetParentDialog() )->SetNewBitmapList( pBitmapList );
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2010-11-24 09:53:21 +00:00
|
|
|
aLbBitmaps.Clear();
|
|
|
|
aLbBitmaps.Fill( pBitmapList );
|
|
|
|
Reset( rOutAttrs );
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2010-11-24 09:53:21 +00:00
|
|
|
pBitmapList->SetName( aURL.getName() );
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// determining (possibly cutting) the name
|
|
|
|
// displaying it in the GroupBox
|
2013-03-15 13:40:30 -03:00
|
|
|
OUString aString( ResId( RID_SVXSTR_TABLE, rMgr ) );
|
|
|
|
aString += ": ";
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2010-11-24 09:53:21 +00:00
|
|
|
if ( aURL.getBase().getLength() > 18 )
|
|
|
|
{
|
2013-03-15 13:40:30 -03:00
|
|
|
aString += aURL.getBase().copy( 0, 15 );
|
|
|
|
aString += "...";
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
2010-11-24 09:53:21 +00:00
|
|
|
else
|
2013-03-15 13:40:30 -03:00
|
|
|
aString += aURL.getBase();
|
2010-11-24 09:53:21 +00:00
|
|
|
|
|
|
|
*pnBitmapListState |= CT_CHANGED;
|
|
|
|
*pnBitmapListState &= ~CT_MODIFIED;
|
2009-10-31 00:36:06 +01:00
|
|
|
LeaveWait();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LeaveWait();
|
2011-09-27 12:37:00 +01:00
|
|
|
ErrorBox( GetParentDialog(), WinBits( WB_OK ),
|
2009-10-31 00:36:06 +01:00
|
|
|
String( ResId( RID_SVXSTR_READ_DATA_ERROR, rMgr ) ) ).Execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// determine button state
|
2009-10-31 00:36:06 +01:00
|
|
|
if( pBitmapList->Count() )
|
|
|
|
{
|
|
|
|
aBtnModify.Enable();
|
|
|
|
aBtnDelete.Enable();
|
|
|
|
aBtnSave.Enable();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aBtnModify.Disable();
|
|
|
|
aBtnDelete.Disable();
|
|
|
|
aBtnSave.Disable();
|
|
|
|
}
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxBitmapTabPage, ClickSaveHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
::sfx2::FileDialogHelper aDlg(
|
|
|
|
com::sun::star::ui::dialogs::TemplateDescription::FILESAVE_SIMPLE, 0 );
|
2012-11-30 14:10:50 -02:00
|
|
|
String aStrFilterType( "*.sob" );
|
2009-10-31 00:36:06 +01:00
|
|
|
aDlg.AddFilter( aStrFilterType, aStrFilterType );
|
|
|
|
|
|
|
|
INetURLObject aFile( SvtPathOptions().GetPalettePath() );
|
|
|
|
DBG_ASSERT( aFile.GetProtocol() != INET_PROT_NOT_VALID, "invalid URL" );
|
|
|
|
|
|
|
|
if( pBitmapList->GetName().Len() )
|
|
|
|
{
|
|
|
|
aFile.Append( pBitmapList->GetName() );
|
|
|
|
|
2011-12-16 17:29:07 -02:00
|
|
|
if( aFile.getExtension().isEmpty() )
|
2012-11-30 14:10:50 -02:00
|
|
|
aFile.SetExtension( OUString("sob") );
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
aDlg.SetDisplayDirectory( aFile.GetMainURL( INetURLObject::NO_DECODE ) );
|
|
|
|
if ( aDlg.Execute() == ERRCODE_NONE )
|
|
|
|
{
|
|
|
|
INetURLObject aURL( aDlg.GetPath() );
|
|
|
|
INetURLObject aPathURL( aURL );
|
|
|
|
|
|
|
|
aPathURL.removeSegment();
|
|
|
|
aPathURL.removeFinalSlash();
|
|
|
|
|
|
|
|
pBitmapList->SetName( aURL.getName() );
|
|
|
|
pBitmapList->SetPath( aPathURL.GetMainURL( INetURLObject::NO_DECODE ) );
|
|
|
|
|
|
|
|
if( pBitmapList->Save() )
|
|
|
|
{
|
2012-04-15 17:50:21 +02:00
|
|
|
// determining (possibly cutting) the name
|
|
|
|
// displaying it in the GroupBox
|
2013-03-15 13:40:30 -03:00
|
|
|
OUString aString( CUI_RES( RID_SVXSTR_TABLE ) );
|
|
|
|
aString += ": ";
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
if ( aURL.getBase().getLength() > 18 )
|
|
|
|
{
|
2013-03-15 13:40:30 -03:00
|
|
|
aString += aURL.getBase().copy( 0, 15 );
|
|
|
|
aString += "...";
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
else
|
2013-03-15 13:40:30 -03:00
|
|
|
aString += aURL.getBase();
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
*pnBitmapListState |= CT_SAVED;
|
|
|
|
*pnBitmapListState &= ~CT_MODIFIED;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-27 12:37:00 +01:00
|
|
|
ErrorBox( GetParentDialog(), WinBits( WB_OK ),
|
2009-11-02 20:49:14 +01:00
|
|
|
String( CUI_RES( RID_SVXSTR_WRITE_DATA_ERROR ) ) ).Execute();
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxBitmapTabPage, ChangePixelColorHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
aCtlPixel.SetPixelColor( aLbColor.GetSelectEntryColor() );
|
|
|
|
aCtlPixel.Invalidate();
|
|
|
|
|
|
|
|
aBitmapCtl.SetPixelColor( aLbColor.GetSelectEntryColor() );
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// get bitmap and display it
|
2012-05-10 09:29:55 +00:00
|
|
|
rXFSet.Put(XFillBitmapItem(String(), Graphic(aBitmapCtl.GetBitmapEx())));
|
2009-10-31 00:36:06 +01:00
|
|
|
aCtlPreview.SetAttributes( aXFillAttr.GetItemSet() );
|
|
|
|
aCtlPreview.Invalidate();
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
bBmpChanged = sal_True;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxBitmapTabPage, ChangeBackgrndColorHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
aCtlPixel.SetBackgroundColor( aLbBackgroundColor.GetSelectEntryColor() );
|
|
|
|
aCtlPixel.Invalidate();
|
|
|
|
|
|
|
|
aBitmapCtl.SetBackgroundColor( aLbBackgroundColor.GetSelectEntryColor() );
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// get bitmap and display it
|
2012-05-10 09:29:55 +00:00
|
|
|
rXFSet.Put(XFillBitmapItem(String(), Graphic(aBitmapCtl.GetBitmapEx())));
|
2009-10-31 00:36:06 +01:00
|
|
|
aCtlPreview.SetAttributes( aXFillAttr.GetItemSet() );
|
|
|
|
aCtlPreview.Invalidate();
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
bBmpChanged = sal_True;
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SvxBitmapTabPage::PointChanged( Window* pWindow, RECT_POINT )
|
|
|
|
{
|
|
|
|
if( pWindow == &aCtlPixel )
|
|
|
|
{
|
|
|
|
aBitmapCtl.SetBmpArray( aCtlPixel.GetBitmapPixelPtr() );
|
|
|
|
|
2012-04-15 17:50:21 +02:00
|
|
|
// get bitmap and display it
|
2012-05-10 09:29:55 +00:00
|
|
|
rXFSet.Put(XFillBitmapItem(String(), Graphic(aBitmapCtl.GetBitmapEx())));
|
2009-10-31 00:36:06 +01:00
|
|
|
aCtlPreview.SetAttributes( aXFillAttr.GetItemSet() );
|
|
|
|
aCtlPreview.Invalidate();
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
bBmpChanged = sal_True;
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Window* SvxBitmapTabPage::GetParentLabeledBy( const Window* pLabeled ) const
|
|
|
|
{
|
|
|
|
if (pLabeled == &aLbBitmaps)
|
|
|
|
return const_cast<FixedText*>(&aLbBitmapsHidden);
|
|
|
|
else
|
|
|
|
return SvxTabPage::GetParentLabeledBy (pLabeled);
|
|
|
|
}
|
2010-10-12 15:57:08 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|