OSDN Git Service

Updated Bulgarian translation.
[lamexp/LameXP.git] / src / Dialog_About.h
index a4a88d6..3110b1a 100644 (file)
@@ -1,11 +1,12 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2020 LoRd_MuldeR <MuldeR2@GMX.de>
 //
 // This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
+// it under the terms of the GNU GENERAL PUBLIC LICENSE as published by
 // the Free Software Foundation; either version 2 of the License, or
-// (at your option) any later version.
+// (at your option) any later version; always including the non-optional
+// LAMEXP GNU GENERAL PUBLIC LICENSE ADDENDUM. See "License.txt" file!
 //
 // This program is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -32,6 +33,7 @@ namespace Ui {
 class QLabel;
 class QPixmap;
 class QTimer;
+class QElapsedTimer;
 class SettingsModel;
 
 //AboutDialog class
@@ -52,8 +54,9 @@ public slots:
        void gotoLicenseTab(void);
        void showAboutQt(void);
        void moveDisque(void);
-       void tabChanged(int index);
+       void tabChanged(int index, const bool silent = false);
        void adjustSize(void);
+       void geometryUpdated(void);
 
 protected:
        virtual void showEvent(QShowEvent *e);
@@ -63,17 +66,20 @@ protected:
 private:
        Ui::AboutDialog *ui; //for Qt UIC
 
-       bool m_firstShow;
-       SettingsModel *m_settings;
-       QMap<QWidget*,bool> *m_initFlags;
+       const bool m_firstStart;
+       SettingsModel *const m_settings;
+       QScopedPointer<QMap<QWidget*,bool>> m_initFlags;
        int m_lastTab;
        
-       QLabel *m_disque;
-       QTimer * m_disqueTimer;
+       QScopedPointer<QLabel> m_disque;
+       QScopedPointer<QTimer> m_disqueTimer;
        bool m_disqueFlags[2];
-       QPixmap *m_cartoon[4];
+       QPoint m_disquePos;
+       QRect m_disqueBound;
+       double m_discOpacity;
        bool m_rotateNext;
-       __int64 m_disqueDelay;
+       QScopedPointer<QElapsedTimer> m_disqueDelay;
+       QScopedPointer<QPixmap> m_cartoon[4];
 
        void initInformationTab(void);
        void initContributorsTab(void);
@@ -81,5 +87,4 @@ private:
        void initLicenseTab(void);
 
        QString makeToolText(const QString &toolName, const QString &toolBin, const QString &toolVerFmt, const QString &toolLicense, const QString &toolWebsite, const QString &extraInfo = QString());
-       bool playResoureSound(const QString &library, const unsigned long soundId, const bool async);
 };