xref: /AOO41X/main/cui/source/inc/splitcelldlg.hxx (revision c4eee24dc018e70cce741d2c2ecfc43b06c69c41)
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 _SVX_SPLITCELLDLG_HXX
24 #define _SVX_SPLITCELLDLG_HXX
25 
26 #include <vcl/fixed.hxx>
27 #include <vcl/field.hxx>
28 #include <vcl/button.hxx>
29 #include <vcl/button.hxx>
30 
31 #include <svx/stddlg.hxx>
32 #include <svx/svxdlg.hxx>
33 
34 class SvxSplitTableDlg : public SvxAbstractSplittTableDialog, public SvxStandardDialog
35 {
36     FixedLine           maCountFL;
37     FixedText           maCountLbl;
38     NumericField        maCountEdit;
39     FixedLine           maDirFL;
40     ImageRadioButton    maHorzBox;
41     ImageRadioButton    maVertBox;
42     CheckBox            maPropCB;
43     OKButton            maOKBtn;
44     CancelButton        maCancelBtn;
45     HelpButton          maHelpBtn;
46 
47     long                mnMaxVertical;
48     long                mnMaxHorizontal;
49 protected:
50     virtual void Apply();
51 
52 public:
53     SvxSplitTableDlg(Window *pParent, bool bIsTableVertical, long nMaxVertical, long nMaxHorizontal );
54     virtual ~SvxSplitTableDlg();
55 
56     DECL_LINK( ClickHdl, Button * );
57 
58     virtual bool IsHorizontal() const;
59     virtual bool IsProportional() const;
60     virtual long GetCount() const;
61 
62     virtual short Execute();
63 };
64 
65 #endif
66