2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 15:22:35 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 15:22:35 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 15:22:35 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 15:22:35 -05: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.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 15:22:35 -05: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).
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 15:22:35 -05: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.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SD_GLUECTRL_HXX
|
|
|
|
#define SD_GLUECTRL_HXX
|
|
|
|
|
|
|
|
#include <vcl/lstbox.hxx>
|
|
|
|
#include <sfx2/tbxctrl.hxx>
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* GluePointEscDirLB
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
class GlueEscDirLB : public ListBox
|
|
|
|
{
|
2004-07-06 06:26:08 -05:00
|
|
|
private:
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame;
|
2000-09-18 11:07:07 -05:00
|
|
|
public:
|
2004-07-06 06:26:08 -05:00
|
|
|
GlueEscDirLB( Window* pParent,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rFrame );
|
2000-09-18 11:07:07 -05:00
|
|
|
~GlueEscDirLB();
|
|
|
|
|
|
|
|
virtual void Select();
|
|
|
|
|
|
|
|
void Fill();
|
|
|
|
};
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Toolbox-Controller fuer Klebepunkte-Austrittsrichtung
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
class SdTbxCtlGlueEscDir: public SfxToolBoxControl
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
UINT16 GetEscDirPos( UINT16 nEscDir );
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual void StateChanged( USHORT nSId, SfxItemState eState,
|
|
|
|
const SfxPoolItem* pState );
|
|
|
|
virtual Window* CreateItemWindow( Window *pParent );
|
|
|
|
|
|
|
|
SFX_DECL_TOOLBOX_CONTROL();
|
|
|
|
|
2004-07-06 06:26:08 -05:00
|
|
|
SdTbxCtlGlueEscDir( USHORT nSlotId, USHORT nId, ToolBox& rTbx );
|
2000-09-18 11:07:07 -05:00
|
|
|
~SdTbxCtlGlueEscDir() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SD_GLUECTRL_HXX
|
|
|
|
|