Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / miscdlgs / shtabdlg.cxx
blob03949ef7593b089a6268ee4eda49eaaeab2c8a46
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
25 //------------------------------------------------------------------
27 #include <vcl/msgbox.hxx>
29 #include "shtabdlg.hxx"
30 #include "scresid.hxx"
31 #include "miscdlgs.hrc"
34 //==================================================================
36 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 aBtnHelp ( this, ScResId( BTN_HELP ) )
44 aLb.Clear();
45 aLb.SetDoubleClickHdl( LINK( this, ScShowTabDlg, DblClkHdl ) );
47 //-------------
48 FreeResource();
51 //------------------------------------------------------------------------
53 void ScShowTabDlg::SetDescription(
54 const OUString& rTitle, const OUString& rFixedText,
55 const OString& rDlgHelpId, const OString& sLbHelpId )
57 SetText( rTitle );
58 aFtLbTitle.SetText( rFixedText );
59 SetHelpId( rDlgHelpId );
60 aLb.SetHelpId( sLbHelpId );
63 void ScShowTabDlg::Insert( const OUString& rString, sal_Bool bSelected )
65 aLb.InsertEntry( rString );
66 if( bSelected )
67 aLb.SelectEntryPos( aLb.GetEntryCount() - 1 );
70 //------------------------------------------------------------------------
72 sal_uInt16 ScShowTabDlg::GetSelectEntryCount() const
74 return aLb.GetSelectEntryCount();
77 OUString ScShowTabDlg::GetSelectEntry(sal_uInt16 nPos) const
79 return aLb.GetSelectEntry(nPos);
82 sal_uInt16 ScShowTabDlg::GetSelectEntryPos(sal_uInt16 nPos) const
84 return aLb.GetSelectEntryPos(nPos);
87 //------------------------------------------------------------------------
89 IMPL_LINK_NOARG_INLINE_START(ScShowTabDlg, DblClkHdl)
91 EndDialog( RET_OK );
92 return 0;
94 IMPL_LINK_NOARG_INLINE_END(ScShowTabDlg, DblClkHdl)
96 ScShowTabDlg::~ScShowTabDlg()
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */