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 : #undef SC_DLLIMPLEMENTATION
21 :
22 : #include "namecrea.hxx"
23 : #include "scresid.hxx"
24 :
25 0 : ScNameCreateDlg::ScNameCreateDlg( vcl::Window * pParent, sal_uInt16 nFlags )
26 0 : : ModalDialog(pParent, "CreateNamesDialog", "modules/scalc/ui/createnamesdialog.ui")
27 : {
28 0 : get(m_pTopBox, "top");
29 0 : get(m_pLeftBox, "left");
30 0 : get(m_pBottomBox, "bottom");
31 0 : get(m_pRightBox, "right");
32 0 : m_pTopBox->Check ( (nFlags & NAME_TOP) != 0 );
33 0 : m_pLeftBox->Check ( (nFlags & NAME_LEFT) != 0 );
34 0 : m_pBottomBox->Check( (nFlags & NAME_BOTTOM) != 0 );
35 0 : m_pRightBox->Check ( (nFlags & NAME_RIGHT) != 0 );
36 0 : }
37 :
38 0 : ScNameCreateDlg::~ScNameCreateDlg()
39 : {
40 0 : disposeOnce();
41 0 : }
42 :
43 0 : void ScNameCreateDlg::dispose()
44 : {
45 0 : m_pTopBox.clear();
46 0 : m_pLeftBox.clear();
47 0 : m_pBottomBox.clear();
48 0 : m_pRightBox.clear();
49 0 : ModalDialog::dispose();
50 0 : }
51 :
52 0 : sal_uInt16 ScNameCreateDlg::GetFlags() const
53 : {
54 0 : sal_uInt16 nResult = 0;
55 :
56 0 : nResult |= m_pTopBox->IsChecked() ? NAME_TOP: 0 ;
57 0 : nResult |= m_pLeftBox->IsChecked() ? NAME_LEFT: 0 ;
58 0 : nResult |= m_pBottomBox->IsChecked() ? NAME_BOTTOM: 0 ;
59 0 : nResult |= m_pRightBox->IsChecked() ? NAME_RIGHT: 0 ;
60 :
61 0 : return nResult;
62 0 : }
63 :
64 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|