1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: namedlg.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef SC_NAMEDLG_HXX
32 #define SC_NAMEDLG_HXX
34 #ifndef _MOREBTN_HXX //autogen
35 #include <vcl/morebtn.hxx>
37 #ifndef _COMBOBOX_HXX //autogen
38 #include <vcl/combobox.hxx>
40 #ifndef _GROUP_HXX //autogen
41 #include <vcl/group.hxx>
43 #include <vcl/fixed.hxx>
44 #include "rangenam.hxx"
45 #include "anyrefdg.hxx"
51 //==================================================================
53 class ScNameDlg
: public ScAnyRefDlg
60 formula::RefEdit aEdAssign
;
61 formula::RefButton aRbAssign
;
64 CheckBox aBtnPrintArea
;
65 CheckBox aBtnColHeader
;
66 CheckBox aBtnCriteria
;
67 CheckBox aBtnRowHeader
;
70 CancelButton aBtnCancel
;
73 PushButton aBtnRemove
;
77 const String aStrAdd
; // "Hinzufuegen"
78 const String aStrModify
; // "Aendern"
79 const String errMsgInvalidSym
;
81 ScViewData
* pViewData
;
83 ScRangeName aLocalRangeName
;
84 const ScAddress theCursorPos
;
92 void CalcCurTableAssign( String
& aAssign
, USHORT nPos
);
95 DECL_LINK( OkBtnHdl
, void * );
96 DECL_LINK( CancelBtnHdl
, void * );
97 DECL_LINK( AddBtnHdl
, void * );
98 DECL_LINK( RemoveBtnHdl
, void * );
99 DECL_LINK( EdModifyHdl
, Edit
* );
100 DECL_LINK( NameSelectHdl
, void * );
101 DECL_LINK( AssignGetFocusHdl
, void * );
106 virtual void RefInputDone( BOOL bForced
= FALSE
);
110 ScNameDlg( SfxBindings
* pB
, SfxChildWindow
* pCW
, Window
* pParent
,
111 ScViewData
* ptrViewData
,
112 const ScAddress
& aCursorPos
);
115 virtual void SetReference( const ScRange
& rRef
, ScDocument
* pDoc
);
116 virtual BOOL
IsRefInputMode() const;
118 virtual void SetActive();
119 virtual BOOL
Close();
125 #endif // SC_NAMEDLG_HXX