xref: /aoo4110/main/svx/inc/svx/splitcelldlg.hxx (revision b1cdbd2c)
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 
33 class SvxSplitTableDlg : public SvxStandardDialog
34 {
35 	FixedText 			maCountLbl;
36 	NumericField 		maCountEdit;
37     FixedLine           maCountFL;
38 	ImageRadioButton 	maHorzBox;
39     ImageRadioButton    maVertBox;
40     CheckBox            maPropCB;
41     FixedLine           maDirFL;
42 	OKButton 			maOKBtn;
43 	CancelButton 		maCancelBtn;
44 	HelpButton 			maHelpBtn;
45 
46 protected:
47 	virtual void Apply();
48 
49 public:
50 	SvxSplitTableDlg(Window *pParent );
51     DECL_LINK( ClickHdl, Button * );
52 
53     bool IsHorizontal() const;
54     bool IsProportional() const;
55     long GetCount() const;
56 };
57 
58 #endif
59