bump product version to 5.0.4.1
[LibreOffice.git] / cui / source / inc / about.hxx
blob1ffabdced0ffe07962a3fc5ca09b72b571e7e0a4
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_CUI_SOURCE_INC_ABOUT_HXX
20 #define INCLUDED_CUI_SOURCE_INC_ABOUT_HXX
22 #include <vcl/accel.hxx>
23 #include <vcl/button.hxx>
24 #include <vcl/fixed.hxx>
25 #include <vcl/vclmedit.hxx>
26 #include <sfx2/basedlgs.hxx>
27 #include <vector>
29 // class AboutDialog -----------------------------------------------------
31 class AboutDialog : public SfxModalDialog
33 private:
34 BitmapEx aBackgroundBitmap;
35 BitmapEx aLogoBitmap;
37 VclPtr<VclMultiLineEdit> m_pVersion;
38 VclPtr<FixedText> m_pDescriptionText;
39 VclPtr<FixedText> m_pCopyrightText;
40 VclPtr<FixedImage> m_pLogoImage;
41 VclPtr<FixedText> m_pLogoReplacement;
42 VclPtr<PushButton> m_pCreditsButton;
43 VclPtr<PushButton> m_pWebsiteButton;
45 OUString m_aVersionTextStr;
46 OUString m_aVendorTextStr;
47 OUString m_aCopyrightTextStr;
48 OUString m_aBasedTextStr;
49 OUString m_aBasedDerivedTextStr;
50 OUString m_aCreditsLinkStr;
51 OUString m_sBuildStr;
52 OUString m_aLocaleStr;
54 void StyleControls();
55 void SetLogo();
57 static OUString GetBuildId();
58 OUString GetVersionString();
59 OUString GetCopyrightString();
60 static OUString GetLocaleString();
62 protected:
63 virtual bool Close() SAL_OVERRIDE;
64 virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) SAL_OVERRIDE;
65 virtual void Resize() SAL_OVERRIDE;
67 public:
68 AboutDialog(vcl::Window* pParent);
69 virtual ~AboutDialog();
70 virtual void dispose() SAL_OVERRIDE;
72 DECL_LINK( HandleClick, PushButton* );
75 #endif // INCLUDED_CUI_SOURCE_INC_ABOUT_HXX
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */