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 : #ifndef INCLUDED_DBACCESS_SOURCE_UI_APP_APPTITLEWINDOW_HXX
20 : #define INCLUDED_DBACCESS_SOURCE_UI_APP_APPTITLEWINDOW_HXX
21 :
22 : #include <vcl/fixed.hxx>
23 :
24 : namespace dbaui
25 : {
26 : class OTitleWindow : public vcl::Window
27 : {
28 : VclPtr<FixedText> m_aSpace1;
29 : VclPtr<FixedText> m_aSpace2;
30 : VclPtr<FixedText> m_aTitle;
31 : VclPtr<vcl::Window> m_pChild;
32 : bool m_bShift;
33 : void ImplInitSettings( bool bFont, bool bForeground, bool bBackground );
34 : protected:
35 : virtual void DataChanged(const DataChangedEvent& rDCEvt) SAL_OVERRIDE;
36 : public:
37 : OTitleWindow(vcl::Window* _pParent,sal_uInt16 _nTitleId,WinBits _nBits,bool _bShift = true);
38 : virtual ~OTitleWindow();
39 : virtual void dispose() SAL_OVERRIDE;
40 :
41 : // Window overrides
42 : virtual void Resize() SAL_OVERRIDE;
43 : virtual void GetFocus() SAL_OVERRIDE;
44 :
45 : virtual void ApplySettings(vcl::RenderContext& rRenderContext) SAL_OVERRIDE;
46 :
47 : /** sets the child window which should be displayed below the title. It will be destroyed at the end.
48 : @param _pChild
49 : The child window.
50 : */
51 : void setChildWindow(vcl::Window* _pChild);
52 :
53 : /** gets the child window.
54 :
55 : @return
56 : The child winodw.
57 : */
58 285 : inline vcl::Window* getChildWindow() const { return m_pChild; }
59 :
60 : /** sets the title text out of the resource
61 : @param _nTitleId
62 : The resource id of the title text.
63 : */
64 : void setTitle(sal_uInt16 _nTitleId);
65 :
66 : /** Gets the min Width in Pixel which is needed to display the whole
67 :
68 : @return
69 : the min width
70 : */
71 : long GetWidthPixel() const;
72 : };
73 : } // namespace dbaui
74 : #endif // INCLUDED_DBACCESS_SOURCE_UI_APP_APPTITLEWINDOW_HXX
75 :
76 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|