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_CUI_SOURCE_INC_ABOUT_HXX
20 : #define INCLUDED_CUI_SOURCE_INC_ABOUT_HXX
21 :
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>
28 :
29 : // class AboutDialog -----------------------------------------------------
30 :
31 0 : class AboutDialog : public SfxModalDialog
32 : {
33 : private:
34 : BitmapEx aBackgroundBitmap;
35 : BitmapEx aLogoBitmap;
36 :
37 : VclMultiLineEdit* m_pVersion;
38 : FixedText* m_pDescriptionText;
39 : FixedText* m_pCopyrightText;
40 : FixedImage* m_pLogoImage;
41 : FixedText* m_pLogoReplacement;
42 : PushButton* m_pCreditsButton;
43 : PushButton* m_pWebsiteButton;
44 :
45 : OUString aVersionData;
46 : OUString m_aVersionTextStr;
47 : OUString m_aVendorTextStr;
48 : OUString m_aCopyrightTextStr;
49 : OUString m_aBasedTextStr;
50 : OUString m_aBasedDerivedTextStr;
51 : OUString m_aCreditsLinkStr;
52 : OUString m_sBuildStr;
53 :
54 : void StyleControls();
55 : void SetLogo();
56 :
57 : OUString GetBuildId();
58 : OUString GetVersionString();
59 : OUString GetCopyrightString();
60 :
61 : protected:
62 : virtual bool Close() SAL_OVERRIDE;
63 : virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
64 : virtual void Resize() SAL_OVERRIDE;
65 :
66 : public:
67 : AboutDialog(Window* pParent);
68 :
69 : DECL_LINK( HandleClick, PushButton* );
70 : };
71 :
72 : #endif // INCLUDED_CUI_SOURCE_INC_ABOUT_HXX
73 :
74 :
75 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|