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 <vcl/msgbox.hxx>
28 :
29 : #include "shtabdlg.hxx"
30 : #include "scresid.hxx"
31 : #include "miscdlgs.hrc"
32 :
33 :
34 : //==================================================================
35 :
36 0 : ScShowTabDlg::ScShowTabDlg( Window* pParent ) :
37 : ModalDialog ( pParent, ScResId( RID_SCDLG_SHOW_TAB ) ),
38 : aFtLbTitle ( this, ScResId( FT_LABEL ) ),
39 : aLb ( this, ScResId( LB_ENTRYLIST ) ),
40 : aBtnOk ( this, ScResId( BTN_OK ) ),
41 : aBtnCancel ( this, ScResId( BTN_CANCEL ) ),
42 0 : aBtnHelp ( this, ScResId( BTN_HELP ) )
43 : {
44 0 : aLb.Clear();
45 0 : aLb.SetDoubleClickHdl( LINK( this, ScShowTabDlg, DblClkHdl ) );
46 :
47 : //-------------
48 0 : FreeResource();
49 0 : }
50 :
51 : //------------------------------------------------------------------------
52 :
53 0 : void ScShowTabDlg::SetDescription(
54 : const String& rTitle, const String& rFixedText,
55 : const rtl::OString& rDlgHelpId, const rtl::OString& sLbHelpId )
56 : {
57 0 : SetText( rTitle );
58 0 : aFtLbTitle.SetText( rFixedText );
59 0 : SetHelpId( rDlgHelpId );
60 0 : aLb.SetHelpId( sLbHelpId );
61 0 : }
62 :
63 0 : void ScShowTabDlg::Insert( const String& rString, sal_Bool bSelected )
64 : {
65 0 : aLb.InsertEntry( rString );
66 0 : if( bSelected )
67 0 : aLb.SelectEntryPos( aLb.GetEntryCount() - 1 );
68 0 : }
69 :
70 : //------------------------------------------------------------------------
71 :
72 0 : sal_uInt16 ScShowTabDlg::GetSelectEntryCount() const
73 : {
74 0 : return aLb.GetSelectEntryCount();
75 : }
76 :
77 0 : String ScShowTabDlg::GetSelectEntry(sal_uInt16 nPos) const
78 : {
79 0 : return aLb.GetSelectEntry(nPos);
80 : }
81 :
82 0 : sal_uInt16 ScShowTabDlg::GetSelectEntryPos(sal_uInt16 nPos) const
83 : {
84 0 : return aLb.GetSelectEntryPos(nPos);
85 : }
86 :
87 : //------------------------------------------------------------------------
88 :
89 0 : IMPL_LINK_NOARG_INLINE_START(ScShowTabDlg, DblClkHdl)
90 : {
91 0 : EndDialog( RET_OK );
92 0 : return 0;
93 : }
94 0 : IMPL_LINK_NOARG_INLINE_END(ScShowTabDlg, DblClkHdl)
95 :
96 0 : ScShowTabDlg::~ScShowTabDlg()
97 : {
98 0 : }
99 :
100 :
101 :
102 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|