VirtualBox

Changeset 75563 in vbox


Ignore:
Timestamp:
Nov 19, 2018 10:10:08 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126722
Message:

FE/Qt: bugref:9104: UIVersion: Fixing regression of r120635 (inability to handle _BETA postfixes).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIVersion.h

    r73843 r75563  
    1919#define ___UIVersion_h___
    2020
     21/* Qt includes: */
     22#include <QString>
     23
    2124/** Represents VirtualBox version wrapper. */
    2225class UIVersion
     
    2629    /** Constructs default object. */
    2730    UIVersion()
    28         : m_x(-1), m_y(-1), m_z(-1)
     31        : m_x(-1)
     32        , m_y(-1)
     33        , m_z(-1)
    2934    {}
    3035
    31     /** Constructs object based on parsed @a strVersion. */
    32     UIVersion(const QString &strVersion)
    33         : m_x(-1), m_y(-1), m_z(-1)
     36    /** Constructs object based on parsed @a strFullVersionInfo. */
     37    UIVersion(const QString &strFullVersionInfo)
     38        : m_x(-1)
     39        , m_y(-1)
     40        , m_z(-1)
    3441    {
    35         const QStringList versionStack = strVersion.split('.');
    36         if (versionStack.size() > 0)
    37             m_x = versionStack[0].toInt();
    38         if (versionStack.size() > 1)
    39             m_y = versionStack[1].toInt();
    40         if (versionStack.size() > 2)
    41             m_z = versionStack[2].toInt();
     42        const QStringList fullVersionInfo = strFullVersionInfo.split('_');
     43        if (fullVersionInfo.size() > 0)
     44        {
     45            const QStringList versionIndexes = fullVersionInfo.at(0).split('.');
     46            if (versionIndexes.size() > 0)
     47                m_x = versionIndexes[0].toInt();
     48            if (versionIndexes.size() > 1)
     49                m_y = versionIndexes[1].toInt();
     50            if (versionIndexes.size() > 2)
     51                m_z = versionIndexes[2].toInt();
     52        }
     53        if (fullVersionInfo.size() > 1)
     54            m_strPostfix = fullVersionInfo.at(1);
    4255    }
    4356
     
    4861        m_y = another.y();
    4962        m_z = another.z();
     63        m_strPostfix = another.postfix();
    5064        return *this;
    5165    }
     
    5569
    5670    /** Returns whether this object is equal to @a other. */
    57     bool equal(const UIVersion &other) const { return (m_x == other.m_x) && (m_y == other.m_y) && (m_z == other.m_z); }
     71    bool equal(const UIVersion &other) const
     72    {
     73        return    (m_x == other.m_x)
     74               && (m_y == other.m_y)
     75               && (m_z == other.m_z)
     76               && (m_strPostfix == other.m_strPostfix);
     77    }
    5878    /** Checks whether this object is equal to @a other. */
    5979    bool operator==(const UIVersion &other) const { return equal(other); }
     
    6686        return    (m_x <  other.m_x)
    6787               || (m_x == other.m_x && m_y <  other.m_y)
    68                || (m_x == other.m_x && m_y == other.m_y && m_z <  other.m_z);
     88               || (m_x == other.m_x && m_y == other.m_y && m_z <  other.m_z)
     89               || (m_x == other.m_x && m_y == other.m_y && m_z == other.m_z && m_strPostfix <  other.m_strPostfix);
    6990    }
    7091    /** Checks whether this object is more than @a other. */
     
    7394        return    (m_x >  other.m_x)
    7495               || (m_x == other.m_x && m_y >  other.m_y)
    75                || (m_x == other.m_x && m_y == other.m_y && m_z >  other.m_z);
     96               || (m_x == other.m_x && m_y == other.m_y && m_z >  other.m_z)
     97               || (m_x == other.m_x && m_y == other.m_y && m_z == other.m_z && m_strPostfix >  other.m_strPostfix);
    7698    }
    7799
    78100    /** Returns object string representation. */
    79     QString toString() const { return QString("%1.%2.%3").arg(m_x).arg(m_y).arg(m_z); }
     101    QString toString() const
     102    {
     103        return m_strPostfix.isEmpty() ? QString("%1.%2.%3").arg(m_x).arg(m_y).arg(m_z)
     104                                      : QString("%1.%2.%3_%4").arg(m_x).arg(m_y).arg(m_z).arg(m_strPostfix);
     105    }
    80106
    81107    /** Returns the object X value. */
     
    85111    /** Returns the object Z value. */
    86112    int z() const { return m_z; }
     113    /** Returns the object postfix. */
     114    QString postfix() const { return m_strPostfix; }
    87115
    88     /** Defines the object X value. */
     116    /** Defines the object @a x value. */
    89117    void setX(int x) { m_x = x; }
    90     /** Defines the object Y value. */
     118    /** Defines the object @a y value. */
    91119    void setY(int y) { m_y = y; }
    92     /** Defines the object Z value. */
     120    /** Defines the object @a z value. */
    93121    void setZ(int z) { m_z = z; }
     122    /** Defines the object @a strPostfix. */
     123    void setPostfix(const QString &strPostfix) { m_strPostfix = strPostfix; }
    94124
    95125    /** Returns effective released version guessed or hardcoded for this one version.
     
    118148
    119149    /** Holds the object X value. */
    120     int m_x;
     150    int  m_x;
    121151    /** Holds the object Y value. */
    122     int m_y;
     152    int  m_y;
    123153    /** Holds the object Z value. */
    124     int m_z;
     154    int  m_z;
     155
     156    /** Holds the object postfix. */
     157    QString  m_strPostfix;
    125158};
    126159
    127160#endif /* !___UIVersion_h___ */
    128 
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette