Files
libreoffice/sw/source/ui/inc/inputwin.hxx

142 lines
4.1 KiB
C++
Raw Normal View History

2000-09-18 16:15:01 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 16:15:01 +00:00
*
* Copyright 2008 by Sun Microsystems, Inc.
2000-09-18 16:15:01 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:15:01 +00:00
*
* $RCSfile: inputwin.hxx,v $
* $Revision: 1.8 $
2000-09-18 16:15:01 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 16:15:01 +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.
2000-09-18 16:15:01 +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).
2000-09-18 16:15:01 +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.
2000-09-18 16:15:01 +00:00
*
************************************************************************/
#ifndef SW_INPUTWIN_HXX
#define SW_INPUTWIN_HXX
#ifndef _MENU_HXX //autogen
#include <vcl/menu.hxx>
#endif
#include <sfx2/childwin.hxx>
#ifndef _TOOLBOX_HXX //autogen
#include <vcl/toolbox.hxx>
#endif
#ifndef _EDIT_HXX //autogen
#include <vcl/edit.hxx>
#endif
class SwFldMgr;
class SwWrtShell;
class SwView;
class SfxDispatcher;
//========================================================================
class InputEdit : public Edit
{
public:
InputEdit(Window* pParent, WinBits nStyle) :
Edit(pParent , nStyle){}
void UpdateRange(const String& aSel,
const String& aTblName );
protected:
virtual void KeyInput( const KeyEvent& );
};
//========================================================================
class SwInputWindow : public ToolBox
{
friend class InputEdit;
Edit aPos;
InputEdit aEdit;
PopupMenu aPopMenu;
SwFldMgr* pMgr;
SwWrtShell* pWrtShell;
SwView* pView;
SfxBindings* pBindings;
2000-09-18 16:15:01 +00:00
String aAktTableName, sOldFml;
USHORT nActionCnt;
BOOL bFirst : 1; //Initialisierungen beim ersten Aufruf
BOOL bActive : 1; //fuer Hide/Show beim Dokumentwechsel
BOOL bIsTable : 1;
BOOL bDelSel : 1;
BOOL bDoesUndo : 1;
BOOL bResetUndo : 1;
BOOL bCallUndo : 1;
void DelBoxCntnt();
DECL_LINK( ModifyHdl, InputEdit* );
using Window::IsActive;
2000-09-18 16:15:01 +00:00
protected:
virtual void Resize();
virtual void Click();
DECL_LINK( MenuHdl, Menu * );
DECL_LINK( DropdownClickHdl, ToolBox* );
2000-09-18 16:15:01 +00:00
void ApplyFormula();
void CancelFormula();
2000-09-18 16:15:01 +00:00
public:
SwInputWindow( Window* pParent, SfxBindings* pBindings );
2000-09-18 16:15:01 +00:00
virtual ~SwInputWindow();
virtual void DataChanged( const DataChangedEvent& rDCEvt );
2000-09-18 16:15:01 +00:00
void SelectHdl( ToolBox*);
void ShowWin();
2000-09-18 16:15:01 +00:00
BOOL IsActive(){ return bActive; };
2000-09-18 16:15:01 +00:00
DECL_LINK( SelTblCellsNotify, SwWrtShell * );
void SetFormula( const String& rFormula, BOOL bDelSel = TRUE );
const SwView* GetView() const{return pView;}
};
class SwInputChild : public SfxChildWindow
{
BOOL bObjVis;
SfxDispatcher* pDispatch;
public:
SwInputChild( Window* ,
USHORT nId,
SfxBindings*,
SfxChildWinInfo* );
~SwInputChild();
SFX_DECL_CHILDWINDOW( SwInputChild );
void SetFormula( const String& rFormula, BOOL bDelSel = TRUE )
{ ((SwInputWindow*)pWindow)->SetFormula(
rFormula, bDelSel ); }
const SwView* GetView() const{return ((SwInputWindow*)pWindow)->GetView();}
};
//==================================================================
#endif