1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #undef SC_DLLIMPLEMENTATION
22 #include "namecrea.hxx"
23 #include "scresid.hxx"
25 ScNameCreateDlg::ScNameCreateDlg( vcl::Window
* pParent
, sal_uInt16 nFlags
)
26 : ModalDialog(pParent
, "CreateNamesDialog", "modules/scalc/ui/createnamesdialog.ui")
28 get(m_pTopBox
, "top");
29 get(m_pLeftBox
, "left");
30 get(m_pBottomBox
, "bottom");
31 get(m_pRightBox
, "right");
32 m_pTopBox
->Check ( (nFlags
& NAME_TOP
) != 0 );
33 m_pLeftBox
->Check ( (nFlags
& NAME_LEFT
) != 0 );
34 m_pBottomBox
->Check( (nFlags
& NAME_BOTTOM
) != 0 );
35 m_pRightBox
->Check ( (nFlags
& NAME_RIGHT
) != 0 );
38 ScNameCreateDlg::~ScNameCreateDlg()
43 void ScNameCreateDlg::dispose()
49 ModalDialog::dispose();
52 sal_uInt16
ScNameCreateDlg::GetFlags() const
54 sal_uInt16 nResult
= 0;
56 nResult
|= m_pTopBox
->IsChecked() ? NAME_TOP
: 0 ;
57 nResult
|= m_pLeftBox
->IsChecked() ? NAME_LEFT
: 0 ;
58 nResult
|= m_pBottomBox
->IsChecked() ? NAME_BOTTOM
: 0 ;
59 nResult
|= m_pRightBox
->IsChecked() ? NAME_RIGHT
: 0 ;
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */