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