xref: /AOO41X/main/sw/source/ui/inc/inpdlg.hxx (revision 1d2dbeb0b7301723c6d13094e87a8714ef81a328)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef _INPDLG_HXX
24 #define _INPDLG_HXX
25 
26 #include <svx/stddlg.hxx>
27 
28 #ifndef _SV_SVMEDIT_HXX //autogen
29 #include <svtools/svmedit.hxx>
30 #endif
31 #include <vcl/fixed.hxx>
32 #ifndef _BUTTON_HXX //autogen
33 #include <vcl/button.hxx>
34 #endif
35 
36 class SwInputField;
37 class SwSetExpField;
38 class SwUserFieldType;
39 class SwField;
40 class SwWrtShell;
41 
42 /*--------------------------------------------------------------------
43      Beschreibung: Einfuegen Felder
44  --------------------------------------------------------------------*/
45 
46 class SwFldInputDlg: public SvxStandardDialog
47 {
48     virtual void    Apply();
49     virtual void    StateChanged( StateChangedType );
50 
51     SwWrtShell         &rSh;
52     SwInputField*       pInpFld;
53     SwSetExpField*      pSetFld;
54     SwUserFieldType*    pUsrType;
55 
56     Edit                aLabelED;
57 
58     MultiLineEdit       aEditED;
59     FixedLine           aEditFL;
60 
61     OKButton            aOKBT;
62     CancelButton        aCancelBT;
63     PushButton          aNextBT;
64     HelpButton          aHelpBT;
65 
66     DECL_LINK(NextHdl, PushButton*);
67 public:
68     SwFldInputDlg(  Window *pParent, SwWrtShell &rSh,
69                     SwField* pField, sal_Bool bNextButton = sal_False );
70     ~SwFldInputDlg();
71 };
72 
73 
74 #endif
75