2007-05-22 16:39:55 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 19:06:33 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2007-05-22 16:39:55 +00:00
|
|
|
*
|
2008-04-10 19:06:33 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2007-05-22 16:39:55 +00:00
|
|
|
*
|
2008-04-10 19:06:33 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2007-05-22 16:39:55 +00:00
|
|
|
*
|
2008-04-10 19:06:33 +00:00
|
|
|
* $RCSfile: res_LegendPosition.hxx,v $
|
|
|
|
* $Revision: 1.3 $
|
2007-05-22 16:39:55 +00:00
|
|
|
*
|
2008-04-10 19:06:33 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2007-05-22 16:39:55 +00:00
|
|
|
*
|
2008-04-10 19:06:33 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2007-05-22 16:39:55 +00:00
|
|
|
*
|
2008-04-10 19:06:33 +00:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2007-05-22 16:39:55 +00:00
|
|
|
*
|
2008-04-10 19:06:33 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2007-05-22 16:39:55 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _CHART2_RES_LEGENPOSITION_HXX
|
|
|
|
#define _CHART2_RES_LEGENPOSITION_HXX
|
|
|
|
|
|
|
|
// header for class CheckBox
|
|
|
|
#ifndef _SV_BUTTON_HXX
|
|
|
|
#include <vcl/button.hxx>
|
|
|
|
#endif
|
|
|
|
#include <vcl/fixed.hxx>
|
|
|
|
// header for class SfxItemSet
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/itemset.hxx>
|
2007-05-22 16:39:55 +00:00
|
|
|
#include <com/sun/star/frame/XModel.hpp>
|
|
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
|
|
|
|
|
|
|
//.............................................................................
|
|
|
|
namespace chart
|
|
|
|
{
|
|
|
|
//.............................................................................
|
|
|
|
|
|
|
|
class LegendPositionResources
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//constructor without Display checkbox
|
|
|
|
LegendPositionResources( Window* pParent );
|
|
|
|
//constructor inclusive Display checkbox
|
|
|
|
LegendPositionResources( Window* pParent, const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::uno::XComponentContext>& xCC );
|
|
|
|
virtual ~LegendPositionResources();
|
|
|
|
|
|
|
|
void writeToResources( const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::frame::XModel >& xChartModel );
|
|
|
|
void writeToModel( const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::frame::XModel >& xChartModel ) const;
|
|
|
|
|
|
|
|
|
|
|
|
void initFromItemSet( const SfxItemSet& rInAttrs );
|
|
|
|
void writeToItemSet( SfxItemSet& rOutAttrs ) const;
|
|
|
|
|
|
|
|
void SetChangeHdl( const Link& rLink );
|
|
|
|
|
|
|
|
DECL_LINK( PositionEnableHdl, void* );
|
|
|
|
DECL_LINK( PositionChangeHdl, RadioButton* );
|
|
|
|
|
|
|
|
private:
|
|
|
|
void impl_setRadioButtonToggleHdl();
|
|
|
|
|
|
|
|
private:
|
|
|
|
::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::uno::XComponentContext> m_xCC;
|
|
|
|
|
|
|
|
CheckBox m_aCbxShow;
|
|
|
|
|
|
|
|
RadioButton m_aRbtLeft;
|
|
|
|
RadioButton m_aRbtTop;
|
|
|
|
RadioButton m_aRbtRight;
|
|
|
|
RadioButton m_aRbtBottom;
|
|
|
|
|
|
|
|
Link m_aChangeLink;
|
|
|
|
};
|
|
|
|
|
|
|
|
//.............................................................................
|
|
|
|
} //namespace chart
|
|
|
|
//.............................................................................
|
|
|
|
|
|
|
|
#endif
|