2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2011-03-31 10:05:04 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
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;
|
|
|
|
|
2011-04-21 18:12:29 +02:00
|
|
|
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;
|
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();
|
2012-03-01 18:00:32 +01:00
|
|
|
DECL_LINK( ModifyHdl, void* );
|
2000-09-18 16:15:01 +00:00
|
|
|
|
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 * );
|
2012-03-01 18:00:32 +01:00
|
|
|
DECL_LINK( DropdownClickHdl, void* );
|
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
|
|
|
|
{
|
|
|
|
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();
|
2012-06-16 14:12:33 +01:00
|
|
|
SFX_DECL_CHILDWINDOW_WITHID( 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: */
|