Changeset 75563 in vbox
- Timestamp:
- Nov 19, 2018 10:10:08 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126722
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIVersion.h
r73843 r75563 19 19 #define ___UIVersion_h___ 20 20 21 /* Qt includes: */ 22 #include <QString> 23 21 24 /** Represents VirtualBox version wrapper. */ 22 25 class UIVersion … … 26 29 /** Constructs default object. */ 27 30 UIVersion() 28 : m_x(-1), m_y(-1), m_z(-1) 31 : m_x(-1) 32 , m_y(-1) 33 , m_z(-1) 29 34 {} 30 35 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) 34 41 { 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); 42 55 } 43 56 … … 48 61 m_y = another.y(); 49 62 m_z = another.z(); 63 m_strPostfix = another.postfix(); 50 64 return *this; 51 65 } … … 55 69 56 70 /** 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 } 58 78 /** Checks whether this object is equal to @a other. */ 59 79 bool operator==(const UIVersion &other) const { return equal(other); } … … 66 86 return (m_x < other.m_x) 67 87 || (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); 69 90 } 70 91 /** Checks whether this object is more than @a other. */ … … 73 94 return (m_x > other.m_x) 74 95 || (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); 76 98 } 77 99 78 100 /** 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 } 80 106 81 107 /** Returns the object X value. */ … … 85 111 /** Returns the object Z value. */ 86 112 int z() const { return m_z; } 113 /** Returns the object postfix. */ 114 QString postfix() const { return m_strPostfix; } 87 115 88 /** Defines the object Xvalue. */116 /** Defines the object @a x value. */ 89 117 void setX(int x) { m_x = x; } 90 /** Defines the object Yvalue. */118 /** Defines the object @a y value. */ 91 119 void setY(int y) { m_y = y; } 92 /** Defines the object Zvalue. */120 /** Defines the object @a z value. */ 93 121 void setZ(int z) { m_z = z; } 122 /** Defines the object @a strPostfix. */ 123 void setPostfix(const QString &strPostfix) { m_strPostfix = strPostfix; } 94 124 95 125 /** Returns effective released version guessed or hardcoded for this one version. … … 118 148 119 149 /** Holds the object X value. */ 120 int m_x;150 int m_x; 121 151 /** Holds the object Y value. */ 122 int m_y;152 int m_y; 123 153 /** Holds the object Z value. */ 124 int m_z; 154 int m_z; 155 156 /** Holds the object postfix. */ 157 QString m_strPostfix; 125 158 }; 126 159 127 160 #endif /* !___UIVersion_h___ */ 128
Note:
See TracChangeset
for help on using the changeset viewer.