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

135 lines
4.1 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 2000, 2010 Oracle and/or its affiliates.
2000-09-18 16:15:01 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
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
#include <vcl/edit.hxx>
2000-09-18 16:15:01 +00:00
#include <vcl/menu.hxx>
#include <vcl/toolbox.hxx>
#include <sfx2/childwin.hxx>
2000-09-18 16:15:01 +00:00
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;
sal_Bool bFirst : 1; // initialisations at first call
sal_Bool bActive : 1; // for hide/show when switching documents
2011-02-07 13:06:08 +01:00
sal_Bool bIsTable : 1;
sal_Bool bDelSel : 1;
bool m_bDoesUndo : 1;
bool m_bResetUndo : 1;
bool m_bCallUndo : 1;
2000-09-18 16:15:01 +00:00
void CleanupUglyHackWithUndo();
2000-09-18 16:15:01 +00:00
void DelBoxCntnt();
DECL_LINK( ModifyHdl, void* );
2000-09-18 16:15:01 +00:00
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, void* );
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();
sal_Bool IsActive(){ return bActive; };
2000-09-18 16:15:01 +00:00
DECL_LINK( SelTblCellsNotify, SwWrtShell * );
void SetFormula( const String& rFormula, sal_Bool bDelSel = sal_True );
2000-09-18 16:15:01 +00:00
const SwView* GetView() const{return pView;}
};
class SwInputChild : public SfxChildWindow
{
sal_Bool bObjVis;
2000-09-18 16:15:01 +00:00
SfxDispatcher* pDispatch;
public:
SwInputChild( Window* ,
sal_uInt16 nId,
2000-09-18 16:15:01 +00:00
SfxBindings*,
SfxChildWinInfo* );
~SwInputChild();
SFX_DECL_CHILDWINDOW( SwInputChild );
void SetFormula( const String& rFormula, sal_Bool bDelSel = sal_True )
2000-09-18 16:15:01 +00:00
{ ((SwInputWindow*)pWindow)->SetFormula(
rFormula, bDelSel ); }
const SwView* GetView() const{return ((SwInputWindow*)pWindow)->GetView();}
};
//==================================================================
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */