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 :
21 : #undef SC_DLLIMPLEMENTATION
22 :
23 :
24 :
25 : //------------------------------------------------------------------
26 :
27 : #include "namecrea.hxx"
28 : #include "scresid.hxx"
29 : #include "miscdlgs.hrc"
30 :
31 :
32 : //==================================================================
33 :
34 0 : ScNameCreateDlg::ScNameCreateDlg( Window * pParent, sal_uInt16 nFlags )
35 : : ModalDialog( pParent, ScResId(RID_SCDLG_NAMES_CREATE) ),
36 : aFixedLine ( this, ScResId( FL_FRAME ) ),
37 : aTopBox ( this, ScResId( BTN_TOP ) ),
38 : aLeftBox ( this, ScResId( BTN_LEFT ) ),
39 : aBottomBox ( this, ScResId( BTN_BOTTOM ) ),
40 : aRightBox ( this, ScResId( BTN_RIGHT ) ),
41 : aOKButton ( this, ScResId( BTN_OK ) ),
42 : aCancelButton ( this, ScResId( BTN_CANCEL ) ),
43 0 : aHelpButton ( this, ScResId( BTN_HELP ) )
44 : {
45 0 : aTopBox.Check ( (nFlags & NAME_TOP) ? sal_True : false );
46 0 : aLeftBox.Check ( (nFlags & NAME_LEFT) ? sal_True : false );
47 0 : aBottomBox.Check( (nFlags & NAME_BOTTOM)? sal_True : false );
48 0 : aRightBox.Check ( (nFlags & NAME_RIGHT) ? sal_True : false );
49 :
50 0 : FreeResource();
51 0 : }
52 :
53 : //------------------------------------------------------------------
54 :
55 0 : sal_uInt16 ScNameCreateDlg::GetFlags() const
56 : {
57 0 : sal_uInt16 nResult = 0;
58 :
59 0 : nResult |= aTopBox.IsChecked() ? NAME_TOP: 0 ;
60 0 : nResult |= aLeftBox.IsChecked() ? NAME_LEFT: 0 ;
61 0 : nResult |= aBottomBox.IsChecked() ? NAME_BOTTOM: 0 ;
62 0 : nResult |= aRightBox.IsChecked() ? NAME_RIGHT: 0 ;
63 :
64 0 : return nResult;
65 : }
66 :
67 :
68 :
69 :
70 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|