1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_cui.hxx"
30 
31 #include "optHeaderTabListbox.hxx"
32 #include <vcl/svapp.hxx>
33 #include <svtools/headbar.hxx>
34 
35 
36 namespace svx
37 {
38 // class OptLBoxString_Impl ----------------------------------------------
39 
40 class OptLBoxString_Impl : public SvLBoxString
41 {
42 public:
43     OptLBoxString_Impl( SvLBoxEntry* pEntry, sal_uInt16 nFlags, const String& rTxt ) :
44         SvLBoxString( pEntry, nFlags, rTxt ) {}
45 
46     virtual void Paint( const Point& rPos, SvLBox& rDev, sal_uInt16 nFlags, SvLBoxEntry* pEntry );
47 };
48 
49 // -----------------------------------------------------------------------
50 
51 void OptLBoxString_Impl::Paint( const Point& rPos, SvLBox& rDev, sal_uInt16, SvLBoxEntry* pEntry )
52 {
53     Font aOldFont( rDev.GetFont() );
54     Font aFont( aOldFont );
55     //detect readonly state by asking for a valid Image
56     if(pEntry && !(!((OptHeaderTabListBox&)rDev).GetCollapsedEntryBmp(pEntry)))
57         aFont.SetColor( Application::GetSettings().GetStyleSettings().GetDeactiveTextColor() );
58     rDev.SetFont( aFont );
59     rDev.DrawText( rPos, GetText() );
60     rDev.SetFont( aOldFont );
61 }
62 // -----------------------------------------------------------------------------
63 
64 OptHeaderTabListBox::OptHeaderTabListBox( Window* pParent, WinBits nWinStyle ) :
65 
66 	SvHeaderTabListBox( pParent, nWinStyle )
67 {
68 }
69 
70 // -----------------------------------------------------------------------
71 void OptHeaderTabListBox::InitEntry( SvLBoxEntry* pEntry, const XubString& rTxt,
72                                      const Image& rImg1, const Image& rImg2,
73                                      SvLBoxButtonKind eButtonKind )
74 {
75     SvTabListBox::InitEntry( pEntry, rTxt, rImg1, rImg2, eButtonKind );
76     sal_uInt16 _nTabCount = TabCount();
77 
78     for ( sal_uInt16 nCol = 1; nCol < _nTabCount; ++nCol )
79     {
80         // alle Spalten mit eigener Klasse initialisieren (Spalte 0 == Bitmap)
81         SvLBoxString* pCol = (SvLBoxString*)pEntry->GetItem( nCol );
82         OptLBoxString_Impl* pStr = new OptLBoxString_Impl( pEntry, 0, pCol->GetText() );
83         pEntry->ReplaceItem( pStr, nCol );
84     }
85 }
86 
87 } // namespace svx
88