1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef FORMULA_PARAWIN_HXX
21 #define FORMULA_PARAWIN_HXX
23 #include <svtools/stdctrl.hxx>
24 #include <svtools/svmedit.hxx>
25 #include <vcl/lstbox.hxx>
26 #include <vcl/group.hxx>
27 #include <vcl/tabpage.hxx>
28 #include <vcl/tabctrl.hxx>
29 #include <vcl/scrbar.hxx>
32 #include "formula/funcutl.hxx"
33 #include "formula/omoduleclient.hxx"
34 #include "ControlHelper.hxx"
38 //============================================================================
39 #define NOT_FOUND 0xffff
40 //============================================================================
41 class IFunctionDescription
;
42 class IControlReferenceHandler
;
44 class ParaWin
: public TabPage
47 OModuleClient m_aModuleClient
;
50 Link aArgModifiedLink
;
52 ::std::vector
<sal_uInt16
> aVisibleArgMapping
;
53 const IFunctionDescription
* pFuncDesc
;
54 IControlReferenceHandler
* pMyParent
;
55 sal_uInt16 nArgs
; // unsuppressed arguments
59 FixedInfo aFtEditDesc
;
89 sal_uInt16 nActiveLine
;
91 ArgInput aArgInput
[4];
92 String aDefaultString
;
96 DECL_LINK(ScrollHdl
, void *);
97 DECL_LINK( ModifyHdl
, ArgInput
* );
98 DECL_LINK( GetEdFocusHdl
, ArgInput
* );
99 DECL_LINK( GetFxFocusHdl
, ArgInput
* );
100 DECL_LINK( GetFxHdl
, ArgInput
* );
104 virtual void SliderMoved();
105 virtual void ArgumentModified();
106 virtual void FxClick();
108 void InitArgInput( sal_uInt16 nPos
, FixedText
& rFtArg
, ImageButton
& rBtnFx
,
109 ArgEdit
& rEdArg
, RefButton
& rRefBtn
);
112 void SetArgumentDesc(const String
& aText
);
113 void SetArgumentText(const String
& aText
);
116 void SetArgName (sal_uInt16 no
,const String
&aArg
);
117 void SetArgNameFont (sal_uInt16 no
,const Font
&);
118 void SetArgVal (sal_uInt16 no
,const String
&aArg
);
120 void HideParaLine(sal_uInt16 no
);
121 void ShowParaLine(sal_uInt16 no
);
122 void UpdateArgDesc( sal_uInt16 nArg
);
123 void UpdateArgInput( sal_uInt16 nOffset
, sal_uInt16 i
);
126 ParaWin(Window
* pParent
,IControlReferenceHandler
* _pDlg
,Point aPos
);
129 void SetFunctionDesc(const IFunctionDescription
* pFDesc
);
130 void SetArgumentOffset(sal_uInt16 nOffset
);
131 void SetEditDesc(const String
& aText
);
135 sal_Bool
IsRefMode() {return bRefMode
;}
136 void SetRefMode(sal_Bool bFlag
) {bRefMode
=bFlag
;}
138 sal_uInt16
GetActiveLine();
139 void SetActiveLine(sal_uInt16 no
);
140 RefEdit
* GetActiveEdit();
141 String
GetActiveArgName();
143 String
GetArgument(sal_uInt16 no
);
144 void SetArgument(sal_uInt16 no
, const String
& aString
);
145 void SetArgumentFonts(const Font
&aBoldFont
,const Font
&aLightFont
);
147 void SetEdFocus(sal_uInt16 nEditLine
); //Sichtbare Editzeilen
148 sal_uInt16
GetSliderPos();
149 void SetSliderPos(sal_uInt16 nSliderPos
);
151 void SetScrollHdl( const Link
& rLink
) { aScrollLink
= rLink
; }
152 const Link
& GetScrollHdl() const { return aScrollLink
; }
154 void SetArgModifiedHdl( const Link
& rLink
) { aArgModifiedLink
= rLink
; }
155 const Link
& GetArgModifiedHdl() const { return aArgModifiedLink
; }
157 void SetFxHdl( const Link
& rLink
) { aFxLink
= rLink
; }
158 const Link
& GetFxHdl() const { return aFxLink
; }
165 #endif // FORMULA_PARAWIN_HXX
167 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */