1092 Returns \c true if the two QLocale objects, \a lhs and \a rhs, differ;
1093 otherwise returns \c false.
1094
1095 \note The system locale is not equal to the QLocale object constructed from
1096 its language(), script() and territory(), even if the two agree in all data
1097 fields. Nor are two locales with different number options equal.
1098
1099 \sa operator==(), setNumberOptions()
1100*/
1101
1102/*!
1103 \enum QLocale::QuotationStyle
1104
1105 This enum defines a set of possible styles for locale specific quotation.
1106
1107 \value StandardQuotation If this option is set, the standard quotation marks
1108 will be used to quote strings.
1109 \value AlternateQuotation If this option is set, the alternate quotation marks
1110 will be used to quote strings.
1111
1112 \since 4.8
1113
1114 \sa quoteString()
1115*/
1116
1117/*!
1118 \internal
1119 \class QSystemLocale
1120 \inmodule QtCore
1121 \brief The QSystemLocale class can be used to finetune the system locale
1122 of the user.
1123 \since 4.2
1124
1125 \ingroup i18n
1126
1127 \warning This class is only useful in very rare cases. Usually QLocale offers
1128 all the functionality required for application development.
1129
1130 QSystemLocale allows to override the values provided by the system
1131 locale (QLocale::system()).
1132
1133 \sa QLocale
1134*/
1135
1136/*!
1137 \enum QSystemLocale::QueryType
1138
1139 Specifies the type of information queried by query(). For each value
1140 the type of information to return from the query() method is listed.
1141
1142 \value LanguageId a uint specifying the language.
1143 \value ScriptId a uint specifying the script.
1144 \value TerritoryId a uint specifying the territory.
1145 \value DecimalPoint a QString specifying the decimal point.
1146 \value GroupSeparator a QString specifying the group separator.
1147 \value ZeroDigit a QString specifying the zero digit.
1148 \value NegativeSign a QString specifying the minus sign.
1149 \value PositiveSign a QString specifying the plus sign.
1150 \value DateFormatLong a QString specifying the long date format
1151 \value DateFormatShort a QString specifying the short date format
1152 \value TimeFormatLong a QString specifying the long time format
1153 \value TimeFormatShort a QString specifying the short time format
1154 \value DayNameLong a QString specifying the name of a weekday. the in variant contains an integer between 1 and 7 (Monday - Sunday)
1155 \value DayNameShort a QString specifying the short name of a weekday. the in variant contains an integer between 1 and 7 (Monday - Sunday)
1156 \value MonthNameLong a QString specifying the name of a month. the in variant contains an integer between 1 and 12
1157 \value MonthNameShort a QString specifying the short name of a month. the in variant contains an integer between 1 and 12
1158 \value DateToStringLong converts the QDate stored in the in variant to a QString using the long date format
1159 \value DateToStringShort converts the QDate stored in the in variant to a QString using the short date format
1160 \value TimeToStringLong converts the QTime stored in the in variant to a QString using the long time format
1161 \value TimeToStringShort converts the QTime stored in the in variant to a QString using the short time format
1162 \value DateTimeFormatLong a QString specifying the long date time format
1163 \value DateTimeFormatShort a QString specifying the short date time format
1164 \value DateTimeToStringLong converts the QDateTime in the in variant to a QString using the long datetime format
1165 \value DateTimeToStringShort converts the QDateTime in the in variant to a QString using the short datetime format
1166 \value MeasurementSystem a QLocale::MeasurementSystem enum specifying the measurement system
1167 \value AMText a string that represents the system AM designator associated with a 12-hour clock.
1168 \value PMText a string that represents the system PM designator associated with a 12-hour clock.
1169 \value FirstDayOfWeek a Qt::DayOfWeek enum specifying the first day of the week
1170 \value CurrencySymbol a string that represents a currency in a format QLocale::CurrencyFormat.
1171 \value CurrencyToString a localized string representation of a number with a currency symbol. Converts a QSystemLocale::CurrencyToStringArgument stored in the in variant to a QString.
1172 \value UILanguages a list of strings representing locale names that could be used for UI translation.
1173 \value StringToStandardQuotation a QString containing a quoted version of the string ref stored in the in variant using standard quotes.
1174 \value StringToAlternateQuotation a QString containing a quoted version of the string ref stored in the in variant using alternate quotes.
1175 \value Weekdays a QList<Qt::DayOfWeek> specifying the regular weekdays
1176 \value LocaleChanged this type is queried whenever the system locale is changed.
1177 \value ListToSeparatedString a string that represents a join of a given QStringList with a locale-defined separator.
1178 \value NativeLanguageName a string that represents the name of the native language.
1179 \value NativeTerritoryName a string that represents the name of the native territory.