Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "cuires.hrc"
21 : #include "dialmgr.hxx"
22 : #include "newtabledlg.hxx"
23 : #include "newtabledlg.hrc"
24 :
25 0 : SvxNewTableDialog::SvxNewTableDialog( Window* pParent )
26 0 : : ModalDialog( pParent, CUI_RES( RID_SVX_NEWTABLE_DLG ) )
27 0 : , maFtColumns( this, CUI_RES( FT_COLUMNS ) )
28 0 : , maNumColumns( this, CUI_RES( NF_COLUMNS ) )
29 0 : , maFtRows( this, CUI_RES( FT_ROWS ) )
30 0 : , maNumRows( this, CUI_RES( NF_ROWS ) )
31 0 : , maFlSep( this, CUI_RES( FL_SEP ) )
32 0 : , maHelpButton( this, CUI_RES( BTN_HELP ) )
33 0 : , maOkButton( this, CUI_RES( BTN_OK ) )
34 0 : , maCancelButton( this, CUI_RES( BTN_CANCEL ) )
35 : {
36 0 : maNumRows.SetValue(2);
37 0 : maNumColumns.SetValue(5);
38 0 : FreeResource();
39 0 : }
40 :
41 0 : short SvxNewTableDialog::Execute(void)
42 : {
43 0 : return ModalDialog::Execute();
44 : }
45 :
46 0 : void SvxNewTableDialog::Apply(void)
47 : {
48 0 : }
49 :
50 0 : sal_Int32 SvxNewTableDialog::getRows() const
51 : {
52 0 : return sal::static_int_cast< sal_Int32 >( maNumRows.GetValue() );
53 : }
54 :
55 0 : sal_Int32 SvxNewTableDialog::getColumns() const
56 : {
57 0 : return sal::static_int_cast< sal_Int32 >( maNumColumns.GetValue() );
58 3 : }
59 :
60 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|