Bump version to 5.0-14
[LibreOffice.git] / dbaccess / source / ui / app / AppTitleWindow.hxx
blob888ec32462be5653cbe5cf4f13d56b860f5adee4
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 .
19 #ifndef INCLUDED_DBACCESS_SOURCE_UI_APP_APPTITLEWINDOW_HXX
20 #define INCLUDED_DBACCESS_SOURCE_UI_APP_APPTITLEWINDOW_HXX
22 #include <vcl/fixed.hxx>
24 namespace dbaui
26 class OTitleWindow : public vcl::Window
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;
41 // Window overrides
42 virtual void Resize() SAL_OVERRIDE;
43 virtual void GetFocus() SAL_OVERRIDE;
45 virtual void ApplySettings(vcl::RenderContext& rRenderContext) SAL_OVERRIDE;
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.
51 void setChildWindow(vcl::Window* _pChild);
53 /** gets the child window.
55 @return
56 The child winodw.
58 inline vcl::Window* getChildWindow() const { return m_pChild; }
60 /** sets the title text out of the resource
61 @param _nTitleId
62 The resource id of the title text.
64 void setTitle(sal_uInt16 _nTitleId);
66 /** Gets the min Width in Pixel which is needed to display the whole
68 @return
69 the min width
71 long GetWidthPixel() const;
73 } // namespace dbaui
74 #endif // INCLUDED_DBACCESS_SOURCE_UI_APP_APPTITLEWINDOW_HXX
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */