Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / miscdlgs / namecrea.cxx
blob74b462e0f6276f1657b7cba0a75b0ba7dc7d91cf
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
21 #undef SC_DLLIMPLEMENTATION
23 #include "namecrea.hxx"
24 #include "scresid.hxx"
26 ScNameCreateDlg::ScNameCreateDlg( Window * pParent, sal_uInt16 nFlags )
27 : ModalDialog(pParent, "CreateNamesDialog", "modules/scalc/ui/createnamesdialog.ui")
29 get(m_pTopBox, "top");
30 get(m_pLeftBox, "left");
31 get(m_pBottomBox, "bottom");
32 get(m_pRightBox, "right");
33 m_pTopBox->Check ( (nFlags & NAME_TOP) ? sal_True : false );
34 m_pLeftBox->Check ( (nFlags & NAME_LEFT) ? sal_True : false );
35 m_pBottomBox->Check( (nFlags & NAME_BOTTOM)? sal_True : false );
36 m_pRightBox->Check ( (nFlags & NAME_RIGHT) ? sal_True : false );
39 sal_uInt16 ScNameCreateDlg::GetFlags() const
41 sal_uInt16 nResult = 0;
43 nResult |= m_pTopBox->IsChecked() ? NAME_TOP: 0 ;
44 nResult |= m_pLeftBox->IsChecked() ? NAME_LEFT: 0 ;
45 nResult |= m_pBottomBox->IsChecked() ? NAME_BOTTOM: 0 ;
46 nResult |= m_pRightBox->IsChecked() ? NAME_RIGHT: 0 ;
48 return nResult;
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */