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 _SW_DROPDOWNFIELDDIALOG_HXX
24 #define _SW_DROPDOWNFIELDDIALOG_HXX
25 
26 #include <svx/stddlg.hxx>
27 #include <vcl/fixed.hxx>
28 #include <vcl/lstbox.hxx>
29 #ifndef _BUTTON_HXX //autogen
30 #include <vcl/button.hxx>
31 #endif
32 
33 class SwDropDownField;
34 class SwField;
35 class SwWrtShell;
36 
37 /*--------------------------------------------------------------------
38      Dialog to edit drop down field selection
39  --------------------------------------------------------------------*/
40 namespace sw
41 {
42 class DropDownFieldDialog : public SvxStandardDialog
43 {
44     FixedLine           aItemsFL;
45     ListBox             aListItemsLB;
46 
47     OKButton            aOKPB;
48     CancelButton        aCancelPB;
49     PushButton          aNextPB;
50     HelpButton          aHelpPB;
51 
52     PushButton          aEditPB;
53 
54     SwWrtShell          &rSh;
55     SwDropDownField*    pDropField;
56 
57     DECL_LINK(ButtonHdl, PushButton*);
58     virtual void    Apply();
59 public:
60     DropDownFieldDialog(   Window *pParent, SwWrtShell &rSh,
61                                 SwField* pField, sal_Bool bNextButton = sal_False );
62     ~DropDownFieldDialog();
63 };
64 } //namespace sw
65 
66 
67 #endif
68