Update ooo320-m1
[ooovba.git] / sc / source / ui / inc / namedlg.hxx
blob4248b19627c748a8718e0d7d58cce72c08c92273
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: namedlg.hxx,v $
10 * $Revision: 1.7 $
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>
36 #endif
37 #ifndef _COMBOBOX_HXX //autogen
38 #include <vcl/combobox.hxx>
39 #endif
40 #ifndef _GROUP_HXX //autogen
41 #include <vcl/group.hxx>
42 #endif
43 #include <vcl/fixed.hxx>
44 #include "rangenam.hxx"
45 #include "anyrefdg.hxx"
47 class ScViewData;
48 class ScDocument;
51 //==================================================================
53 class ScNameDlg : public ScAnyRefDlg
55 private:
56 FixedLine aFlName;
57 ComboBox aEdName;
59 FixedLine aFlAssign;
60 formula::RefEdit aEdAssign;
61 formula::RefButton aRbAssign;
63 FixedLine aFlType;
64 CheckBox aBtnPrintArea;
65 CheckBox aBtnColHeader;
66 CheckBox aBtnCriteria;
67 CheckBox aBtnRowHeader;
69 OKButton aBtnOk;
70 CancelButton aBtnCancel;
71 HelpButton aBtnHelp;
72 PushButton aBtnAdd;
73 PushButton aBtnRemove;
74 MoreButton aBtnMore;
75 BOOL bSaved;
77 const String aStrAdd; // "Hinzufuegen"
78 const String aStrModify; // "Aendern"
79 const String errMsgInvalidSym;
81 ScViewData* pViewData;
82 ScDocument* pDoc;
83 ScRangeName aLocalRangeName;
84 const ScAddress theCursorPos;
85 Selection theCurSel;
87 #ifdef _NAMEDLG_CXX
88 private:
89 void Init();
90 void UpdateChecks();
91 void UpdateNames();
92 void CalcCurTableAssign( String& aAssign, USHORT nPos );
94 // Handler:
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 * );
102 #endif
104 protected:
106 virtual void RefInputDone( BOOL bForced = FALSE );
109 public:
110 ScNameDlg( SfxBindings* pB, SfxChildWindow* pCW, Window* pParent,
111 ScViewData* ptrViewData,
112 const ScAddress& aCursorPos );
113 ~ScNameDlg();
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