ruby-qt6-qtcore 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.rspec +2 -0
- data/.rubocop.yml +14 -0
- data/LICENSE +185 -0
- data/README.md +3 -0
- data/Rakefile +19 -0
- data/ext/qt6/qtcore/bando-qobject-rb.cpp +17 -0
- data/ext/qt6/qtcore/bando-qobject-rb.hpp +4 -0
- data/ext/qt6/qtcore/bando-rb.cpp +37 -0
- data/ext/qt6/qtcore/bando-rb.hpp +4 -0
- data/ext/qt6/qtcore/extconf.rb +18 -0
- data/ext/qt6/qtcore/qabstractitemmodel-rb.cpp +123 -0
- data/ext/qt6/qtcore/qabstractitemmodel-rb.hpp +4 -0
- data/ext/qt6/qtcore/qanystringview-rb.cpp +19 -0
- data/ext/qt6/qtcore/qanystringview-rb.hpp +4 -0
- data/ext/qt6/qtcore/qbasictimer-rb.cpp +24 -0
- data/ext/qt6/qtcore/qbasictimer-rb.hpp +4 -0
- data/ext/qt6/qtcore/qbytearray-rb.cpp +17 -0
- data/ext/qt6/qtcore/qbytearray-rb.hpp +4 -0
- data/ext/qt6/qtcore/qchar-rb.cpp +404 -0
- data/ext/qt6/qtcore/qchar-rb.hpp +4 -0
- data/ext/qt6/qtcore/qcoreapplication-rb.cpp +74 -0
- data/ext/qt6/qtcore/qcoreapplication-rb.hpp +4 -0
- data/ext/qt6/qtcore/qcoreevent-rb.cpp +234 -0
- data/ext/qt6/qtcore/qcoreevent-rb.hpp +4 -0
- data/ext/qt6/qtcore/qdatetime-rb.cpp +188 -0
- data/ext/qt6/qtcore/qdatetime-rb.hpp +4 -0
- data/ext/qt6/qtcore/qdir-rb.cpp +133 -0
- data/ext/qt6/qtcore/qdir-rb.hpp +4 -0
- data/ext/qt6/qtcore/qfile-rb.cpp +52 -0
- data/ext/qt6/qtcore/qfile-rb.hpp +4 -0
- data/ext/qt6/qtcore/qfiledevice-rb.cpp +105 -0
- data/ext/qt6/qtcore/qfiledevice-rb.hpp +4 -0
- data/ext/qt6/qtcore/qfileinfo-rb.cpp +92 -0
- data/ext/qt6/qtcore/qfileinfo-rb.hpp +4 -0
- data/ext/qt6/qtcore/qiodevice-rb.cpp +71 -0
- data/ext/qt6/qtcore/qiodevice-rb.hpp +4 -0
- data/ext/qt6/qtcore/qiodevicebase-rb.cpp +33 -0
- data/ext/qt6/qtcore/qiodevicebase-rb.hpp +4 -0
- data/ext/qt6/qtcore/qitemselection-rb.cpp +51 -0
- data/ext/qt6/qtcore/qitemselection-rb.hpp +4 -0
- data/ext/qt6/qtcore/qitemselectionmodel-rb.cpp +70 -0
- data/ext/qt6/qtcore/qitemselectionmodel-rb.hpp +4 -0
- data/ext/qt6/qtcore/qlibraryinfo-rb.cpp +36 -0
- data/ext/qt6/qtcore/qlibraryinfo-rb.hpp +4 -0
- data/ext/qt6/qtcore/qline-rb.cpp +84 -0
- data/ext/qt6/qtcore/qline-rb.hpp +4 -0
- data/ext/qt6/qtcore/qlocale-rb.cpp +1033 -0
- data/ext/qt6/qtcore/qlocale-rb.hpp +4 -0
- data/ext/qt6/qtcore/qmargins-rb.cpp +53 -0
- data/ext/qt6/qtcore/qmargins-rb.hpp +4 -0
- data/ext/qt6/qtcore/qmetaclassinfo-rb.cpp +16 -0
- data/ext/qt6/qtcore/qmetaclassinfo-rb.hpp +4 -0
- data/ext/qt6/qtcore/qmetamethod-rb.cpp +66 -0
- data/ext/qt6/qtcore/qmetamethod-rb.hpp +4 -0
- data/ext/qt6/qtcore/qmetaobject-rb.cpp +49 -0
- data/ext/qt6/qtcore/qmetaobject-rb.hpp +4 -0
- data/ext/qt6/qtcore/qmetaobjectbuilder-rb.cpp +157 -0
- data/ext/qt6/qtcore/qmetaobjectbuilder-rb.hpp +4 -0
- data/ext/qt6/qtcore/qmetatype-rb.cpp +109 -0
- data/ext/qt6/qtcore/qmetatype-rb.hpp +4 -0
- data/ext/qt6/qtcore/qmodelindex-rb.cpp +30 -0
- data/ext/qt6/qtcore/qmodelindex-rb.hpp +4 -0
- data/ext/qt6/qtcore/qobject-rb.cpp +80 -0
- data/ext/qt6/qtcore/qobject-rb.hpp +4 -0
- data/ext/qt6/qtcore/qpoint-rb.cpp +65 -0
- data/ext/qt6/qtcore/qpoint-rb.hpp +4 -0
- data/ext/qt6/qtcore/qrect-rb.cpp +162 -0
- data/ext/qt6/qtcore/qrect-rb.hpp +4 -0
- data/ext/qt6/qtcore/qregularexpression-rb.cpp +114 -0
- data/ext/qt6/qtcore/qregularexpression-rb.hpp +4 -0
- data/ext/qt6/qtcore/qresource-rb.cpp +48 -0
- data/ext/qt6/qtcore/qresource-rb.hpp +4 -0
- data/ext/qt6/qtcore/qsettings-rb.cpp +72 -0
- data/ext/qt6/qtcore/qsettings-rb.hpp +4 -0
- data/ext/qt6/qtcore/qsignalmapper-rb.cpp +32 -0
- data/ext/qt6/qtcore/qsignalmapper-rb.hpp +4 -0
- data/ext/qt6/qtcore/qsize-rb.cpp +81 -0
- data/ext/qt6/qtcore/qsize-rb.hpp +4 -0
- data/ext/qt6/qtcore/qstring-rb.cpp +67 -0
- data/ext/qt6/qtcore/qstring-rb.hpp +4 -0
- data/ext/qt6/qtcore/qstringlist-rb.cpp +53 -0
- data/ext/qt6/qtcore/qstringlist-rb.hpp +4 -0
- data/ext/qt6/qtcore/qt-enum-af-rb.cpp +345 -0
- data/ext/qt6/qtcore/qt-enum-af-rb.hpp +4 -0
- data/ext/qt6/qtcore/qt-enum-gl-rb.cpp +703 -0
- data/ext/qt6/qtcore/qt-enum-gl-rb.hpp +4 -0
- data/ext/qt6/qtcore/qt-enum-mr-rb.cpp +159 -0
- data/ext/qt6/qtcore/qt-enum-mr-rb.hpp +4 -0
- data/ext/qt6/qtcore/qt-enum-sz-rb.cpp +390 -0
- data/ext/qt6/qtcore/qt-enum-sz-rb.hpp +4 -0
- data/ext/qt6/qtcore/qt-flags-al-rb.cpp +61 -0
- data/ext/qt6/qtcore/qt-flags-al-rb.hpp +4 -0
- data/ext/qt6/qtcore/qt-flags-mz-rb.cpp +61 -0
- data/ext/qt6/qtcore/qt-flags-mz-rb.hpp +4 -0
- data/ext/qt6/qtcore/qtcore-rb.cpp +130 -0
- data/ext/qt6/qtcore/qtcore-rb.hpp +3 -0
- data/ext/qt6/qtcore/qtcoreversion-rb.cpp +9 -0
- data/ext/qt6/qtcore/qtcoreversion-rb.hpp +4 -0
- data/ext/qt6/qtcore/qtextstream-rb.cpp +99 -0
- data/ext/qt6/qtcore/qtextstream-rb.hpp +4 -0
- data/ext/qt6/qtcore/qtimer-rb.cpp +47 -0
- data/ext/qt6/qtcore/qtimer-rb.hpp +4 -0
- data/ext/qt6/qtcore/qtranslator-rb.cpp +26 -0
- data/ext/qt6/qtcore/qtranslator-rb.hpp +4 -0
- data/ext/qt6/qtcore/qurl-rb.cpp +140 -0
- data/ext/qt6/qtcore/qurl-rb.hpp +4 -0
- data/ext/qt6/qtcore/quuid-rb.cpp +60 -0
- data/ext/qt6/qtcore/quuid-rb.hpp +4 -0
- data/ext/qt6/qtcore/qvariant-rb.cpp +70 -0
- data/ext/qt6/qtcore/qvariant-rb.hpp +4 -0
- data/ext/qt6/qtcore/t-qtcore-rb.cpp +31 -0
- data/ext/qt6/qtcore/t-qtcore-rb.hpp +4 -0
- data/lib/qt6/bando/dsl.rb +91 -0
- data/lib/qt6/bando/qobject.rb +9 -0
- data/lib/qt6/configuration.rb +16 -0
- data/lib/qt6/ducktyping.rb +74 -0
- data/lib/qt6/qtcore/private/_nodoc.rb +9 -0
- data/lib/qt6/qtcore/private/inflector.rb +27 -0
- data/lib/qt6/qtcore/private/metamethod.rb +67 -0
- data/lib/qt6/qtcore/private/metaobject.rb +98 -0
- data/lib/qt6/qtcore/private/signal.rb +26 -0
- data/lib/qt6/qtcore/private/signalmanager.rb +30 -0
- data/lib/qt6/qtcore/qabstractitemmodel.rb +42 -0
- data/lib/qt6/qtcore/qabstractlistmodel.rb +12 -0
- data/lib/qt6/qtcore/qabstracttablemodel.rb +12 -0
- data/lib/qt6/qtcore/qanystringview.rb +33 -0
- data/lib/qt6/qtcore/qbasictimer.rb +16 -0
- data/lib/qt6/qtcore/qbool.rb +21 -0
- data/lib/qt6/qtcore/qbytearray.rb +22 -0
- data/lib/qt6/qtcore/qchar.rb +46 -0
- data/lib/qt6/qtcore/qchildevent.rb +9 -0
- data/lib/qt6/qtcore/qcoreapplication.rb +44 -0
- data/lib/qt6/qtcore/qdate.rb +43 -0
- data/lib/qt6/qtcore/qdatetime.rb +54 -0
- data/lib/qt6/qtcore/qdir.rb +34 -0
- data/lib/qt6/qtcore/qdynamicpropertychangeevent.rb +9 -0
- data/lib/qt6/qtcore/qevent.rb +11 -0
- data/lib/qt6/qtcore/qfile.rb +21 -0
- data/lib/qt6/qtcore/qfiledevice.rb +29 -0
- data/lib/qt6/qtcore/qfileinfo.rb +30 -0
- data/lib/qt6/qtcore/qiodevice.rb +31 -0
- data/lib/qt6/qtcore/qiodevicebase.rb +13 -0
- data/lib/qt6/qtcore/qitemselection.rb +11 -0
- data/lib/qt6/qtcore/qitemselectionmodel.rb +40 -0
- data/lib/qt6/qtcore/qitemselectionrange.rb +25 -0
- data/lib/qt6/qtcore/qlibraryinfo.rb +11 -0
- data/lib/qt6/qtcore/qline.rb +42 -0
- data/lib/qt6/qtcore/qlinef.rb +42 -0
- data/lib/qt6/qtcore/qlocale.rb +44 -0
- data/lib/qt6/qtcore/qmargins.rb +38 -0
- data/lib/qt6/qtcore/qmarginsf.rb +38 -0
- data/lib/qt6/qtcore/qmetaclassinfo.rb +13 -0
- data/lib/qt6/qtcore/qmetamethod.rb +20 -0
- data/lib/qt6/qtcore/qmetamethodbuilder.rb +12 -0
- data/lib/qt6/qtcore/qmetaobject.rb +12 -0
- data/lib/qt6/qtcore/qmetaobjectbuilder.rb +30 -0
- data/lib/qt6/qtcore/qmetatype.rb +31 -0
- data/lib/qt6/qtcore/qmodelindex.rb +16 -0
- data/lib/qt6/qtcore/qobject.rb +103 -0
- data/lib/qt6/qtcore/qpoint.rb +36 -0
- data/lib/qt6/qtcore/qpointf.rb +36 -0
- data/lib/qt6/qtcore/qrect.rb +46 -0
- data/lib/qt6/qtcore/qrectf.rb +46 -0
- data/lib/qt6/qtcore/qregularexpression.rb +34 -0
- data/lib/qt6/qtcore/qregularexpressionmatch.rb +16 -0
- data/lib/qt6/qtcore/qresource.rb +29 -0
- data/lib/qt6/qtcore/qsettings.rb +73 -0
- data/lib/qt6/qtcore/qsignalmapper.rb +33 -0
- data/lib/qt6/qtcore/qsize.rb +36 -0
- data/lib/qt6/qtcore/qsizef.rb +36 -0
- data/lib/qt6/qtcore/qstring.rb +58 -0
- data/lib/qt6/qtcore/qstringlist.rb +18 -0
- data/lib/qt6/qtcore/qt/qvariant.rb +46 -0
- data/lib/qt6/qtcore/qt.rb +226 -0
- data/lib/qt6/qtcore/qtcoreversion.rb +6 -0
- data/lib/qt6/qtcore/qtextstream.rb +32 -0
- data/lib/qt6/qtcore/qtime.rb +49 -0
- data/lib/qt6/qtcore/qtimer.rb +32 -0
- data/lib/qt6/qtcore/qtimerevent.rb +9 -0
- data/lib/qt6/qtcore/qtranslator.rb +27 -0
- data/lib/qt6/qtcore/qurl.rb +55 -0
- data/lib/qt6/qtcore/quuid.rb +47 -0
- data/lib/qt6/qtcore/qvariant.rb +48 -0
- data/lib/qt6/qtcore/version.rb +7 -0
- data/lib/qt6/qtcore.rb +86 -0
- data/lib/qt6/refinements/kernel.rb +38 -0
- data/lib/qt6/refinements/string.rb +8 -0
- metadata +244 -0
|
@@ -0,0 +1,1033 @@
|
|
|
1
|
+
#include "qlocale-rb.hpp"
|
|
2
|
+
#include <qlocale.h>
|
|
3
|
+
#include <rice/qt6/qenum.hpp>
|
|
4
|
+
#include <rice/qt6/qflags.hpp>
|
|
5
|
+
|
|
6
|
+
#include <QCalendar>
|
|
7
|
+
#include <QDateTime>
|
|
8
|
+
|
|
9
|
+
using namespace Rice;
|
|
10
|
+
|
|
11
|
+
Rice::Class rb_cQLocale;
|
|
12
|
+
|
|
13
|
+
void Init_qlocale(Rice::Module rb_mQt6QtCore)
|
|
14
|
+
{
|
|
15
|
+
rb_cQLocale =
|
|
16
|
+
// RubyQt6::QtCore::QLocale
|
|
17
|
+
define_class_under<QLocale>(rb_mQt6QtCore, "QLocale")
|
|
18
|
+
// Public Functions
|
|
19
|
+
.define_method("am_text", &QLocale::amText)
|
|
20
|
+
.define_method("bcp47_name", &QLocale::bcp47Name, Arg("separator") = static_cast<QLocale::TagSeparator>(QLocale::TagSeparator::Dash))
|
|
21
|
+
.define_method("collation", &QLocale::collation)
|
|
22
|
+
.define_method("create_separated_list", &QLocale::createSeparatedList, Arg("strl"))
|
|
23
|
+
.define_method("currency_symbol", &QLocale::currencySymbol, Arg("format") = static_cast<QLocale::CurrencySymbolFormat>(QLocale::CurrencySymbolFormat::CurrencySymbol))
|
|
24
|
+
.define_method("date_format", &QLocale::dateFormat, Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
25
|
+
.define_method("date_time_format", &QLocale::dateTimeFormat, Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
26
|
+
.define_method("day_name", &QLocale::dayName, Arg("day"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
27
|
+
.define_method("decimal_point", &QLocale::decimalPoint)
|
|
28
|
+
.define_method("exponential", &QLocale::exponential)
|
|
29
|
+
.define_method("first_day_of_week", &QLocale::firstDayOfWeek)
|
|
30
|
+
.define_method("formatted_data_size", &QLocale::formattedDataSize, Arg("bytes"), Arg("precision") = static_cast<int>(2), Arg("format") = static_cast<QLocale::DataSizeFormats>(QLocale::DataSizeFormat::DataSizeIecFormat))
|
|
31
|
+
.define_method("group_separator", &QLocale::groupSeparator)
|
|
32
|
+
.define_method("language", &QLocale::language)
|
|
33
|
+
.define_method("measurement_system", &QLocale::measurementSystem)
|
|
34
|
+
.define_method("month_name", &QLocale::monthName, Arg("month"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
35
|
+
.define_method("name", &QLocale::name, Arg("separator") = static_cast<QLocale::TagSeparator>(QLocale::TagSeparator::Underscore))
|
|
36
|
+
.define_method("native_language_name", &QLocale::nativeLanguageName)
|
|
37
|
+
.define_method("native_territory_name", &QLocale::nativeTerritoryName)
|
|
38
|
+
.define_method("negative_sign", &QLocale::negativeSign)
|
|
39
|
+
.define_method("number_options", &QLocale::numberOptions)
|
|
40
|
+
.define_method("percent", &QLocale::percent)
|
|
41
|
+
.define_method("pm_text", &QLocale::pmText)
|
|
42
|
+
.define_method("positive_sign", &QLocale::positiveSign)
|
|
43
|
+
.define_method<QString (QLocale::*)(QStringView, QLocale::QuotationStyle) const>("quote_string", &QLocale::quoteString, Arg("str"), Arg("style") = static_cast<QLocale::QuotationStyle>(QLocale::QuotationStyle::StandardQuotation))
|
|
44
|
+
.define_method<QString (QLocale::*)(const QString &, QLocale::QuotationStyle) const>("quote_string", &QLocale::quoteString, Arg("str"), Arg("style") = static_cast<QLocale::QuotationStyle>(QLocale::QuotationStyle::StandardQuotation))
|
|
45
|
+
.define_method("script", &QLocale::script)
|
|
46
|
+
.define_method("set_number_options", &QLocale::setNumberOptions, Arg("options"))
|
|
47
|
+
.define_method("standalone_day_name", &QLocale::standaloneDayName, Arg("day"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
48
|
+
.define_method("standalone_month_name", &QLocale::standaloneMonthName, Arg("month"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
49
|
+
.define_method("territory", &QLocale::territory)
|
|
50
|
+
.define_method("text_direction", &QLocale::textDirection)
|
|
51
|
+
.define_method("time_format", &QLocale::timeFormat, Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
52
|
+
.define_method<QString (QLocale::*)(uint, const QString &) const>("to_currency_string", &QLocale::toCurrencyString, Arg("i"), Arg("symbol") = static_cast<const QString &>(QString()))
|
|
53
|
+
.define_method<QString (QLocale::*)(ushort, const QString &) const>("to_currency_string", &QLocale::toCurrencyString, Arg("i"), Arg("symbol") = static_cast<const QString &>(QString()))
|
|
54
|
+
.define_method<QString (QLocale::*)(double, const QString &, int) const>("to_currency_string", &QLocale::toCurrencyString, Arg("i"), Arg("symbol") = static_cast<const QString &>(QString()), Arg("precision") = static_cast<int>(-1))
|
|
55
|
+
.define_method<QString (QLocale::*)(float, const QString &, int) const>("to_currency_string", &QLocale::toCurrencyString, Arg("i"), Arg("symbol") = static_cast<const QString &>(QString()), Arg("precision") = static_cast<int>(-1))
|
|
56
|
+
.define_method<QString (QLocale::*)(int, const QString &) const>("to_currency_string", &QLocale::toCurrencyString, Arg("i"), Arg("symbol") = static_cast<const QString &>(QString()))
|
|
57
|
+
.define_method<QString (QLocale::*)(qlonglong, const QString &) const>("to_currency_string", &QLocale::toCurrencyString, Arg("i"), Arg("symbol") = static_cast<const QString &>(QString()))
|
|
58
|
+
.define_method<QString (QLocale::*)(qulonglong, const QString &) const>("to_currency_string", &QLocale::toCurrencyString, Arg("i"), Arg("symbol") = static_cast<const QString &>(QString()))
|
|
59
|
+
.define_method<QString (QLocale::*)(short, const QString &) const>("to_currency_string", &QLocale::toCurrencyString, Arg("i"), Arg("symbol") = static_cast<const QString &>(QString()))
|
|
60
|
+
.define_method<QDate (QLocale::*)(const QString &, QLocale::FormatType, QCalendar, int) const>("to_date", &QLocale::toDate, Arg("string"), Arg("format"), Arg("cal"), Arg("base_year") = static_cast<int>(QLocale::DefaultTwoDigitBaseYear))
|
|
61
|
+
.define_method<QDate (QLocale::*)(const QString &, QLocale::FormatType, int) const>("to_date", &QLocale::toDate, Arg("string"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat), Arg("base_year") = static_cast<int>(QLocale::DefaultTwoDigitBaseYear))
|
|
62
|
+
.define_method<QDate (QLocale::*)(const QString &, const QString &, QCalendar, int) const>("to_date", &QLocale::toDate, Arg("string"), Arg("format"), Arg("cal"), Arg("base_year") = static_cast<int>(QLocale::DefaultTwoDigitBaseYear))
|
|
63
|
+
.define_method<QDate (QLocale::*)(const QString &, const QString &, int) const>("to_date", &QLocale::toDate, Arg("string"), Arg("format"), Arg("base_year") = static_cast<int>(QLocale::DefaultTwoDigitBaseYear))
|
|
64
|
+
.define_method<QDateTime (QLocale::*)(const QString &, QLocale::FormatType, QCalendar, int) const>("to_date_time", &QLocale::toDateTime, Arg("string"), Arg("format"), Arg("cal"), Arg("base_year") = static_cast<int>(QLocale::DefaultTwoDigitBaseYear))
|
|
65
|
+
.define_method<QDateTime (QLocale::*)(const QString &, QLocale::FormatType, int) const>("to_date_time", &QLocale::toDateTime, Arg("string"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat), Arg("base_year") = static_cast<int>(QLocale::DefaultTwoDigitBaseYear))
|
|
66
|
+
.define_method<QDateTime (QLocale::*)(const QString &, const QString &, QCalendar, int) const>("to_date_time", &QLocale::toDateTime, Arg("string"), Arg("format"), Arg("cal"), Arg("base_year") = static_cast<int>(QLocale::DefaultTwoDigitBaseYear))
|
|
67
|
+
.define_method<QDateTime (QLocale::*)(const QString &, const QString &, int) const>("to_date_time", &QLocale::toDateTime, Arg("string"), Arg("format"), Arg("base_year") = static_cast<int>(QLocale::DefaultTwoDigitBaseYear))
|
|
68
|
+
.define_method<double (QLocale::*)(QStringView, bool *) const>("to_double", &QLocale::toDouble, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
69
|
+
.define_method<double (QLocale::*)(const QString &, bool *) const>("to_double", &QLocale::toDouble, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
70
|
+
.define_method<float (QLocale::*)(QStringView, bool *) const>("to_float", &QLocale::toFloat, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
71
|
+
.define_method<float (QLocale::*)(const QString &, bool *) const>("to_float", &QLocale::toFloat, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
72
|
+
.define_method<int (QLocale::*)(QStringView, bool *) const>("to_int", &QLocale::toInt, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
73
|
+
.define_method<int (QLocale::*)(const QString &, bool *) const>("to_int", &QLocale::toInt, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
74
|
+
.define_method<long (QLocale::*)(QStringView, bool *) const>("to_long", &QLocale::toLong, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
75
|
+
.define_method<long (QLocale::*)(const QString &, bool *) const>("to_long", &QLocale::toLong, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
76
|
+
.define_method<qlonglong (QLocale::*)(QStringView, bool *) const>("to_longlong", &QLocale::toLongLong, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
77
|
+
.define_method<qlonglong (QLocale::*)(const QString &, bool *) const>("to_longlong", &QLocale::toLongLong, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
78
|
+
.define_method("to_lower", &QLocale::toLower, Arg("str"))
|
|
79
|
+
.define_method<short (QLocale::*)(QStringView, bool *) const>("to_short", &QLocale::toShort, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
80
|
+
.define_method<short (QLocale::*)(const QString &, bool *) const>("to_short", &QLocale::toShort, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
81
|
+
.define_method<QString (QLocale::*)(uint) const>("to_string", &QLocale::toString, Arg("i"))
|
|
82
|
+
.define_method<QString (QLocale::*)(ulong) const>("to_string", &QLocale::toString, Arg("i"))
|
|
83
|
+
.define_method<QString (QLocale::*)(ushort) const>("to_string", &QLocale::toString, Arg("i"))
|
|
84
|
+
.define_method<QString (QLocale::*)(QDate, QLocale::FormatType) const>("to_string", &QLocale::toString, Arg("date"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
85
|
+
.define_method<QString (QLocale::*)(QDate, QLocale::FormatType, QCalendar) const>("to_string", &QLocale::toString, Arg("date"), Arg("format"), Arg("cal"))
|
|
86
|
+
.define_method<QString (QLocale::*)(QDate, QStringView) const>("to_string", &QLocale::toString, Arg("date"), Arg("format"))
|
|
87
|
+
.define_method<QString (QLocale::*)(QDate, QStringView, QCalendar) const>("to_string", &QLocale::toString, Arg("date"), Arg("format"), Arg("cal"))
|
|
88
|
+
.define_method<QString (QLocale::*)(QDate, const QString &) const>("to_string", &QLocale::toString, Arg("date"), Arg("format"))
|
|
89
|
+
.define_method<QString (QLocale::*)(QTime, QLocale::FormatType) const>("to_string", &QLocale::toString, Arg("time"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
90
|
+
.define_method<QString (QLocale::*)(QTime, QStringView) const>("to_string", &QLocale::toString, Arg("time"), Arg("format"))
|
|
91
|
+
.define_method<QString (QLocale::*)(QTime, const QString &) const>("to_string", &QLocale::toString, Arg("time"), Arg("format"))
|
|
92
|
+
.define_method<QString (QLocale::*)(const QDateTime &, QLocale::FormatType) const>("to_string", &QLocale::toString, Arg("date_time"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
93
|
+
.define_method<QString (QLocale::*)(const QDateTime &, QLocale::FormatType, QCalendar) const>("to_string", &QLocale::toString, Arg("date_time"), Arg("format"), Arg("cal"))
|
|
94
|
+
.define_method<QString (QLocale::*)(const QDateTime &, QStringView) const>("to_string", &QLocale::toString, Arg("date_time"), Arg("format"))
|
|
95
|
+
.define_method<QString (QLocale::*)(const QDateTime &, QStringView, QCalendar) const>("to_string", &QLocale::toString, Arg("date_time"), Arg("format"), Arg("cal"))
|
|
96
|
+
.define_method<QString (QLocale::*)(const QDateTime &, const QString &) const>("to_string", &QLocale::toString, Arg("date_time"), Arg("format"))
|
|
97
|
+
.define_method<QString (QLocale::*)(double, char, int) const>("to_string", &QLocale::toString, Arg("f"), Arg("format") = static_cast<char>('g'), Arg("precision") = static_cast<int>(6))
|
|
98
|
+
.define_method<QString (QLocale::*)(float, char, int) const>("to_string", &QLocale::toString, Arg("f"), Arg("format") = static_cast<char>('g'), Arg("precision") = static_cast<int>(6))
|
|
99
|
+
.define_method<QString (QLocale::*)(int) const>("to_string", &QLocale::toString, Arg("i"))
|
|
100
|
+
.define_method<QString (QLocale::*)(long) const>("to_string", &QLocale::toString, Arg("i"))
|
|
101
|
+
.define_method<QString (QLocale::*)(qlonglong) const>("to_string", &QLocale::toString, Arg("i"))
|
|
102
|
+
.define_method<QString (QLocale::*)(qulonglong) const>("to_string", &QLocale::toString, Arg("i"))
|
|
103
|
+
.define_method<QString (QLocale::*)(short) const>("to_string", &QLocale::toString, Arg("i"))
|
|
104
|
+
.define_method<QTime (QLocale::*)(const QString &, QLocale::FormatType) const>("to_time", &QLocale::toTime, Arg("string"), Arg("format") = static_cast<QLocale::FormatType>(QLocale::FormatType::LongFormat))
|
|
105
|
+
.define_method<QTime (QLocale::*)(const QString &, const QString &) const>("to_time", &QLocale::toTime, Arg("string"), Arg("format"))
|
|
106
|
+
.define_method<uint (QLocale::*)(QStringView, bool *) const>("to_uint", &QLocale::toUInt, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
107
|
+
.define_method<uint (QLocale::*)(const QString &, bool *) const>("to_uint", &QLocale::toUInt, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
108
|
+
.define_method<ulong (QLocale::*)(QStringView, bool *) const>("to_ulong", &QLocale::toULong, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
109
|
+
.define_method<ulong (QLocale::*)(const QString &, bool *) const>("to_ulong", &QLocale::toULong, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
110
|
+
.define_method<qulonglong (QLocale::*)(QStringView, bool *) const>("to_ulonglong", &QLocale::toULongLong, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
111
|
+
.define_method<qulonglong (QLocale::*)(const QString &, bool *) const>("to_ulonglong", &QLocale::toULongLong, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
112
|
+
.define_method<ushort (QLocale::*)(QStringView, bool *) const>("to_ushort", &QLocale::toUShort, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
113
|
+
.define_method<ushort (QLocale::*)(const QString &, bool *) const>("to_ushort", &QLocale::toUShort, Arg("s"), Arg("ok") = static_cast<bool *>(nullptr))
|
|
114
|
+
.define_method("to_upper", &QLocale::toUpper, Arg("str"))
|
|
115
|
+
.define_method("ui_languages", &QLocale::uiLanguages, Arg("separator") = static_cast<QLocale::TagSeparator>(QLocale::TagSeparator::Dash))
|
|
116
|
+
.define_method("weekdays", &QLocale::weekdays)
|
|
117
|
+
.define_method("zero_digit", &QLocale::zeroDigit)
|
|
118
|
+
// Static Public Members
|
|
119
|
+
.define_singleton_function("c", &QLocale::c)
|
|
120
|
+
// .define_singleton_function("code_to_language", &QLocale::codeToLanguage, Arg("language_code"), Arg("code_types") = static_cast<QLocale::LanguageCodeTypes>(QLocale::LanguageCodeType::AnyLanguageCode))
|
|
121
|
+
// .define_singleton_function("code_to_script", &QLocale::codeToScript, Arg("script_code"))
|
|
122
|
+
// .define_singleton_function("code_to_territory", &QLocale::codeToTerritory, Arg("territory_code"))
|
|
123
|
+
.define_singleton_function("language_to_code", &QLocale::languageToCode, Arg("language"), Arg("code_types") = static_cast<QLocale::LanguageCodeTypes>(QLocale::LanguageCodeType::AnyLanguageCode))
|
|
124
|
+
.define_singleton_function("language_to_string", &QLocale::languageToString, Arg("language"))
|
|
125
|
+
.define_singleton_function("matching_locales", &QLocale::matchingLocales, Arg("language"), Arg("script"), Arg("territory"))
|
|
126
|
+
.define_singleton_function("script_to_code", &QLocale::scriptToCode, Arg("script"))
|
|
127
|
+
.define_singleton_function("script_to_string", &QLocale::scriptToString, Arg("script"))
|
|
128
|
+
.define_singleton_function("set_default", &QLocale::setDefault, Arg("locale"))
|
|
129
|
+
.define_singleton_function("system", &QLocale::system)
|
|
130
|
+
.define_singleton_function("territory_to_code", &QLocale::territoryToCode, Arg("territory"))
|
|
131
|
+
.define_singleton_function("territory_to_string", &QLocale::territoryToString, Arg("territory"));
|
|
132
|
+
|
|
133
|
+
Data_Type<QLocale::Language> rb_cQLocaleLanguage =
|
|
134
|
+
// RubyQt6::QtCore::QLocale::Language
|
|
135
|
+
define_qenum_under<QLocale::Language>(rb_cQLocale, "Language");
|
|
136
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "AnyLanguage", QLocale::Language::AnyLanguage);
|
|
137
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "C", QLocale::Language::C);
|
|
138
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Abkhazian", QLocale::Language::Abkhazian);
|
|
139
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Afar", QLocale::Language::Afar);
|
|
140
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Afrikaans", QLocale::Language::Afrikaans);
|
|
141
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Aghem", QLocale::Language::Aghem);
|
|
142
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Akan", QLocale::Language::Akan);
|
|
143
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Akkadian", QLocale::Language::Akkadian);
|
|
144
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Akoose", QLocale::Language::Akoose);
|
|
145
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Albanian", QLocale::Language::Albanian);
|
|
146
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "AmericanSignLanguage", QLocale::Language::AmericanSignLanguage);
|
|
147
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Amharic", QLocale::Language::Amharic);
|
|
148
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "AncientEgyptian", QLocale::Language::AncientEgyptian);
|
|
149
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "AncientGreek", QLocale::Language::AncientGreek);
|
|
150
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Arabic", QLocale::Language::Arabic);
|
|
151
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Aragonese", QLocale::Language::Aragonese);
|
|
152
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Aramaic", QLocale::Language::Aramaic);
|
|
153
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Armenian", QLocale::Language::Armenian);
|
|
154
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Assamese", QLocale::Language::Assamese);
|
|
155
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Asturian", QLocale::Language::Asturian);
|
|
156
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Asu", QLocale::Language::Asu);
|
|
157
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Atsam", QLocale::Language::Atsam);
|
|
158
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Avaric", QLocale::Language::Avaric);
|
|
159
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Avestan", QLocale::Language::Avestan);
|
|
160
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Aymara", QLocale::Language::Aymara);
|
|
161
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Azerbaijani", QLocale::Language::Azerbaijani);
|
|
162
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bafia", QLocale::Language::Bafia);
|
|
163
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Balinese", QLocale::Language::Balinese);
|
|
164
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bambara", QLocale::Language::Bambara);
|
|
165
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bamun", QLocale::Language::Bamun);
|
|
166
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bangla", QLocale::Language::Bangla);
|
|
167
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Basaa", QLocale::Language::Basaa);
|
|
168
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bashkir", QLocale::Language::Bashkir);
|
|
169
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Basque", QLocale::Language::Basque);
|
|
170
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "BatakToba", QLocale::Language::BatakToba);
|
|
171
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Belarusian", QLocale::Language::Belarusian);
|
|
172
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bemba", QLocale::Language::Bemba);
|
|
173
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bena", QLocale::Language::Bena);
|
|
174
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bhojpuri", QLocale::Language::Bhojpuri);
|
|
175
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bislama", QLocale::Language::Bislama);
|
|
176
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Blin", QLocale::Language::Blin);
|
|
177
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bodo", QLocale::Language::Bodo);
|
|
178
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bosnian", QLocale::Language::Bosnian);
|
|
179
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Breton", QLocale::Language::Breton);
|
|
180
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Buginese", QLocale::Language::Buginese);
|
|
181
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bulgarian", QLocale::Language::Bulgarian);
|
|
182
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Burmese", QLocale::Language::Burmese);
|
|
183
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Cantonese", QLocale::Language::Cantonese);
|
|
184
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Catalan", QLocale::Language::Catalan);
|
|
185
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Cebuano", QLocale::Language::Cebuano);
|
|
186
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "CentralAtlasTamazight", QLocale::Language::CentralAtlasTamazight);
|
|
187
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "CentralKurdish", QLocale::Language::CentralKurdish);
|
|
188
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Chakma", QLocale::Language::Chakma);
|
|
189
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Chamorro", QLocale::Language::Chamorro);
|
|
190
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Chechen", QLocale::Language::Chechen);
|
|
191
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Cherokee", QLocale::Language::Cherokee);
|
|
192
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Chickasaw", QLocale::Language::Chickasaw);
|
|
193
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Chiga", QLocale::Language::Chiga);
|
|
194
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Chinese", QLocale::Language::Chinese);
|
|
195
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Church", QLocale::Language::Church);
|
|
196
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Chuvash", QLocale::Language::Chuvash);
|
|
197
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Colognian", QLocale::Language::Colognian);
|
|
198
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Coptic", QLocale::Language::Coptic);
|
|
199
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Cornish", QLocale::Language::Cornish);
|
|
200
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Corsican", QLocale::Language::Corsican);
|
|
201
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Cree", QLocale::Language::Cree);
|
|
202
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Croatian", QLocale::Language::Croatian);
|
|
203
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Czech", QLocale::Language::Czech);
|
|
204
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Danish", QLocale::Language::Danish);
|
|
205
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Divehi", QLocale::Language::Divehi);
|
|
206
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Dogri", QLocale::Language::Dogri);
|
|
207
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Duala", QLocale::Language::Duala);
|
|
208
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Dutch", QLocale::Language::Dutch);
|
|
209
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Dzongkha", QLocale::Language::Dzongkha);
|
|
210
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Embu", QLocale::Language::Embu);
|
|
211
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "English", QLocale::Language::English);
|
|
212
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Erzya", QLocale::Language::Erzya);
|
|
213
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Esperanto", QLocale::Language::Esperanto);
|
|
214
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Estonian", QLocale::Language::Estonian);
|
|
215
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ewe", QLocale::Language::Ewe);
|
|
216
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ewondo", QLocale::Language::Ewondo);
|
|
217
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Faroese", QLocale::Language::Faroese);
|
|
218
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Fijian", QLocale::Language::Fijian);
|
|
219
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Filipino", QLocale::Language::Filipino);
|
|
220
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Finnish", QLocale::Language::Finnish);
|
|
221
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "French", QLocale::Language::French);
|
|
222
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Friulian", QLocale::Language::Friulian);
|
|
223
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Fulah", QLocale::Language::Fulah);
|
|
224
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Gaelic", QLocale::Language::Gaelic);
|
|
225
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ga", QLocale::Language::Ga);
|
|
226
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Galician", QLocale::Language::Galician);
|
|
227
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ganda", QLocale::Language::Ganda);
|
|
228
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Geez", QLocale::Language::Geez);
|
|
229
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Georgian", QLocale::Language::Georgian);
|
|
230
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "German", QLocale::Language::German);
|
|
231
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Gothic", QLocale::Language::Gothic);
|
|
232
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Greek", QLocale::Language::Greek);
|
|
233
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Guarani", QLocale::Language::Guarani);
|
|
234
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Gujarati", QLocale::Language::Gujarati);
|
|
235
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Gusii", QLocale::Language::Gusii);
|
|
236
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Haitian", QLocale::Language::Haitian);
|
|
237
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Hausa", QLocale::Language::Hausa);
|
|
238
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Hawaiian", QLocale::Language::Hawaiian);
|
|
239
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Hebrew", QLocale::Language::Hebrew);
|
|
240
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Herero", QLocale::Language::Herero);
|
|
241
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Hindi", QLocale::Language::Hindi);
|
|
242
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "HiriMotu", QLocale::Language::HiriMotu);
|
|
243
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Hungarian", QLocale::Language::Hungarian);
|
|
244
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Icelandic", QLocale::Language::Icelandic);
|
|
245
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ido", QLocale::Language::Ido);
|
|
246
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Igbo", QLocale::Language::Igbo);
|
|
247
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "InariSami", QLocale::Language::InariSami);
|
|
248
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Indonesian", QLocale::Language::Indonesian);
|
|
249
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ingush", QLocale::Language::Ingush);
|
|
250
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Interlingua", QLocale::Language::Interlingua);
|
|
251
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Interlingue", QLocale::Language::Interlingue);
|
|
252
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Inuktitut", QLocale::Language::Inuktitut);
|
|
253
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Inupiaq", QLocale::Language::Inupiaq);
|
|
254
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Irish", QLocale::Language::Irish);
|
|
255
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Italian", QLocale::Language::Italian);
|
|
256
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Japanese", QLocale::Language::Japanese);
|
|
257
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Javanese", QLocale::Language::Javanese);
|
|
258
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Jju", QLocale::Language::Jju);
|
|
259
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "JolaFonyi", QLocale::Language::JolaFonyi);
|
|
260
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kabuverdianu", QLocale::Language::Kabuverdianu);
|
|
261
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kabyle", QLocale::Language::Kabyle);
|
|
262
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kako", QLocale::Language::Kako);
|
|
263
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kalaallisut", QLocale::Language::Kalaallisut);
|
|
264
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kalenjin", QLocale::Language::Kalenjin);
|
|
265
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kamba", QLocale::Language::Kamba);
|
|
266
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kannada", QLocale::Language::Kannada);
|
|
267
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kanuri", QLocale::Language::Kanuri);
|
|
268
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kashmiri", QLocale::Language::Kashmiri);
|
|
269
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kazakh", QLocale::Language::Kazakh);
|
|
270
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kenyang", QLocale::Language::Kenyang);
|
|
271
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Khmer", QLocale::Language::Khmer);
|
|
272
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kiche", QLocale::Language::Kiche);
|
|
273
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kikuyu", QLocale::Language::Kikuyu);
|
|
274
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kinyarwanda", QLocale::Language::Kinyarwanda);
|
|
275
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Komi", QLocale::Language::Komi);
|
|
276
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kongo", QLocale::Language::Kongo);
|
|
277
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Konkani", QLocale::Language::Konkani);
|
|
278
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Korean", QLocale::Language::Korean);
|
|
279
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Koro", QLocale::Language::Koro);
|
|
280
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "KoyraboroSenni", QLocale::Language::KoyraboroSenni);
|
|
281
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "KoyraChiini", QLocale::Language::KoyraChiini);
|
|
282
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kpelle", QLocale::Language::Kpelle);
|
|
283
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kuanyama", QLocale::Language::Kuanyama);
|
|
284
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kurdish", QLocale::Language::Kurdish);
|
|
285
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kwasio", QLocale::Language::Kwasio);
|
|
286
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kyrgyz", QLocale::Language::Kyrgyz);
|
|
287
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Lakota", QLocale::Language::Lakota);
|
|
288
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Langi", QLocale::Language::Langi);
|
|
289
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Lao", QLocale::Language::Lao);
|
|
290
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Latin", QLocale::Language::Latin);
|
|
291
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Latvian", QLocale::Language::Latvian);
|
|
292
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Lezghian", QLocale::Language::Lezghian);
|
|
293
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Limburgish", QLocale::Language::Limburgish);
|
|
294
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Lingala", QLocale::Language::Lingala);
|
|
295
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "LiteraryChinese", QLocale::Language::LiteraryChinese);
|
|
296
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Lithuanian", QLocale::Language::Lithuanian);
|
|
297
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Lojban", QLocale::Language::Lojban);
|
|
298
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "LowerSorbian", QLocale::Language::LowerSorbian);
|
|
299
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "LowGerman", QLocale::Language::LowGerman);
|
|
300
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "LubaKatanga", QLocale::Language::LubaKatanga);
|
|
301
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "LuleSami", QLocale::Language::LuleSami);
|
|
302
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Luo", QLocale::Language::Luo);
|
|
303
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Luxembourgish", QLocale::Language::Luxembourgish);
|
|
304
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Luyia", QLocale::Language::Luyia);
|
|
305
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Macedonian", QLocale::Language::Macedonian);
|
|
306
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Machame", QLocale::Language::Machame);
|
|
307
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Maithili", QLocale::Language::Maithili);
|
|
308
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "MakhuwaMeetto", QLocale::Language::MakhuwaMeetto);
|
|
309
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Makonde", QLocale::Language::Makonde);
|
|
310
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Malagasy", QLocale::Language::Malagasy);
|
|
311
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Malayalam", QLocale::Language::Malayalam);
|
|
312
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Malay", QLocale::Language::Malay);
|
|
313
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Maltese", QLocale::Language::Maltese);
|
|
314
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Mandingo", QLocale::Language::Mandingo);
|
|
315
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Manipuri", QLocale::Language::Manipuri);
|
|
316
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Manx", QLocale::Language::Manx);
|
|
317
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Maori", QLocale::Language::Maori);
|
|
318
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Mapuche", QLocale::Language::Mapuche);
|
|
319
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Marathi", QLocale::Language::Marathi);
|
|
320
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Marshallese", QLocale::Language::Marshallese);
|
|
321
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Masai", QLocale::Language::Masai);
|
|
322
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Mazanderani", QLocale::Language::Mazanderani);
|
|
323
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Mende", QLocale::Language::Mende);
|
|
324
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Meru", QLocale::Language::Meru);
|
|
325
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Meta", QLocale::Language::Meta);
|
|
326
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Mohawk", QLocale::Language::Mohawk);
|
|
327
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Mongolian", QLocale::Language::Mongolian);
|
|
328
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Morisyen", QLocale::Language::Morisyen);
|
|
329
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Mundang", QLocale::Language::Mundang);
|
|
330
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Muscogee", QLocale::Language::Muscogee);
|
|
331
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Nama", QLocale::Language::Nama);
|
|
332
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "NauruLanguage", QLocale::Language::NauruLanguage);
|
|
333
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Navajo", QLocale::Language::Navajo);
|
|
334
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ndonga", QLocale::Language::Ndonga);
|
|
335
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Nepali", QLocale::Language::Nepali);
|
|
336
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Newari", QLocale::Language::Newari);
|
|
337
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ngiemboon", QLocale::Language::Ngiemboon);
|
|
338
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ngomba", QLocale::Language::Ngomba);
|
|
339
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "NigerianPidgin", QLocale::Language::NigerianPidgin);
|
|
340
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Nko", QLocale::Language::Nko);
|
|
341
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "NorthernLuri", QLocale::Language::NorthernLuri);
|
|
342
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "NorthernSami", QLocale::Language::NorthernSami);
|
|
343
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "NorthernSotho", QLocale::Language::NorthernSotho);
|
|
344
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "NorthNdebele", QLocale::Language::NorthNdebele);
|
|
345
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "NorwegianBokmal", QLocale::Language::NorwegianBokmal);
|
|
346
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "NorwegianNynorsk", QLocale::Language::NorwegianNynorsk);
|
|
347
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Nuer", QLocale::Language::Nuer);
|
|
348
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Nyanja", QLocale::Language::Nyanja);
|
|
349
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Nyankole", QLocale::Language::Nyankole);
|
|
350
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Occitan", QLocale::Language::Occitan);
|
|
351
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Odia", QLocale::Language::Odia);
|
|
352
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ojibwa", QLocale::Language::Ojibwa);
|
|
353
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "OldIrish", QLocale::Language::OldIrish);
|
|
354
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "OldNorse", QLocale::Language::OldNorse);
|
|
355
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "OldPersian", QLocale::Language::OldPersian);
|
|
356
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Oromo", QLocale::Language::Oromo);
|
|
357
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Osage", QLocale::Language::Osage);
|
|
358
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ossetic", QLocale::Language::Ossetic);
|
|
359
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Pahlavi", QLocale::Language::Pahlavi);
|
|
360
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Palauan", QLocale::Language::Palauan);
|
|
361
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Pali", QLocale::Language::Pali);
|
|
362
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Papiamento", QLocale::Language::Papiamento);
|
|
363
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Pashto", QLocale::Language::Pashto);
|
|
364
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Persian", QLocale::Language::Persian);
|
|
365
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Phoenician", QLocale::Language::Phoenician);
|
|
366
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Polish", QLocale::Language::Polish);
|
|
367
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Portuguese", QLocale::Language::Portuguese);
|
|
368
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Prussian", QLocale::Language::Prussian);
|
|
369
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Punjabi", QLocale::Language::Punjabi);
|
|
370
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Quechua", QLocale::Language::Quechua);
|
|
371
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Romanian", QLocale::Language::Romanian);
|
|
372
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Romansh", QLocale::Language::Romansh);
|
|
373
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Rombo", QLocale::Language::Rombo);
|
|
374
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Rundi", QLocale::Language::Rundi);
|
|
375
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Russian", QLocale::Language::Russian);
|
|
376
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Rwa", QLocale::Language::Rwa);
|
|
377
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Saho", QLocale::Language::Saho);
|
|
378
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sakha", QLocale::Language::Sakha);
|
|
379
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Samburu", QLocale::Language::Samburu);
|
|
380
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Samoan", QLocale::Language::Samoan);
|
|
381
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sango", QLocale::Language::Sango);
|
|
382
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sangu", QLocale::Language::Sangu);
|
|
383
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sanskrit", QLocale::Language::Sanskrit);
|
|
384
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Santali", QLocale::Language::Santali);
|
|
385
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sardinian", QLocale::Language::Sardinian);
|
|
386
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Saurashtra", QLocale::Language::Saurashtra);
|
|
387
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sena", QLocale::Language::Sena);
|
|
388
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Serbian", QLocale::Language::Serbian);
|
|
389
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Shambala", QLocale::Language::Shambala);
|
|
390
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Shona", QLocale::Language::Shona);
|
|
391
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "SichuanYi", QLocale::Language::SichuanYi);
|
|
392
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sicilian", QLocale::Language::Sicilian);
|
|
393
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sidamo", QLocale::Language::Sidamo);
|
|
394
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Silesian", QLocale::Language::Silesian);
|
|
395
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sindhi", QLocale::Language::Sindhi);
|
|
396
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sinhala", QLocale::Language::Sinhala);
|
|
397
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "SkoltSami", QLocale::Language::SkoltSami);
|
|
398
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Slovak", QLocale::Language::Slovak);
|
|
399
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Slovenian", QLocale::Language::Slovenian);
|
|
400
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Soga", QLocale::Language::Soga);
|
|
401
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Somali", QLocale::Language::Somali);
|
|
402
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "SouthernKurdish", QLocale::Language::SouthernKurdish);
|
|
403
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "SouthernSami", QLocale::Language::SouthernSami);
|
|
404
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "SouthernSotho", QLocale::Language::SouthernSotho);
|
|
405
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "SouthNdebele", QLocale::Language::SouthNdebele);
|
|
406
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Spanish", QLocale::Language::Spanish);
|
|
407
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "StandardMoroccanTamazight", QLocale::Language::StandardMoroccanTamazight);
|
|
408
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Sundanese", QLocale::Language::Sundanese);
|
|
409
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Swahili", QLocale::Language::Swahili);
|
|
410
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Swati", QLocale::Language::Swati);
|
|
411
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Swedish", QLocale::Language::Swedish);
|
|
412
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "SwissGerman", QLocale::Language::SwissGerman);
|
|
413
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Syriac", QLocale::Language::Syriac);
|
|
414
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tachelhit", QLocale::Language::Tachelhit);
|
|
415
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tahitian", QLocale::Language::Tahitian);
|
|
416
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "TaiDam", QLocale::Language::TaiDam);
|
|
417
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Taita", QLocale::Language::Taita);
|
|
418
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tajik", QLocale::Language::Tajik);
|
|
419
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tamil", QLocale::Language::Tamil);
|
|
420
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Taroko", QLocale::Language::Taroko);
|
|
421
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tasawaq", QLocale::Language::Tasawaq);
|
|
422
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tatar", QLocale::Language::Tatar);
|
|
423
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Telugu", QLocale::Language::Telugu);
|
|
424
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Teso", QLocale::Language::Teso);
|
|
425
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Thai", QLocale::Language::Thai);
|
|
426
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tibetan", QLocale::Language::Tibetan);
|
|
427
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tigre", QLocale::Language::Tigre);
|
|
428
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tigrinya", QLocale::Language::Tigrinya);
|
|
429
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "TokelauLanguage", QLocale::Language::TokelauLanguage);
|
|
430
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "TokPisin", QLocale::Language::TokPisin);
|
|
431
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tongan", QLocale::Language::Tongan);
|
|
432
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tsonga", QLocale::Language::Tsonga);
|
|
433
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tswana", QLocale::Language::Tswana);
|
|
434
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Turkish", QLocale::Language::Turkish);
|
|
435
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Turkmen", QLocale::Language::Turkmen);
|
|
436
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "TuvaluLanguage", QLocale::Language::TuvaluLanguage);
|
|
437
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Tyap", QLocale::Language::Tyap);
|
|
438
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ugaritic", QLocale::Language::Ugaritic);
|
|
439
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ukrainian", QLocale::Language::Ukrainian);
|
|
440
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "UpperSorbian", QLocale::Language::UpperSorbian);
|
|
441
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Urdu", QLocale::Language::Urdu);
|
|
442
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Uyghur", QLocale::Language::Uyghur);
|
|
443
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Uzbek", QLocale::Language::Uzbek);
|
|
444
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Vai", QLocale::Language::Vai);
|
|
445
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Venda", QLocale::Language::Venda);
|
|
446
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Vietnamese", QLocale::Language::Vietnamese);
|
|
447
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Volapuk", QLocale::Language::Volapuk);
|
|
448
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Vunjo", QLocale::Language::Vunjo);
|
|
449
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Walloon", QLocale::Language::Walloon);
|
|
450
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Walser", QLocale::Language::Walser);
|
|
451
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Warlpiri", QLocale::Language::Warlpiri);
|
|
452
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Welsh", QLocale::Language::Welsh);
|
|
453
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "WesternBalochi", QLocale::Language::WesternBalochi);
|
|
454
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "WesternFrisian", QLocale::Language::WesternFrisian);
|
|
455
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Wolaytta", QLocale::Language::Wolaytta);
|
|
456
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Wolof", QLocale::Language::Wolof);
|
|
457
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Xhosa", QLocale::Language::Xhosa);
|
|
458
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Yangben", QLocale::Language::Yangben);
|
|
459
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Yiddish", QLocale::Language::Yiddish);
|
|
460
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Yoruba", QLocale::Language::Yoruba);
|
|
461
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Zarma", QLocale::Language::Zarma);
|
|
462
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Zhuang", QLocale::Language::Zhuang);
|
|
463
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Zulu", QLocale::Language::Zulu);
|
|
464
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kaingang", QLocale::Language::Kaingang);
|
|
465
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Nheengatu", QLocale::Language::Nheengatu);
|
|
466
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Haryanvi", QLocale::Language::Haryanvi);
|
|
467
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "NorthernFrisian", QLocale::Language::NorthernFrisian);
|
|
468
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Rajasthani", QLocale::Language::Rajasthani);
|
|
469
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Moksha", QLocale::Language::Moksha);
|
|
470
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "TokiPona", QLocale::Language::TokiPona);
|
|
471
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Pijin", QLocale::Language::Pijin);
|
|
472
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Obolo", QLocale::Language::Obolo);
|
|
473
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Baluchi", QLocale::Language::Baluchi);
|
|
474
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Ligurian", QLocale::Language::Ligurian);
|
|
475
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Rohingya", QLocale::Language::Rohingya);
|
|
476
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Torwali", QLocale::Language::Torwali);
|
|
477
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Anii", QLocale::Language::Anii);
|
|
478
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kangri", QLocale::Language::Kangri);
|
|
479
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Venetian", QLocale::Language::Venetian);
|
|
480
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kuvi", QLocale::Language::Kuvi);
|
|
481
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "KaraKalpak", QLocale::Language::KaraKalpak);
|
|
482
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "SwampyCree", QLocale::Language::SwampyCree);
|
|
483
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Afan", QLocale::Language::Afan);
|
|
484
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bengali", QLocale::Language::Bengali);
|
|
485
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Bhutani", QLocale::Language::Bhutani);
|
|
486
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Byelorussian", QLocale::Language::Byelorussian);
|
|
487
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Cambodian", QLocale::Language::Cambodian);
|
|
488
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "CentralMoroccoTamazight", QLocale::Language::CentralMoroccoTamazight);
|
|
489
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Chewa", QLocale::Language::Chewa);
|
|
490
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Frisian", QLocale::Language::Frisian);
|
|
491
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Greenlandic", QLocale::Language::Greenlandic);
|
|
492
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Inupiak", QLocale::Language::Inupiak);
|
|
493
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kirghiz", QLocale::Language::Kirghiz);
|
|
494
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kurundi", QLocale::Language::Kurundi);
|
|
495
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Kwanyama", QLocale::Language::Kwanyama);
|
|
496
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Navaho", QLocale::Language::Navaho);
|
|
497
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Oriya", QLocale::Language::Oriya);
|
|
498
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "RhaetoRomance", QLocale::Language::RhaetoRomance);
|
|
499
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Uighur", QLocale::Language::Uighur);
|
|
500
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Uigur", QLocale::Language::Uigur);
|
|
501
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "Walamo", QLocale::Language::Walamo);
|
|
502
|
+
define_qenum_value_under(rb_cQLocaleLanguage, "LastLanguage", QLocale::Language::LastLanguage);
|
|
503
|
+
|
|
504
|
+
Data_Type<QLocale::Script> rb_cQLocaleScript =
|
|
505
|
+
// RubyQt6::QtCore::QLocale::Script
|
|
506
|
+
define_qenum_under<QLocale::Script>(rb_cQLocale, "Script");
|
|
507
|
+
define_qenum_value_under(rb_cQLocaleScript, "AnyScript", QLocale::Script::AnyScript);
|
|
508
|
+
define_qenum_value_under(rb_cQLocaleScript, "AdlamScript", QLocale::Script::AdlamScript);
|
|
509
|
+
define_qenum_value_under(rb_cQLocaleScript, "AhomScript", QLocale::Script::AhomScript);
|
|
510
|
+
define_qenum_value_under(rb_cQLocaleScript, "AnatolianHieroglyphsScript", QLocale::Script::AnatolianHieroglyphsScript);
|
|
511
|
+
define_qenum_value_under(rb_cQLocaleScript, "ArabicScript", QLocale::Script::ArabicScript);
|
|
512
|
+
define_qenum_value_under(rb_cQLocaleScript, "ArmenianScript", QLocale::Script::ArmenianScript);
|
|
513
|
+
define_qenum_value_under(rb_cQLocaleScript, "AvestanScript", QLocale::Script::AvestanScript);
|
|
514
|
+
define_qenum_value_under(rb_cQLocaleScript, "BalineseScript", QLocale::Script::BalineseScript);
|
|
515
|
+
define_qenum_value_under(rb_cQLocaleScript, "BamumScript", QLocale::Script::BamumScript);
|
|
516
|
+
define_qenum_value_under(rb_cQLocaleScript, "BanglaScript", QLocale::Script::BanglaScript);
|
|
517
|
+
define_qenum_value_under(rb_cQLocaleScript, "BassaVahScript", QLocale::Script::BassaVahScript);
|
|
518
|
+
define_qenum_value_under(rb_cQLocaleScript, "BatakScript", QLocale::Script::BatakScript);
|
|
519
|
+
define_qenum_value_under(rb_cQLocaleScript, "BhaiksukiScript", QLocale::Script::BhaiksukiScript);
|
|
520
|
+
define_qenum_value_under(rb_cQLocaleScript, "BopomofoScript", QLocale::Script::BopomofoScript);
|
|
521
|
+
define_qenum_value_under(rb_cQLocaleScript, "BrahmiScript", QLocale::Script::BrahmiScript);
|
|
522
|
+
define_qenum_value_under(rb_cQLocaleScript, "BrailleScript", QLocale::Script::BrailleScript);
|
|
523
|
+
define_qenum_value_under(rb_cQLocaleScript, "BugineseScript", QLocale::Script::BugineseScript);
|
|
524
|
+
define_qenum_value_under(rb_cQLocaleScript, "BuhidScript", QLocale::Script::BuhidScript);
|
|
525
|
+
define_qenum_value_under(rb_cQLocaleScript, "CanadianAboriginalScript", QLocale::Script::CanadianAboriginalScript);
|
|
526
|
+
define_qenum_value_under(rb_cQLocaleScript, "CarianScript", QLocale::Script::CarianScript);
|
|
527
|
+
define_qenum_value_under(rb_cQLocaleScript, "CaucasianAlbanianScript", QLocale::Script::CaucasianAlbanianScript);
|
|
528
|
+
define_qenum_value_under(rb_cQLocaleScript, "ChakmaScript", QLocale::Script::ChakmaScript);
|
|
529
|
+
define_qenum_value_under(rb_cQLocaleScript, "ChamScript", QLocale::Script::ChamScript);
|
|
530
|
+
define_qenum_value_under(rb_cQLocaleScript, "CherokeeScript", QLocale::Script::CherokeeScript);
|
|
531
|
+
define_qenum_value_under(rb_cQLocaleScript, "CopticScript", QLocale::Script::CopticScript);
|
|
532
|
+
define_qenum_value_under(rb_cQLocaleScript, "CuneiformScript", QLocale::Script::CuneiformScript);
|
|
533
|
+
define_qenum_value_under(rb_cQLocaleScript, "CypriotScript", QLocale::Script::CypriotScript);
|
|
534
|
+
define_qenum_value_under(rb_cQLocaleScript, "CyrillicScript", QLocale::Script::CyrillicScript);
|
|
535
|
+
define_qenum_value_under(rb_cQLocaleScript, "DeseretScript", QLocale::Script::DeseretScript);
|
|
536
|
+
define_qenum_value_under(rb_cQLocaleScript, "DevanagariScript", QLocale::Script::DevanagariScript);
|
|
537
|
+
define_qenum_value_under(rb_cQLocaleScript, "DuployanScript", QLocale::Script::DuployanScript);
|
|
538
|
+
define_qenum_value_under(rb_cQLocaleScript, "EgyptianHieroglyphsScript", QLocale::Script::EgyptianHieroglyphsScript);
|
|
539
|
+
define_qenum_value_under(rb_cQLocaleScript, "ElbasanScript", QLocale::Script::ElbasanScript);
|
|
540
|
+
define_qenum_value_under(rb_cQLocaleScript, "EthiopicScript", QLocale::Script::EthiopicScript);
|
|
541
|
+
define_qenum_value_under(rb_cQLocaleScript, "FraserScript", QLocale::Script::FraserScript);
|
|
542
|
+
define_qenum_value_under(rb_cQLocaleScript, "GeorgianScript", QLocale::Script::GeorgianScript);
|
|
543
|
+
define_qenum_value_under(rb_cQLocaleScript, "GlagoliticScript", QLocale::Script::GlagoliticScript);
|
|
544
|
+
define_qenum_value_under(rb_cQLocaleScript, "GothicScript", QLocale::Script::GothicScript);
|
|
545
|
+
define_qenum_value_under(rb_cQLocaleScript, "GranthaScript", QLocale::Script::GranthaScript);
|
|
546
|
+
define_qenum_value_under(rb_cQLocaleScript, "GreekScript", QLocale::Script::GreekScript);
|
|
547
|
+
define_qenum_value_under(rb_cQLocaleScript, "GujaratiScript", QLocale::Script::GujaratiScript);
|
|
548
|
+
define_qenum_value_under(rb_cQLocaleScript, "GurmukhiScript", QLocale::Script::GurmukhiScript);
|
|
549
|
+
define_qenum_value_under(rb_cQLocaleScript, "HangulScript", QLocale::Script::HangulScript);
|
|
550
|
+
define_qenum_value_under(rb_cQLocaleScript, "HanScript", QLocale::Script::HanScript);
|
|
551
|
+
define_qenum_value_under(rb_cQLocaleScript, "HanunooScript", QLocale::Script::HanunooScript);
|
|
552
|
+
define_qenum_value_under(rb_cQLocaleScript, "HanWithBopomofoScript", QLocale::Script::HanWithBopomofoScript);
|
|
553
|
+
define_qenum_value_under(rb_cQLocaleScript, "HatranScript", QLocale::Script::HatranScript);
|
|
554
|
+
define_qenum_value_under(rb_cQLocaleScript, "HebrewScript", QLocale::Script::HebrewScript);
|
|
555
|
+
define_qenum_value_under(rb_cQLocaleScript, "HiraganaScript", QLocale::Script::HiraganaScript);
|
|
556
|
+
define_qenum_value_under(rb_cQLocaleScript, "ImperialAramaicScript", QLocale::Script::ImperialAramaicScript);
|
|
557
|
+
define_qenum_value_under(rb_cQLocaleScript, "InscriptionalPahlaviScript", QLocale::Script::InscriptionalPahlaviScript);
|
|
558
|
+
define_qenum_value_under(rb_cQLocaleScript, "InscriptionalParthianScript", QLocale::Script::InscriptionalParthianScript);
|
|
559
|
+
define_qenum_value_under(rb_cQLocaleScript, "JamoScript", QLocale::Script::JamoScript);
|
|
560
|
+
define_qenum_value_under(rb_cQLocaleScript, "JapaneseScript", QLocale::Script::JapaneseScript);
|
|
561
|
+
define_qenum_value_under(rb_cQLocaleScript, "JavaneseScript", QLocale::Script::JavaneseScript);
|
|
562
|
+
define_qenum_value_under(rb_cQLocaleScript, "KaithiScript", QLocale::Script::KaithiScript);
|
|
563
|
+
define_qenum_value_under(rb_cQLocaleScript, "KannadaScript", QLocale::Script::KannadaScript);
|
|
564
|
+
define_qenum_value_under(rb_cQLocaleScript, "KatakanaScript", QLocale::Script::KatakanaScript);
|
|
565
|
+
define_qenum_value_under(rb_cQLocaleScript, "KayahLiScript", QLocale::Script::KayahLiScript);
|
|
566
|
+
define_qenum_value_under(rb_cQLocaleScript, "KharoshthiScript", QLocale::Script::KharoshthiScript);
|
|
567
|
+
define_qenum_value_under(rb_cQLocaleScript, "KhmerScript", QLocale::Script::KhmerScript);
|
|
568
|
+
define_qenum_value_under(rb_cQLocaleScript, "KhojkiScript", QLocale::Script::KhojkiScript);
|
|
569
|
+
define_qenum_value_under(rb_cQLocaleScript, "KhudawadiScript", QLocale::Script::KhudawadiScript);
|
|
570
|
+
define_qenum_value_under(rb_cQLocaleScript, "KoreanScript", QLocale::Script::KoreanScript);
|
|
571
|
+
define_qenum_value_under(rb_cQLocaleScript, "LannaScript", QLocale::Script::LannaScript);
|
|
572
|
+
define_qenum_value_under(rb_cQLocaleScript, "LaoScript", QLocale::Script::LaoScript);
|
|
573
|
+
define_qenum_value_under(rb_cQLocaleScript, "LatinScript", QLocale::Script::LatinScript);
|
|
574
|
+
define_qenum_value_under(rb_cQLocaleScript, "LepchaScript", QLocale::Script::LepchaScript);
|
|
575
|
+
define_qenum_value_under(rb_cQLocaleScript, "LimbuScript", QLocale::Script::LimbuScript);
|
|
576
|
+
define_qenum_value_under(rb_cQLocaleScript, "LinearAScript", QLocale::Script::LinearAScript);
|
|
577
|
+
define_qenum_value_under(rb_cQLocaleScript, "LinearBScript", QLocale::Script::LinearBScript);
|
|
578
|
+
define_qenum_value_under(rb_cQLocaleScript, "LycianScript", QLocale::Script::LycianScript);
|
|
579
|
+
define_qenum_value_under(rb_cQLocaleScript, "LydianScript", QLocale::Script::LydianScript);
|
|
580
|
+
define_qenum_value_under(rb_cQLocaleScript, "MahajaniScript", QLocale::Script::MahajaniScript);
|
|
581
|
+
define_qenum_value_under(rb_cQLocaleScript, "MalayalamScript", QLocale::Script::MalayalamScript);
|
|
582
|
+
define_qenum_value_under(rb_cQLocaleScript, "MandaeanScript", QLocale::Script::MandaeanScript);
|
|
583
|
+
define_qenum_value_under(rb_cQLocaleScript, "ManichaeanScript", QLocale::Script::ManichaeanScript);
|
|
584
|
+
define_qenum_value_under(rb_cQLocaleScript, "MarchenScript", QLocale::Script::MarchenScript);
|
|
585
|
+
define_qenum_value_under(rb_cQLocaleScript, "MeiteiMayekScript", QLocale::Script::MeiteiMayekScript);
|
|
586
|
+
define_qenum_value_under(rb_cQLocaleScript, "MendeScript", QLocale::Script::MendeScript);
|
|
587
|
+
define_qenum_value_under(rb_cQLocaleScript, "MeroiticCursiveScript", QLocale::Script::MeroiticCursiveScript);
|
|
588
|
+
define_qenum_value_under(rb_cQLocaleScript, "MeroiticScript", QLocale::Script::MeroiticScript);
|
|
589
|
+
define_qenum_value_under(rb_cQLocaleScript, "ModiScript", QLocale::Script::ModiScript);
|
|
590
|
+
define_qenum_value_under(rb_cQLocaleScript, "MongolianScript", QLocale::Script::MongolianScript);
|
|
591
|
+
define_qenum_value_under(rb_cQLocaleScript, "MroScript", QLocale::Script::MroScript);
|
|
592
|
+
define_qenum_value_under(rb_cQLocaleScript, "MultaniScript", QLocale::Script::MultaniScript);
|
|
593
|
+
define_qenum_value_under(rb_cQLocaleScript, "MyanmarScript", QLocale::Script::MyanmarScript);
|
|
594
|
+
define_qenum_value_under(rb_cQLocaleScript, "NabataeanScript", QLocale::Script::NabataeanScript);
|
|
595
|
+
define_qenum_value_under(rb_cQLocaleScript, "NewaScript", QLocale::Script::NewaScript);
|
|
596
|
+
define_qenum_value_under(rb_cQLocaleScript, "NewTaiLueScript", QLocale::Script::NewTaiLueScript);
|
|
597
|
+
define_qenum_value_under(rb_cQLocaleScript, "NkoScript", QLocale::Script::NkoScript);
|
|
598
|
+
define_qenum_value_under(rb_cQLocaleScript, "OdiaScript", QLocale::Script::OdiaScript);
|
|
599
|
+
define_qenum_value_under(rb_cQLocaleScript, "OghamScript", QLocale::Script::OghamScript);
|
|
600
|
+
define_qenum_value_under(rb_cQLocaleScript, "OlChikiScript", QLocale::Script::OlChikiScript);
|
|
601
|
+
define_qenum_value_under(rb_cQLocaleScript, "OldHungarianScript", QLocale::Script::OldHungarianScript);
|
|
602
|
+
define_qenum_value_under(rb_cQLocaleScript, "OldItalicScript", QLocale::Script::OldItalicScript);
|
|
603
|
+
define_qenum_value_under(rb_cQLocaleScript, "OldNorthArabianScript", QLocale::Script::OldNorthArabianScript);
|
|
604
|
+
define_qenum_value_under(rb_cQLocaleScript, "OldPermicScript", QLocale::Script::OldPermicScript);
|
|
605
|
+
define_qenum_value_under(rb_cQLocaleScript, "OldPersianScript", QLocale::Script::OldPersianScript);
|
|
606
|
+
define_qenum_value_under(rb_cQLocaleScript, "OldSouthArabianScript", QLocale::Script::OldSouthArabianScript);
|
|
607
|
+
define_qenum_value_under(rb_cQLocaleScript, "OrkhonScript", QLocale::Script::OrkhonScript);
|
|
608
|
+
define_qenum_value_under(rb_cQLocaleScript, "OsageScript", QLocale::Script::OsageScript);
|
|
609
|
+
define_qenum_value_under(rb_cQLocaleScript, "OsmanyaScript", QLocale::Script::OsmanyaScript);
|
|
610
|
+
define_qenum_value_under(rb_cQLocaleScript, "PahawhHmongScript", QLocale::Script::PahawhHmongScript);
|
|
611
|
+
define_qenum_value_under(rb_cQLocaleScript, "PalmyreneScript", QLocale::Script::PalmyreneScript);
|
|
612
|
+
define_qenum_value_under(rb_cQLocaleScript, "PauCinHauScript", QLocale::Script::PauCinHauScript);
|
|
613
|
+
define_qenum_value_under(rb_cQLocaleScript, "PhagsPaScript", QLocale::Script::PhagsPaScript);
|
|
614
|
+
define_qenum_value_under(rb_cQLocaleScript, "PhoenicianScript", QLocale::Script::PhoenicianScript);
|
|
615
|
+
define_qenum_value_under(rb_cQLocaleScript, "PollardPhoneticScript", QLocale::Script::PollardPhoneticScript);
|
|
616
|
+
define_qenum_value_under(rb_cQLocaleScript, "PsalterPahlaviScript", QLocale::Script::PsalterPahlaviScript);
|
|
617
|
+
define_qenum_value_under(rb_cQLocaleScript, "RejangScript", QLocale::Script::RejangScript);
|
|
618
|
+
define_qenum_value_under(rb_cQLocaleScript, "RunicScript", QLocale::Script::RunicScript);
|
|
619
|
+
define_qenum_value_under(rb_cQLocaleScript, "SamaritanScript", QLocale::Script::SamaritanScript);
|
|
620
|
+
define_qenum_value_under(rb_cQLocaleScript, "SaurashtraScript", QLocale::Script::SaurashtraScript);
|
|
621
|
+
define_qenum_value_under(rb_cQLocaleScript, "SharadaScript", QLocale::Script::SharadaScript);
|
|
622
|
+
define_qenum_value_under(rb_cQLocaleScript, "ShavianScript", QLocale::Script::ShavianScript);
|
|
623
|
+
define_qenum_value_under(rb_cQLocaleScript, "SiddhamScript", QLocale::Script::SiddhamScript);
|
|
624
|
+
define_qenum_value_under(rb_cQLocaleScript, "SignWritingScript", QLocale::Script::SignWritingScript);
|
|
625
|
+
define_qenum_value_under(rb_cQLocaleScript, "SimplifiedHanScript", QLocale::Script::SimplifiedHanScript);
|
|
626
|
+
define_qenum_value_under(rb_cQLocaleScript, "SinhalaScript", QLocale::Script::SinhalaScript);
|
|
627
|
+
define_qenum_value_under(rb_cQLocaleScript, "SoraSompengScript", QLocale::Script::SoraSompengScript);
|
|
628
|
+
define_qenum_value_under(rb_cQLocaleScript, "SundaneseScript", QLocale::Script::SundaneseScript);
|
|
629
|
+
define_qenum_value_under(rb_cQLocaleScript, "SylotiNagriScript", QLocale::Script::SylotiNagriScript);
|
|
630
|
+
define_qenum_value_under(rb_cQLocaleScript, "SyriacScript", QLocale::Script::SyriacScript);
|
|
631
|
+
define_qenum_value_under(rb_cQLocaleScript, "TagalogScript", QLocale::Script::TagalogScript);
|
|
632
|
+
define_qenum_value_under(rb_cQLocaleScript, "TagbanwaScript", QLocale::Script::TagbanwaScript);
|
|
633
|
+
define_qenum_value_under(rb_cQLocaleScript, "TaiLeScript", QLocale::Script::TaiLeScript);
|
|
634
|
+
define_qenum_value_under(rb_cQLocaleScript, "TaiVietScript", QLocale::Script::TaiVietScript);
|
|
635
|
+
define_qenum_value_under(rb_cQLocaleScript, "TakriScript", QLocale::Script::TakriScript);
|
|
636
|
+
define_qenum_value_under(rb_cQLocaleScript, "TamilScript", QLocale::Script::TamilScript);
|
|
637
|
+
define_qenum_value_under(rb_cQLocaleScript, "TangutScript", QLocale::Script::TangutScript);
|
|
638
|
+
define_qenum_value_under(rb_cQLocaleScript, "TeluguScript", QLocale::Script::TeluguScript);
|
|
639
|
+
define_qenum_value_under(rb_cQLocaleScript, "ThaanaScript", QLocale::Script::ThaanaScript);
|
|
640
|
+
define_qenum_value_under(rb_cQLocaleScript, "ThaiScript", QLocale::Script::ThaiScript);
|
|
641
|
+
define_qenum_value_under(rb_cQLocaleScript, "TibetanScript", QLocale::Script::TibetanScript);
|
|
642
|
+
define_qenum_value_under(rb_cQLocaleScript, "TifinaghScript", QLocale::Script::TifinaghScript);
|
|
643
|
+
define_qenum_value_under(rb_cQLocaleScript, "TirhutaScript", QLocale::Script::TirhutaScript);
|
|
644
|
+
define_qenum_value_under(rb_cQLocaleScript, "TraditionalHanScript", QLocale::Script::TraditionalHanScript);
|
|
645
|
+
define_qenum_value_under(rb_cQLocaleScript, "UgariticScript", QLocale::Script::UgariticScript);
|
|
646
|
+
define_qenum_value_under(rb_cQLocaleScript, "VaiScript", QLocale::Script::VaiScript);
|
|
647
|
+
define_qenum_value_under(rb_cQLocaleScript, "VarangKshitiScript", QLocale::Script::VarangKshitiScript);
|
|
648
|
+
define_qenum_value_under(rb_cQLocaleScript, "YiScript", QLocale::Script::YiScript);
|
|
649
|
+
define_qenum_value_under(rb_cQLocaleScript, "HanifiScript", QLocale::Script::HanifiScript);
|
|
650
|
+
define_qenum_value_under(rb_cQLocaleScript, "BengaliScript", QLocale::Script::BengaliScript);
|
|
651
|
+
define_qenum_value_under(rb_cQLocaleScript, "MendeKikakuiScript", QLocale::Script::MendeKikakuiScript);
|
|
652
|
+
define_qenum_value_under(rb_cQLocaleScript, "OriyaScript", QLocale::Script::OriyaScript);
|
|
653
|
+
define_qenum_value_under(rb_cQLocaleScript, "SimplifiedChineseScript", QLocale::Script::SimplifiedChineseScript);
|
|
654
|
+
define_qenum_value_under(rb_cQLocaleScript, "TraditionalChineseScript", QLocale::Script::TraditionalChineseScript);
|
|
655
|
+
define_qenum_value_under(rb_cQLocaleScript, "LastScript", QLocale::Script::LastScript);
|
|
656
|
+
|
|
657
|
+
Data_Type<QLocale::Country> rb_cQLocaleCountry =
|
|
658
|
+
// RubyQt6::QtCore::QLocale::Country
|
|
659
|
+
define_qenum_under<QLocale::Country>(rb_cQLocale, "Country");
|
|
660
|
+
define_qenum_value_under(rb_cQLocaleCountry, "AnyTerritory", QLocale::Country::AnyTerritory);
|
|
661
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Afghanistan", QLocale::Country::Afghanistan);
|
|
662
|
+
define_qenum_value_under(rb_cQLocaleCountry, "AlandIslands", QLocale::Country::AlandIslands);
|
|
663
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Albania", QLocale::Country::Albania);
|
|
664
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Algeria", QLocale::Country::Algeria);
|
|
665
|
+
define_qenum_value_under(rb_cQLocaleCountry, "AmericanSamoa", QLocale::Country::AmericanSamoa);
|
|
666
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Andorra", QLocale::Country::Andorra);
|
|
667
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Angola", QLocale::Country::Angola);
|
|
668
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Anguilla", QLocale::Country::Anguilla);
|
|
669
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Antarctica", QLocale::Country::Antarctica);
|
|
670
|
+
define_qenum_value_under(rb_cQLocaleCountry, "AntiguaAndBarbuda", QLocale::Country::AntiguaAndBarbuda);
|
|
671
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Argentina", QLocale::Country::Argentina);
|
|
672
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Armenia", QLocale::Country::Armenia);
|
|
673
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Aruba", QLocale::Country::Aruba);
|
|
674
|
+
define_qenum_value_under(rb_cQLocaleCountry, "AscensionIsland", QLocale::Country::AscensionIsland);
|
|
675
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Australia", QLocale::Country::Australia);
|
|
676
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Austria", QLocale::Country::Austria);
|
|
677
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Azerbaijan", QLocale::Country::Azerbaijan);
|
|
678
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Bahamas", QLocale::Country::Bahamas);
|
|
679
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Bahrain", QLocale::Country::Bahrain);
|
|
680
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Bangladesh", QLocale::Country::Bangladesh);
|
|
681
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Barbados", QLocale::Country::Barbados);
|
|
682
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Belarus", QLocale::Country::Belarus);
|
|
683
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Belgium", QLocale::Country::Belgium);
|
|
684
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Belize", QLocale::Country::Belize);
|
|
685
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Benin", QLocale::Country::Benin);
|
|
686
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Bermuda", QLocale::Country::Bermuda);
|
|
687
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Bhutan", QLocale::Country::Bhutan);
|
|
688
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Bolivia", QLocale::Country::Bolivia);
|
|
689
|
+
define_qenum_value_under(rb_cQLocaleCountry, "BosniaAndHerzegovina", QLocale::Country::BosniaAndHerzegovina);
|
|
690
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Botswana", QLocale::Country::Botswana);
|
|
691
|
+
define_qenum_value_under(rb_cQLocaleCountry, "BouvetIsland", QLocale::Country::BouvetIsland);
|
|
692
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Brazil", QLocale::Country::Brazil);
|
|
693
|
+
define_qenum_value_under(rb_cQLocaleCountry, "BritishIndianOceanTerritory", QLocale::Country::BritishIndianOceanTerritory);
|
|
694
|
+
define_qenum_value_under(rb_cQLocaleCountry, "BritishVirginIslands", QLocale::Country::BritishVirginIslands);
|
|
695
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Brunei", QLocale::Country::Brunei);
|
|
696
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Bulgaria", QLocale::Country::Bulgaria);
|
|
697
|
+
define_qenum_value_under(rb_cQLocaleCountry, "BurkinaFaso", QLocale::Country::BurkinaFaso);
|
|
698
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Burundi", QLocale::Country::Burundi);
|
|
699
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Cambodia", QLocale::Country::Cambodia);
|
|
700
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Cameroon", QLocale::Country::Cameroon);
|
|
701
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Canada", QLocale::Country::Canada);
|
|
702
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CanaryIslands", QLocale::Country::CanaryIslands);
|
|
703
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CapeVerde", QLocale::Country::CapeVerde);
|
|
704
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CaribbeanNetherlands", QLocale::Country::CaribbeanNetherlands);
|
|
705
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CaymanIslands", QLocale::Country::CaymanIslands);
|
|
706
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CentralAfricanRepublic", QLocale::Country::CentralAfricanRepublic);
|
|
707
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CeutaAndMelilla", QLocale::Country::CeutaAndMelilla);
|
|
708
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Chad", QLocale::Country::Chad);
|
|
709
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Chile", QLocale::Country::Chile);
|
|
710
|
+
define_qenum_value_under(rb_cQLocaleCountry, "China", QLocale::Country::China);
|
|
711
|
+
define_qenum_value_under(rb_cQLocaleCountry, "ChristmasIsland", QLocale::Country::ChristmasIsland);
|
|
712
|
+
define_qenum_value_under(rb_cQLocaleCountry, "ClippertonIsland", QLocale::Country::ClippertonIsland);
|
|
713
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CocosIslands", QLocale::Country::CocosIslands);
|
|
714
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Colombia", QLocale::Country::Colombia);
|
|
715
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Comoros", QLocale::Country::Comoros);
|
|
716
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CongoBrazzaville", QLocale::Country::CongoBrazzaville);
|
|
717
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CongoKinshasa", QLocale::Country::CongoKinshasa);
|
|
718
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CookIslands", QLocale::Country::CookIslands);
|
|
719
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CostaRica", QLocale::Country::CostaRica);
|
|
720
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Croatia", QLocale::Country::Croatia);
|
|
721
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Cuba", QLocale::Country::Cuba);
|
|
722
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Curacao", QLocale::Country::Curacao);
|
|
723
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Cyprus", QLocale::Country::Cyprus);
|
|
724
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Czechia", QLocale::Country::Czechia);
|
|
725
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Denmark", QLocale::Country::Denmark);
|
|
726
|
+
define_qenum_value_under(rb_cQLocaleCountry, "DiegoGarcia", QLocale::Country::DiegoGarcia);
|
|
727
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Djibouti", QLocale::Country::Djibouti);
|
|
728
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Dominica", QLocale::Country::Dominica);
|
|
729
|
+
define_qenum_value_under(rb_cQLocaleCountry, "DominicanRepublic", QLocale::Country::DominicanRepublic);
|
|
730
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Ecuador", QLocale::Country::Ecuador);
|
|
731
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Egypt", QLocale::Country::Egypt);
|
|
732
|
+
define_qenum_value_under(rb_cQLocaleCountry, "ElSalvador", QLocale::Country::ElSalvador);
|
|
733
|
+
define_qenum_value_under(rb_cQLocaleCountry, "EquatorialGuinea", QLocale::Country::EquatorialGuinea);
|
|
734
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Eritrea", QLocale::Country::Eritrea);
|
|
735
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Estonia", QLocale::Country::Estonia);
|
|
736
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Eswatini", QLocale::Country::Eswatini);
|
|
737
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Ethiopia", QLocale::Country::Ethiopia);
|
|
738
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Europe", QLocale::Country::Europe);
|
|
739
|
+
define_qenum_value_under(rb_cQLocaleCountry, "EuropeanUnion", QLocale::Country::EuropeanUnion);
|
|
740
|
+
define_qenum_value_under(rb_cQLocaleCountry, "FalklandIslands", QLocale::Country::FalklandIslands);
|
|
741
|
+
define_qenum_value_under(rb_cQLocaleCountry, "FaroeIslands", QLocale::Country::FaroeIslands);
|
|
742
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Fiji", QLocale::Country::Fiji);
|
|
743
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Finland", QLocale::Country::Finland);
|
|
744
|
+
define_qenum_value_under(rb_cQLocaleCountry, "France", QLocale::Country::France);
|
|
745
|
+
define_qenum_value_under(rb_cQLocaleCountry, "FrenchGuiana", QLocale::Country::FrenchGuiana);
|
|
746
|
+
define_qenum_value_under(rb_cQLocaleCountry, "FrenchPolynesia", QLocale::Country::FrenchPolynesia);
|
|
747
|
+
define_qenum_value_under(rb_cQLocaleCountry, "FrenchSouthernTerritories", QLocale::Country::FrenchSouthernTerritories);
|
|
748
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Gabon", QLocale::Country::Gabon);
|
|
749
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Gambia", QLocale::Country::Gambia);
|
|
750
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Georgia", QLocale::Country::Georgia);
|
|
751
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Germany", QLocale::Country::Germany);
|
|
752
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Ghana", QLocale::Country::Ghana);
|
|
753
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Gibraltar", QLocale::Country::Gibraltar);
|
|
754
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Greece", QLocale::Country::Greece);
|
|
755
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Greenland", QLocale::Country::Greenland);
|
|
756
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Grenada", QLocale::Country::Grenada);
|
|
757
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Guadeloupe", QLocale::Country::Guadeloupe);
|
|
758
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Guam", QLocale::Country::Guam);
|
|
759
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Guatemala", QLocale::Country::Guatemala);
|
|
760
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Guernsey", QLocale::Country::Guernsey);
|
|
761
|
+
define_qenum_value_under(rb_cQLocaleCountry, "GuineaBissau", QLocale::Country::GuineaBissau);
|
|
762
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Guinea", QLocale::Country::Guinea);
|
|
763
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Guyana", QLocale::Country::Guyana);
|
|
764
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Haiti", QLocale::Country::Haiti);
|
|
765
|
+
define_qenum_value_under(rb_cQLocaleCountry, "HeardAndMcDonaldIslands", QLocale::Country::HeardAndMcDonaldIslands);
|
|
766
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Honduras", QLocale::Country::Honduras);
|
|
767
|
+
define_qenum_value_under(rb_cQLocaleCountry, "HongKong", QLocale::Country::HongKong);
|
|
768
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Hungary", QLocale::Country::Hungary);
|
|
769
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Iceland", QLocale::Country::Iceland);
|
|
770
|
+
define_qenum_value_under(rb_cQLocaleCountry, "India", QLocale::Country::India);
|
|
771
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Indonesia", QLocale::Country::Indonesia);
|
|
772
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Iran", QLocale::Country::Iran);
|
|
773
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Iraq", QLocale::Country::Iraq);
|
|
774
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Ireland", QLocale::Country::Ireland);
|
|
775
|
+
define_qenum_value_under(rb_cQLocaleCountry, "IsleOfMan", QLocale::Country::IsleOfMan);
|
|
776
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Israel", QLocale::Country::Israel);
|
|
777
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Italy", QLocale::Country::Italy);
|
|
778
|
+
define_qenum_value_under(rb_cQLocaleCountry, "IvoryCoast", QLocale::Country::IvoryCoast);
|
|
779
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Jamaica", QLocale::Country::Jamaica);
|
|
780
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Japan", QLocale::Country::Japan);
|
|
781
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Jersey", QLocale::Country::Jersey);
|
|
782
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Jordan", QLocale::Country::Jordan);
|
|
783
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Kazakhstan", QLocale::Country::Kazakhstan);
|
|
784
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Kenya", QLocale::Country::Kenya);
|
|
785
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Kiribati", QLocale::Country::Kiribati);
|
|
786
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Kosovo", QLocale::Country::Kosovo);
|
|
787
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Kuwait", QLocale::Country::Kuwait);
|
|
788
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Kyrgyzstan", QLocale::Country::Kyrgyzstan);
|
|
789
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Laos", QLocale::Country::Laos);
|
|
790
|
+
define_qenum_value_under(rb_cQLocaleCountry, "LatinAmerica", QLocale::Country::LatinAmerica);
|
|
791
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Latvia", QLocale::Country::Latvia);
|
|
792
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Lebanon", QLocale::Country::Lebanon);
|
|
793
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Lesotho", QLocale::Country::Lesotho);
|
|
794
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Liberia", QLocale::Country::Liberia);
|
|
795
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Libya", QLocale::Country::Libya);
|
|
796
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Liechtenstein", QLocale::Country::Liechtenstein);
|
|
797
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Lithuania", QLocale::Country::Lithuania);
|
|
798
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Luxembourg", QLocale::Country::Luxembourg);
|
|
799
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Macao", QLocale::Country::Macao);
|
|
800
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Macedonia", QLocale::Country::Macedonia);
|
|
801
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Madagascar", QLocale::Country::Madagascar);
|
|
802
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Malawi", QLocale::Country::Malawi);
|
|
803
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Malaysia", QLocale::Country::Malaysia);
|
|
804
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Maldives", QLocale::Country::Maldives);
|
|
805
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Mali", QLocale::Country::Mali);
|
|
806
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Malta", QLocale::Country::Malta);
|
|
807
|
+
define_qenum_value_under(rb_cQLocaleCountry, "MarshallIslands", QLocale::Country::MarshallIslands);
|
|
808
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Martinique", QLocale::Country::Martinique);
|
|
809
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Mauritania", QLocale::Country::Mauritania);
|
|
810
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Mauritius", QLocale::Country::Mauritius);
|
|
811
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Mayotte", QLocale::Country::Mayotte);
|
|
812
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Mexico", QLocale::Country::Mexico);
|
|
813
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Micronesia", QLocale::Country::Micronesia);
|
|
814
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Moldova", QLocale::Country::Moldova);
|
|
815
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Monaco", QLocale::Country::Monaco);
|
|
816
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Mongolia", QLocale::Country::Mongolia);
|
|
817
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Montenegro", QLocale::Country::Montenegro);
|
|
818
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Montserrat", QLocale::Country::Montserrat);
|
|
819
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Morocco", QLocale::Country::Morocco);
|
|
820
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Mozambique", QLocale::Country::Mozambique);
|
|
821
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Myanmar", QLocale::Country::Myanmar);
|
|
822
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Namibia", QLocale::Country::Namibia);
|
|
823
|
+
define_qenum_value_under(rb_cQLocaleCountry, "NauruTerritory", QLocale::Country::NauruTerritory);
|
|
824
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Nepal", QLocale::Country::Nepal);
|
|
825
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Netherlands", QLocale::Country::Netherlands);
|
|
826
|
+
define_qenum_value_under(rb_cQLocaleCountry, "NewCaledonia", QLocale::Country::NewCaledonia);
|
|
827
|
+
define_qenum_value_under(rb_cQLocaleCountry, "NewZealand", QLocale::Country::NewZealand);
|
|
828
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Nicaragua", QLocale::Country::Nicaragua);
|
|
829
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Nigeria", QLocale::Country::Nigeria);
|
|
830
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Niger", QLocale::Country::Niger);
|
|
831
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Niue", QLocale::Country::Niue);
|
|
832
|
+
define_qenum_value_under(rb_cQLocaleCountry, "NorfolkIsland", QLocale::Country::NorfolkIsland);
|
|
833
|
+
define_qenum_value_under(rb_cQLocaleCountry, "NorthernMarianaIslands", QLocale::Country::NorthernMarianaIslands);
|
|
834
|
+
define_qenum_value_under(rb_cQLocaleCountry, "NorthKorea", QLocale::Country::NorthKorea);
|
|
835
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Norway", QLocale::Country::Norway);
|
|
836
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Oman", QLocale::Country::Oman);
|
|
837
|
+
define_qenum_value_under(rb_cQLocaleCountry, "OutlyingOceania", QLocale::Country::OutlyingOceania);
|
|
838
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Pakistan", QLocale::Country::Pakistan);
|
|
839
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Palau", QLocale::Country::Palau);
|
|
840
|
+
define_qenum_value_under(rb_cQLocaleCountry, "PalestinianTerritories", QLocale::Country::PalestinianTerritories);
|
|
841
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Panama", QLocale::Country::Panama);
|
|
842
|
+
define_qenum_value_under(rb_cQLocaleCountry, "PapuaNewGuinea", QLocale::Country::PapuaNewGuinea);
|
|
843
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Paraguay", QLocale::Country::Paraguay);
|
|
844
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Peru", QLocale::Country::Peru);
|
|
845
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Philippines", QLocale::Country::Philippines);
|
|
846
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Pitcairn", QLocale::Country::Pitcairn);
|
|
847
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Poland", QLocale::Country::Poland);
|
|
848
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Portugal", QLocale::Country::Portugal);
|
|
849
|
+
define_qenum_value_under(rb_cQLocaleCountry, "PuertoRico", QLocale::Country::PuertoRico);
|
|
850
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Qatar", QLocale::Country::Qatar);
|
|
851
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Reunion", QLocale::Country::Reunion);
|
|
852
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Romania", QLocale::Country::Romania);
|
|
853
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Russia", QLocale::Country::Russia);
|
|
854
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Rwanda", QLocale::Country::Rwanda);
|
|
855
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaintBarthelemy", QLocale::Country::SaintBarthelemy);
|
|
856
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaintHelena", QLocale::Country::SaintHelena);
|
|
857
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaintKittsAndNevis", QLocale::Country::SaintKittsAndNevis);
|
|
858
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaintLucia", QLocale::Country::SaintLucia);
|
|
859
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaintMartin", QLocale::Country::SaintMartin);
|
|
860
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaintPierreAndMiquelon", QLocale::Country::SaintPierreAndMiquelon);
|
|
861
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaintVincentAndGrenadines", QLocale::Country::SaintVincentAndGrenadines);
|
|
862
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Samoa", QLocale::Country::Samoa);
|
|
863
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SanMarino", QLocale::Country::SanMarino);
|
|
864
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaoTomeAndPrincipe", QLocale::Country::SaoTomeAndPrincipe);
|
|
865
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaudiArabia", QLocale::Country::SaudiArabia);
|
|
866
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Senegal", QLocale::Country::Senegal);
|
|
867
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Serbia", QLocale::Country::Serbia);
|
|
868
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Seychelles", QLocale::Country::Seychelles);
|
|
869
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SierraLeone", QLocale::Country::SierraLeone);
|
|
870
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Singapore", QLocale::Country::Singapore);
|
|
871
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SintMaarten", QLocale::Country::SintMaarten);
|
|
872
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Slovakia", QLocale::Country::Slovakia);
|
|
873
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Slovenia", QLocale::Country::Slovenia);
|
|
874
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SolomonIslands", QLocale::Country::SolomonIslands);
|
|
875
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Somalia", QLocale::Country::Somalia);
|
|
876
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SouthAfrica", QLocale::Country::SouthAfrica);
|
|
877
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SouthGeorgiaAndSouthSandwichIslands", QLocale::Country::SouthGeorgiaAndSouthSandwichIslands);
|
|
878
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SouthKorea", QLocale::Country::SouthKorea);
|
|
879
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SouthSudan", QLocale::Country::SouthSudan);
|
|
880
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Spain", QLocale::Country::Spain);
|
|
881
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SriLanka", QLocale::Country::SriLanka);
|
|
882
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Sudan", QLocale::Country::Sudan);
|
|
883
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Suriname", QLocale::Country::Suriname);
|
|
884
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SvalbardAndJanMayen", QLocale::Country::SvalbardAndJanMayen);
|
|
885
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Sweden", QLocale::Country::Sweden);
|
|
886
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Switzerland", QLocale::Country::Switzerland);
|
|
887
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Syria", QLocale::Country::Syria);
|
|
888
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Taiwan", QLocale::Country::Taiwan);
|
|
889
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Tajikistan", QLocale::Country::Tajikistan);
|
|
890
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Tanzania", QLocale::Country::Tanzania);
|
|
891
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Thailand", QLocale::Country::Thailand);
|
|
892
|
+
define_qenum_value_under(rb_cQLocaleCountry, "TimorLeste", QLocale::Country::TimorLeste);
|
|
893
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Togo", QLocale::Country::Togo);
|
|
894
|
+
define_qenum_value_under(rb_cQLocaleCountry, "TokelauTerritory", QLocale::Country::TokelauTerritory);
|
|
895
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Tonga", QLocale::Country::Tonga);
|
|
896
|
+
define_qenum_value_under(rb_cQLocaleCountry, "TrinidadAndTobago", QLocale::Country::TrinidadAndTobago);
|
|
897
|
+
define_qenum_value_under(rb_cQLocaleCountry, "TristanDaCunha", QLocale::Country::TristanDaCunha);
|
|
898
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Tunisia", QLocale::Country::Tunisia);
|
|
899
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Turkey", QLocale::Country::Turkey);
|
|
900
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Turkmenistan", QLocale::Country::Turkmenistan);
|
|
901
|
+
define_qenum_value_under(rb_cQLocaleCountry, "TurksAndCaicosIslands", QLocale::Country::TurksAndCaicosIslands);
|
|
902
|
+
define_qenum_value_under(rb_cQLocaleCountry, "TuvaluTerritory", QLocale::Country::TuvaluTerritory);
|
|
903
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Uganda", QLocale::Country::Uganda);
|
|
904
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Ukraine", QLocale::Country::Ukraine);
|
|
905
|
+
define_qenum_value_under(rb_cQLocaleCountry, "UnitedArabEmirates", QLocale::Country::UnitedArabEmirates);
|
|
906
|
+
define_qenum_value_under(rb_cQLocaleCountry, "UnitedKingdom", QLocale::Country::UnitedKingdom);
|
|
907
|
+
define_qenum_value_under(rb_cQLocaleCountry, "UnitedStatesOutlyingIslands", QLocale::Country::UnitedStatesOutlyingIslands);
|
|
908
|
+
define_qenum_value_under(rb_cQLocaleCountry, "UnitedStates", QLocale::Country::UnitedStates);
|
|
909
|
+
define_qenum_value_under(rb_cQLocaleCountry, "UnitedStatesVirginIslands", QLocale::Country::UnitedStatesVirginIslands);
|
|
910
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Uruguay", QLocale::Country::Uruguay);
|
|
911
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Uzbekistan", QLocale::Country::Uzbekistan);
|
|
912
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Vanuatu", QLocale::Country::Vanuatu);
|
|
913
|
+
define_qenum_value_under(rb_cQLocaleCountry, "VaticanCity", QLocale::Country::VaticanCity);
|
|
914
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Venezuela", QLocale::Country::Venezuela);
|
|
915
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Vietnam", QLocale::Country::Vietnam);
|
|
916
|
+
define_qenum_value_under(rb_cQLocaleCountry, "WallisAndFutuna", QLocale::Country::WallisAndFutuna);
|
|
917
|
+
define_qenum_value_under(rb_cQLocaleCountry, "WesternSahara", QLocale::Country::WesternSahara);
|
|
918
|
+
define_qenum_value_under(rb_cQLocaleCountry, "World", QLocale::Country::World);
|
|
919
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Yemen", QLocale::Country::Yemen);
|
|
920
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Zambia", QLocale::Country::Zambia);
|
|
921
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Zimbabwe", QLocale::Country::Zimbabwe);
|
|
922
|
+
define_qenum_value_under(rb_cQLocaleCountry, "AnyCountry", QLocale::Country::AnyCountry);
|
|
923
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Bonaire", QLocale::Country::Bonaire);
|
|
924
|
+
define_qenum_value_under(rb_cQLocaleCountry, "BosniaAndHerzegowina", QLocale::Country::BosniaAndHerzegowina);
|
|
925
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CuraSao", QLocale::Country::CuraSao);
|
|
926
|
+
define_qenum_value_under(rb_cQLocaleCountry, "CzechRepublic", QLocale::Country::CzechRepublic);
|
|
927
|
+
define_qenum_value_under(rb_cQLocaleCountry, "DemocraticRepublicOfCongo", QLocale::Country::DemocraticRepublicOfCongo);
|
|
928
|
+
define_qenum_value_under(rb_cQLocaleCountry, "DemocraticRepublicOfKorea", QLocale::Country::DemocraticRepublicOfKorea);
|
|
929
|
+
define_qenum_value_under(rb_cQLocaleCountry, "EastTimor", QLocale::Country::EastTimor);
|
|
930
|
+
define_qenum_value_under(rb_cQLocaleCountry, "LatinAmericaAndTheCaribbean", QLocale::Country::LatinAmericaAndTheCaribbean);
|
|
931
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Macau", QLocale::Country::Macau);
|
|
932
|
+
define_qenum_value_under(rb_cQLocaleCountry, "NauruCountry", QLocale::Country::NauruCountry);
|
|
933
|
+
define_qenum_value_under(rb_cQLocaleCountry, "PeoplesRepublicOfCongo", QLocale::Country::PeoplesRepublicOfCongo);
|
|
934
|
+
define_qenum_value_under(rb_cQLocaleCountry, "RepublicOfKorea", QLocale::Country::RepublicOfKorea);
|
|
935
|
+
define_qenum_value_under(rb_cQLocaleCountry, "RussianFederation", QLocale::Country::RussianFederation);
|
|
936
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SaintVincentAndTheGrenadines", QLocale::Country::SaintVincentAndTheGrenadines);
|
|
937
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SouthGeorgiaAndTheSouthSandwichIslands", QLocale::Country::SouthGeorgiaAndTheSouthSandwichIslands);
|
|
938
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SvalbardAndJanMayenIslands", QLocale::Country::SvalbardAndJanMayenIslands);
|
|
939
|
+
define_qenum_value_under(rb_cQLocaleCountry, "Swaziland", QLocale::Country::Swaziland);
|
|
940
|
+
define_qenum_value_under(rb_cQLocaleCountry, "SyrianArabRepublic", QLocale::Country::SyrianArabRepublic);
|
|
941
|
+
define_qenum_value_under(rb_cQLocaleCountry, "TokelauCountry", QLocale::Country::TokelauCountry);
|
|
942
|
+
define_qenum_value_under(rb_cQLocaleCountry, "TuvaluCountry", QLocale::Country::TuvaluCountry);
|
|
943
|
+
define_qenum_value_under(rb_cQLocaleCountry, "UnitedStatesMinorOutlyingIslands", QLocale::Country::UnitedStatesMinorOutlyingIslands);
|
|
944
|
+
define_qenum_value_under(rb_cQLocaleCountry, "VaticanCityState", QLocale::Country::VaticanCityState);
|
|
945
|
+
define_qenum_value_under(rb_cQLocaleCountry, "WallisAndFutunaIslands", QLocale::Country::WallisAndFutunaIslands);
|
|
946
|
+
define_qenum_value_under(rb_cQLocaleCountry, "LastTerritory", QLocale::Country::LastTerritory);
|
|
947
|
+
define_qenum_value_under(rb_cQLocaleCountry, "LastCountry", QLocale::Country::LastCountry);
|
|
948
|
+
|
|
949
|
+
Data_Type<QLocale::MeasurementSystem> rb_cQLocaleMeasurementSystem =
|
|
950
|
+
// RubyQt6::QtCore::QLocale::MeasurementSystem
|
|
951
|
+
define_qenum_under<QLocale::MeasurementSystem>(rb_cQLocale, "MeasurementSystem");
|
|
952
|
+
define_qenum_value_under(rb_cQLocaleMeasurementSystem, "MetricSystem", QLocale::MeasurementSystem::MetricSystem);
|
|
953
|
+
define_qenum_value_under(rb_cQLocaleMeasurementSystem, "ImperialUSSystem", QLocale::MeasurementSystem::ImperialUSSystem);
|
|
954
|
+
define_qenum_value_under(rb_cQLocaleMeasurementSystem, "ImperialUKSystem", QLocale::MeasurementSystem::ImperialUKSystem);
|
|
955
|
+
define_qenum_value_under(rb_cQLocaleMeasurementSystem, "ImperialSystem", QLocale::MeasurementSystem::ImperialSystem);
|
|
956
|
+
|
|
957
|
+
Data_Type<QLocale::FormatType> rb_cQLocaleFormatType =
|
|
958
|
+
// RubyQt6::QtCore::QLocale::FormatType
|
|
959
|
+
define_qenum_under<QLocale::FormatType>(rb_cQLocale, "FormatType");
|
|
960
|
+
define_qenum_value_under(rb_cQLocaleFormatType, "LongFormat", QLocale::FormatType::LongFormat);
|
|
961
|
+
define_qenum_value_under(rb_cQLocaleFormatType, "ShortFormat", QLocale::FormatType::ShortFormat);
|
|
962
|
+
define_qenum_value_under(rb_cQLocaleFormatType, "NarrowFormat", QLocale::FormatType::NarrowFormat);
|
|
963
|
+
|
|
964
|
+
Data_Type<QLocale::NumberOption> rb_cQLocaleNumberOption =
|
|
965
|
+
// RubyQt6::QtCore::QLocale::NumberOption
|
|
966
|
+
define_qenum_under<QLocale::NumberOption>(rb_cQLocale, "NumberOption");
|
|
967
|
+
define_qenum_value_under(rb_cQLocaleNumberOption, "DefaultNumberOptions", QLocale::NumberOption::DefaultNumberOptions);
|
|
968
|
+
define_qenum_value_under(rb_cQLocaleNumberOption, "OmitGroupSeparator", QLocale::NumberOption::OmitGroupSeparator);
|
|
969
|
+
define_qenum_value_under(rb_cQLocaleNumberOption, "RejectGroupSeparator", QLocale::NumberOption::RejectGroupSeparator);
|
|
970
|
+
define_qenum_value_under(rb_cQLocaleNumberOption, "OmitLeadingZeroInExponent", QLocale::NumberOption::OmitLeadingZeroInExponent);
|
|
971
|
+
define_qenum_value_under(rb_cQLocaleNumberOption, "RejectLeadingZeroInExponent", QLocale::NumberOption::RejectLeadingZeroInExponent);
|
|
972
|
+
define_qenum_value_under(rb_cQLocaleNumberOption, "IncludeTrailingZeroesAfterDot", QLocale::NumberOption::IncludeTrailingZeroesAfterDot);
|
|
973
|
+
define_qenum_value_under(rb_cQLocaleNumberOption, "RejectTrailingZeroesAfterDot", QLocale::NumberOption::RejectTrailingZeroesAfterDot);
|
|
974
|
+
|
|
975
|
+
Data_Type<QLocale::FloatingPointPrecisionOption> rb_cQLocaleFloatingPointPrecisionOption =
|
|
976
|
+
// RubyQt6::QtCore::QLocale::FloatingPointPrecisionOption
|
|
977
|
+
define_qenum_under<QLocale::FloatingPointPrecisionOption>(rb_cQLocale, "FloatingPointPrecisionOption");
|
|
978
|
+
define_qenum_value_under(rb_cQLocaleFloatingPointPrecisionOption, "FloatingPointShortest", QLocale::FloatingPointPrecisionOption::FloatingPointShortest);
|
|
979
|
+
|
|
980
|
+
Data_Type<QLocale::TagSeparator> rb_cQLocaleTagSeparator =
|
|
981
|
+
// RubyQt6::QtCore::QLocale::TagSeparator
|
|
982
|
+
define_qenum_under<QLocale::TagSeparator>(rb_cQLocale, "TagSeparator");
|
|
983
|
+
define_qenum_value_under(rb_cQLocaleTagSeparator, "Dash", QLocale::TagSeparator::Dash);
|
|
984
|
+
define_qenum_value_under(rb_cQLocaleTagSeparator, "Underscore", QLocale::TagSeparator::Underscore);
|
|
985
|
+
|
|
986
|
+
Data_Type<QLocale::CurrencySymbolFormat> rb_cQLocaleCurrencySymbolFormat =
|
|
987
|
+
// RubyQt6::QtCore::QLocale::CurrencySymbolFormat
|
|
988
|
+
define_qenum_under<QLocale::CurrencySymbolFormat>(rb_cQLocale, "CurrencySymbolFormat");
|
|
989
|
+
define_qenum_value_under(rb_cQLocaleCurrencySymbolFormat, "CurrencyIsoCode", QLocale::CurrencySymbolFormat::CurrencyIsoCode);
|
|
990
|
+
define_qenum_value_under(rb_cQLocaleCurrencySymbolFormat, "CurrencySymbol", QLocale::CurrencySymbolFormat::CurrencySymbol);
|
|
991
|
+
define_qenum_value_under(rb_cQLocaleCurrencySymbolFormat, "CurrencyDisplayName", QLocale::CurrencySymbolFormat::CurrencyDisplayName);
|
|
992
|
+
|
|
993
|
+
Data_Type<QLocale::DataSizeFormat> rb_cQLocaleDataSizeFormat =
|
|
994
|
+
// RubyQt6::QtCore::QLocale::DataSizeFormat
|
|
995
|
+
define_qenum_under<QLocale::DataSizeFormat>(rb_cQLocale, "DataSizeFormat");
|
|
996
|
+
define_qenum_value_under(rb_cQLocaleDataSizeFormat, "DataSizeBase1000", QLocale::DataSizeFormat::DataSizeBase1000);
|
|
997
|
+
define_qenum_value_under(rb_cQLocaleDataSizeFormat, "DataSizeSIQuantifiers", QLocale::DataSizeFormat::DataSizeSIQuantifiers);
|
|
998
|
+
define_qenum_value_under(rb_cQLocaleDataSizeFormat, "DataSizeIecFormat", QLocale::DataSizeFormat::DataSizeIecFormat);
|
|
999
|
+
define_qenum_value_under(rb_cQLocaleDataSizeFormat, "DataSizeTraditionalFormat", QLocale::DataSizeFormat::DataSizeTraditionalFormat);
|
|
1000
|
+
define_qenum_value_under(rb_cQLocaleDataSizeFormat, "DataSizeSIFormat", QLocale::DataSizeFormat::DataSizeSIFormat);
|
|
1001
|
+
|
|
1002
|
+
Data_Type<QLocale::LanguageCodeType> rb_cQLocaleLanguageCodeType =
|
|
1003
|
+
// RubyQt6::QtCore::QLocale::LanguageCodeType
|
|
1004
|
+
define_qenum_under<QLocale::LanguageCodeType>(rb_cQLocale, "LanguageCodeType");
|
|
1005
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "ISO639Part1", QLocale::LanguageCodeType::ISO639Part1);
|
|
1006
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "ISO639Part2B", QLocale::LanguageCodeType::ISO639Part2B);
|
|
1007
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "ISO639Part2T", QLocale::LanguageCodeType::ISO639Part2T);
|
|
1008
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "ISO639Part3", QLocale::LanguageCodeType::ISO639Part3);
|
|
1009
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "LegacyLanguageCode", QLocale::LanguageCodeType::LegacyLanguageCode);
|
|
1010
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "ISO639Part2", QLocale::LanguageCodeType::ISO639Part2);
|
|
1011
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "ISO639Alpha2", QLocale::LanguageCodeType::ISO639Alpha2);
|
|
1012
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "ISO639Alpha3", QLocale::LanguageCodeType::ISO639Alpha3);
|
|
1013
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "ISO639", QLocale::LanguageCodeType::ISO639);
|
|
1014
|
+
define_qenum_value_under(rb_cQLocaleLanguageCodeType, "AnyLanguageCode", QLocale::LanguageCodeType::AnyLanguageCode);
|
|
1015
|
+
|
|
1016
|
+
Data_Type<QLocale::QuotationStyle> rb_cQLocaleQuotationStyle =
|
|
1017
|
+
// RubyQt6::QtCore::QLocale::QuotationStyle
|
|
1018
|
+
define_qenum_under<QLocale::QuotationStyle>(rb_cQLocale, "QuotationStyle");
|
|
1019
|
+
define_qenum_value_under(rb_cQLocaleQuotationStyle, "StandardQuotation", QLocale::QuotationStyle::StandardQuotation);
|
|
1020
|
+
define_qenum_value_under(rb_cQLocaleQuotationStyle, "AlternateQuotation", QLocale::QuotationStyle::AlternateQuotation);
|
|
1021
|
+
|
|
1022
|
+
Data_Type<QFlags<QLocale::NumberOption>> rb_cQLocaleNumberOptions =
|
|
1023
|
+
// RubyQt6::QtCore::QLocale::NumberOptions
|
|
1024
|
+
define_qflags_under<QLocale::NumberOption>(rb_cQLocale, "NumberOptions");
|
|
1025
|
+
|
|
1026
|
+
Data_Type<QFlags<QLocale::DataSizeFormat>> rb_cQLocaleDataSizeFormats =
|
|
1027
|
+
// RubyQt6::QtCore::QLocale::DataSizeFormats
|
|
1028
|
+
define_qflags_under<QLocale::DataSizeFormat>(rb_cQLocale, "DataSizeFormats");
|
|
1029
|
+
|
|
1030
|
+
Data_Type<QFlags<QLocale::LanguageCodeType>> rb_cQLocaleLanguageCodeTypes =
|
|
1031
|
+
// RubyQt6::QtCore::QLocale::LanguageCodeTypes
|
|
1032
|
+
define_qflags_under<QLocale::LanguageCodeType>(rb_cQLocale, "LanguageCodeTypes");
|
|
1033
|
+
}
|