2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 16:15:01 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 19:07:28 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 19:07:28 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 19:07:28 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 19:07:28 +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
|
|
|
*
|
2008-04-10 19:07:28 +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
|
|
|
*
|
2008-04-10 19:07:28 +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
|
|
|
|
|
2010-11-25 14:31:11 +01:00
|
|
|
#include <vcl/edit.hxx>
|
2000-09-18 16:15:01 +00:00
|
|
|
#include <vcl/menu.hxx>
|
|
|
|
#include <vcl/toolbox.hxx>
|
2010-11-25 14:31:11 +01:00
|
|
|
|
|
|
|
#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;
|
2001-06-11 08:18:10 +00:00
|
|
|
SfxBindings* pBindings;
|
2000-09-18 16:15:01 +00:00
|
|
|
String aAktTableName, sOldFml;
|
2010-11-25 14:31:11 +01:00
|
|
|
sal_Int32 m_nActionCount;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-02-07 13:06:08 +01:00
|
|
|
sal_Bool bFirst : 1; //Initialisierungen beim ersten Aufruf
|
|
|
|
sal_Bool bActive : 1; //fuer Hide/Show beim Dokumentwechsel
|
|
|
|
sal_Bool bIsTable : 1;
|
|
|
|
sal_Bool bDelSel : 1;
|
2010-11-25 14:31:11 +01:00
|
|
|
bool m_bDoesUndo : 1;
|
|
|
|
bool m_bResetUndo : 1;
|
|
|
|
bool m_bCallUndo : 1;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-11-25 14:31:11 +01:00
|
|
|
void CleanupUglyHackWithUndo();
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
void DelBoxCntnt();
|
|
|
|
DECL_LINK( ModifyHdl, InputEdit* );
|
|
|
|
|
2007-10-22 14:20:11 +00:00
|
|
|
using Window::IsActive;
|
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
protected:
|
|
|
|
virtual void Resize();
|
|
|
|
virtual void Click();
|
|
|
|
DECL_LINK( MenuHdl, Menu * );
|
2005-03-15 08:22:24 +00:00
|
|
|
DECL_LINK( DropdownClickHdl, ToolBox* );
|
2000-09-18 16:15:01 +00:00
|
|
|
void ApplyFormula();
|
|
|
|
void CancelFormula();
|
2007-10-22 14:20:11 +00:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
public:
|
2001-06-11 08:18:10 +00:00
|
|
|
SwInputWindow( Window* pParent, SfxBindings* pBindings );
|
2000-09-18 16:15:01 +00:00
|
|
|
virtual ~SwInputWindow();
|
|
|
|
|
2006-08-04 12:06:42 +00:00
|
|
|
virtual void DataChanged( const DataChangedEvent& rDCEvt );
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
void SelectHdl( ToolBox*);
|
2007-09-27 11:03:03 +00:00
|
|
|
|
|
|
|
void ShowWin();
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool IsActive(){ return bActive; };
|
2007-09-27 11:03:03 +00:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
DECL_LINK( SelTblCellsNotify, SwWrtShell * );
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
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
|
|
|
|
{
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool bObjVis;
|
2000-09-18 16:15:01 +00:00
|
|
|
SfxDispatcher* pDispatch;
|
|
|
|
public:
|
|
|
|
SwInputChild( Window* ,
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nId,
|
2000-09-18 16:15:01 +00:00
|
|
|
SfxBindings*,
|
|
|
|
SfxChildWinInfo* );
|
|
|
|
~SwInputChild();
|
|
|
|
SFX_DECL_CHILDWINDOW( SwInputChild );
|
2011-01-17 15:06:54 +01:00
|
|
|
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
|
|
|
|
|
2010-10-14 08:30:41 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|