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,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module RubyQt6
|
|
4
|
+
module QtCore
|
|
5
|
+
# @see https://doc.qt.io/qt-6/qtranslator.html
|
|
6
|
+
class QTranslator < RubyQt6::QtCore::QObject
|
|
7
|
+
# @!parse
|
|
8
|
+
q_object do
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
# @!visibility private
|
|
12
|
+
alias_method :_initialize, :initialize
|
|
13
|
+
|
|
14
|
+
# @param parent [QObject]
|
|
15
|
+
# @return [QTranslator]
|
|
16
|
+
def initialize(parent = nil)
|
|
17
|
+
_initialize(parent)
|
|
18
|
+
_take_ownership_from_ruby(self)
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
# @!visibility private
|
|
22
|
+
def load(*args)
|
|
23
|
+
_load(*args.map { |arg| T.to_qstr(arg) })
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module RubyQt6
|
|
4
|
+
module QtCore
|
|
5
|
+
# @see https://doc.qt.io/qt-6/qurl.html
|
|
6
|
+
class QUrl
|
|
7
|
+
# @!parse class AceProcessingOption ; end
|
|
8
|
+
# @!parse class AceProcessingOptions ; end
|
|
9
|
+
# @!parse class ComponentFormattingOption ; end
|
|
10
|
+
# @!parse class ComponentFormattingOptions; end
|
|
11
|
+
# @!parse class FormattingOptions ; end
|
|
12
|
+
# @!parse class ParsingMode ; end
|
|
13
|
+
# @!parse class UrlFormattingOption ; end
|
|
14
|
+
# @!parse class UserInputResolutionOption ; end
|
|
15
|
+
# @!parse class UserInputResolutionOptions; end
|
|
16
|
+
rubyqt6_declare_enum_under QUrl, QUrl::AceProcessingOption
|
|
17
|
+
rubyqt6_declare_enum_under QUrl, QUrl::ComponentFormattingOption
|
|
18
|
+
rubyqt6_declare_enum_under QUrl, QUrl::ParsingMode
|
|
19
|
+
rubyqt6_declare_enum_under QUrl, QUrl::UrlFormattingOption
|
|
20
|
+
rubyqt6_declare_enum_under QUrl, QUrl::UserInputResolutionOption
|
|
21
|
+
rubyqt6_declare_qflags QUrl::AceProcessingOptions, QUrl::AceProcessingOption
|
|
22
|
+
rubyqt6_declare_qflags QUrl::ComponentFormattingOptions, QUrl::ComponentFormattingOption
|
|
23
|
+
rubyqt6_declare_qflags QUrl::FormattingOptions, QUrl::UrlFormattingOption
|
|
24
|
+
rubyqt6_declare_qflags QUrl::UserInputResolutionOptions, QUrl::UserInputResolutionOption
|
|
25
|
+
|
|
26
|
+
# @!visibility private
|
|
27
|
+
alias_method :_initialize, :initialize
|
|
28
|
+
|
|
29
|
+
# @return [QUrl]
|
|
30
|
+
#
|
|
31
|
+
# @overload initialize
|
|
32
|
+
#
|
|
33
|
+
# @overload initialize(url)
|
|
34
|
+
# @param url [String, QString]
|
|
35
|
+
#
|
|
36
|
+
# @overload initialize(url, mode)
|
|
37
|
+
# @param url [String, QString]
|
|
38
|
+
# @param mode [QUrl::ParsingMode]
|
|
39
|
+
def initialize(*args)
|
|
40
|
+
T.args_nth_to_qstr(args, 0)
|
|
41
|
+
_initialize(*args)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
# @!visibility private
|
|
45
|
+
def to_s
|
|
46
|
+
to_string.to_s
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# @!visibility private
|
|
50
|
+
def inspect
|
|
51
|
+
T.inspect_struct(self, str: to_s)
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
end
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module RubyQt6
|
|
4
|
+
module QtCore
|
|
5
|
+
# @see https://doc.qt.io/qt-6/quuid.html
|
|
6
|
+
class QUuid
|
|
7
|
+
include Comparable
|
|
8
|
+
|
|
9
|
+
# @!parse class StringFormat; end
|
|
10
|
+
# @!parse class Variant ; end
|
|
11
|
+
# @!parse class Version ; end
|
|
12
|
+
rubyqt6_declare_enum_under QUuid, QUuid::StringFormat
|
|
13
|
+
rubyqt6_declare_enum_under QUuid, QUuid::Variant
|
|
14
|
+
rubyqt6_declare_enum_under QUuid, QUuid::Version
|
|
15
|
+
|
|
16
|
+
# @!visibility private
|
|
17
|
+
alias_method :_initialize, :initialize
|
|
18
|
+
|
|
19
|
+
# @return [QUuid]
|
|
20
|
+
#
|
|
21
|
+
# @overload initialize
|
|
22
|
+
#
|
|
23
|
+
# @overload initialize(text)
|
|
24
|
+
# @param text [String, QString, QAnyStringView]
|
|
25
|
+
def initialize(*args)
|
|
26
|
+
T.args_nth_to_qanystringview(args, 0)
|
|
27
|
+
_initialize(*args)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# @!visibility private
|
|
31
|
+
def to_s
|
|
32
|
+
to_string(QUuid::StringFormat::WithoutBraces).to_s
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# @!visibility private
|
|
36
|
+
def <=>(other)
|
|
37
|
+
return nil unless other.is_a?(QtCore::QUuid)
|
|
38
|
+
self.class._operator_compare(self, other)
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# @!visibility private
|
|
42
|
+
def inspect
|
|
43
|
+
T.inspect_struct(self, str: to_s)
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module RubyQt6
|
|
4
|
+
module QtCore
|
|
5
|
+
# @see https://doc.qt.io/qt-6/qvariant.html
|
|
6
|
+
class QVariant
|
|
7
|
+
# @!visibility private
|
|
8
|
+
def self.new(object, qmetatype = nil)
|
|
9
|
+
from_object(object, qmetatype)
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
# @!visibility private
|
|
13
|
+
def value
|
|
14
|
+
self.class.__send__(:to_object, self)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
# @!visibility private
|
|
18
|
+
def inspect
|
|
19
|
+
T.inspect_struct(self, type: type_name)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
# @!visibility private
|
|
23
|
+
def self.to_qobject(qvariant)
|
|
24
|
+
T.bando_qobject_cast(_to_qobject(qvariant))
|
|
25
|
+
end
|
|
26
|
+
private_class_method :to_qobject
|
|
27
|
+
|
|
28
|
+
# @!parse
|
|
29
|
+
register(QtCore::QMetaType::Type::Bool, method(:from_bool), method(:to_bool), from: [TrueClass, FalseClass])
|
|
30
|
+
register(QtCore::QMetaType::Type::Int, method(:from_int), method(:to_int), from: Integer)
|
|
31
|
+
register(QtCore::QMetaType::Type::Double, method(:from_double), method(:to_double), from: Float)
|
|
32
|
+
register(QtCore::QMetaType::Type::QString, method(:from_qstring), method(:to_qstring), from: [String, QtCore::QString])
|
|
33
|
+
register(QtCore::QMetaType::Type::QDateTime, method(:from_qdatetime), method(:to_qdatetime), from: QtCore::QDateTime)
|
|
34
|
+
register(QtCore::QMetaType::Type::QDate, method(:from_qdate), method(:to_qdate), from: QtCore::QDate)
|
|
35
|
+
register(QtCore::QMetaType::Type::QTime, method(:from_qtime), method(:to_qtime), from: QtCore::QTime)
|
|
36
|
+
register(QtCore::QMetaType::Type::QLine, method(:from_qline), method(:to_qline), from: QtCore::QLine)
|
|
37
|
+
register(QtCore::QMetaType::Type::QLineF, method(:from_qlinef), method(:to_qlinef), from: QtCore::QLineF)
|
|
38
|
+
register(QtCore::QMetaType::Type::QPoint, method(:from_qpoint), method(:to_qpoint), from: QtCore::QPoint)
|
|
39
|
+
register(QtCore::QMetaType::Type::QPointF, method(:from_qpointf), method(:to_qpointf), from: QtCore::QPointF)
|
|
40
|
+
register(QtCore::QMetaType::Type::QRect, method(:from_qrect), method(:to_qrect), from: QtCore::QRect)
|
|
41
|
+
register(QtCore::QMetaType::Type::QRectF, method(:from_qrectf), method(:to_qrectf), from: QtCore::QRectF)
|
|
42
|
+
register(QtCore::QMetaType::Type::QSize, method(:from_qsize), method(:to_qsize), from: QtCore::QSize)
|
|
43
|
+
register(QtCore::QMetaType::Type::QSizeF, method(:from_qsizef), method(:to_qsizef), from: QtCore::QSizeF)
|
|
44
|
+
register(QtCore::QMetaType::Type::QStringList, method(:from_qstringlist), method(:to_qstringlist), from: QtCore::QStringList)
|
|
45
|
+
register(QtCore::QMetaType::Type::QObjectStar, method(:from_qobject), method(:to_qobject), from: QtCore::QObject)
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
data/lib/qt6/qtcore.rb
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "configuration"
|
|
4
|
+
require_relative "ducktyping"
|
|
5
|
+
|
|
6
|
+
require_relative "refinements/kernel"
|
|
7
|
+
require_relative "refinements/string"
|
|
8
|
+
|
|
9
|
+
require_relative "qtcore/private/_nodoc"
|
|
10
|
+
require_relative "qtcore/private/inflector"
|
|
11
|
+
require_relative "qtcore/private/metamethod"
|
|
12
|
+
require_relative "qtcore/private/metaobject"
|
|
13
|
+
require_relative "qtcore/private/signal"
|
|
14
|
+
require_relative "qtcore/private/signalmanager"
|
|
15
|
+
|
|
16
|
+
require_relative "qtcore/version"
|
|
17
|
+
require_relative "qtcore/qtcore"
|
|
18
|
+
require_relative "qtcore/qtcoreversion"
|
|
19
|
+
require_relative "qtcore/qt/qvariant"
|
|
20
|
+
require_relative "qtcore/qt"
|
|
21
|
+
|
|
22
|
+
require_relative "qtcore/qmetaclassinfo"
|
|
23
|
+
require_relative "qtcore/qmetamethod"
|
|
24
|
+
require_relative "qtcore/qmetamethodbuilder"
|
|
25
|
+
require_relative "qtcore/qmetaobject"
|
|
26
|
+
require_relative "qtcore/qmetaobjectbuilder"
|
|
27
|
+
require_relative "qtcore/qmetatype"
|
|
28
|
+
|
|
29
|
+
require_relative "qtcore/qanystringview"
|
|
30
|
+
require_relative "qtcore/qbytearray"
|
|
31
|
+
require_relative "qtcore/qchar"
|
|
32
|
+
require_relative "qtcore/qstring"
|
|
33
|
+
require_relative "qtcore/qiodevicebase"
|
|
34
|
+
|
|
35
|
+
require_relative "qtcore/qbasictimer"
|
|
36
|
+
require_relative "qtcore/qbool"
|
|
37
|
+
require_relative "qtcore/qevent"
|
|
38
|
+
require_relative "qtcore/qchildevent"
|
|
39
|
+
require_relative "qtcore/qdynamicpropertychangeevent"
|
|
40
|
+
require_relative "qtcore/qtimerevent"
|
|
41
|
+
require_relative "qtcore/qdatetime"
|
|
42
|
+
require_relative "qtcore/qdate"
|
|
43
|
+
require_relative "qtcore/qtime"
|
|
44
|
+
require_relative "qtcore/qdir"
|
|
45
|
+
require_relative "qtcore/qfileinfo"
|
|
46
|
+
require_relative "qtcore/qitemselectionrange"
|
|
47
|
+
require_relative "qtcore/qlibraryinfo"
|
|
48
|
+
require_relative "qtcore/qline"
|
|
49
|
+
require_relative "qtcore/qlinef"
|
|
50
|
+
require_relative "qtcore/qlocale"
|
|
51
|
+
require_relative "qtcore/qmargins"
|
|
52
|
+
require_relative "qtcore/qmarginsf"
|
|
53
|
+
require_relative "qtcore/qmodelindex"
|
|
54
|
+
require_relative "qtcore/qpoint"
|
|
55
|
+
require_relative "qtcore/qpointf"
|
|
56
|
+
require_relative "qtcore/qrect"
|
|
57
|
+
require_relative "qtcore/qrectf"
|
|
58
|
+
require_relative "qtcore/qregularexpression"
|
|
59
|
+
require_relative "qtcore/qregularexpressionmatch"
|
|
60
|
+
require_relative "qtcore/qresource"
|
|
61
|
+
require_relative "qtcore/qsize"
|
|
62
|
+
require_relative "qtcore/qsizef"
|
|
63
|
+
require_relative "qtcore/qtextstream"
|
|
64
|
+
require_relative "qtcore/qurl"
|
|
65
|
+
require_relative "qtcore/quuid"
|
|
66
|
+
require_relative "qtcore/qvariant"
|
|
67
|
+
|
|
68
|
+
require_relative "qtcore/qobject"
|
|
69
|
+
require_relative "qtcore/qabstractitemmodel"
|
|
70
|
+
require_relative "qtcore/qabstractlistmodel"
|
|
71
|
+
require_relative "qtcore/qabstracttablemodel"
|
|
72
|
+
require_relative "qtcore/qcoreapplication"
|
|
73
|
+
require_relative "qtcore/qiodevice"
|
|
74
|
+
require_relative "qtcore/qfiledevice"
|
|
75
|
+
require_relative "qtcore/qfile"
|
|
76
|
+
require_relative "qtcore/qitemselectionmodel"
|
|
77
|
+
require_relative "qtcore/qsettings"
|
|
78
|
+
require_relative "qtcore/qsignalmapper"
|
|
79
|
+
require_relative "qtcore/qtimer"
|
|
80
|
+
require_relative "qtcore/qtranslator"
|
|
81
|
+
|
|
82
|
+
require_relative "qtcore/qitemselection"
|
|
83
|
+
require_relative "qtcore/qstringlist"
|
|
84
|
+
|
|
85
|
+
require_relative "bando/dsl"
|
|
86
|
+
require_relative "bando/qobject"
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# @!visibility private
|
|
4
|
+
module Kernel
|
|
5
|
+
def rubyqt6_declare_enum_under(mod, enum)
|
|
6
|
+
int2str = {}
|
|
7
|
+
enum.constants.each do |name|
|
|
8
|
+
const = enum.const_get(name)
|
|
9
|
+
int2str[const.to_i] = name.to_s
|
|
10
|
+
mod.const_set(name, const)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
enum.define_method(:to_s) { int2str[to_i] || "" }
|
|
14
|
+
enum.define_method(:inspect) { RubyQt6::T.inspect_struct_enum(self, int: to_i, str: to_s) }
|
|
15
|
+
|
|
16
|
+
enum.include(Comparable)
|
|
17
|
+
enum.define_method(:to_int) { to_i }
|
|
18
|
+
enum.define_method(:<=>) { |other| other.respond_to?(:to_int) ? to_int <=> other.to_int : nil }
|
|
19
|
+
|
|
20
|
+
qmetatype = enum._qvariant_register_metatype
|
|
21
|
+
RubyQt6::QtCore::QVariant.register(qmetatype, enum.method(:_qvariant_from_value), enum.method(:_qvariant_to_value), from: enum)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def rubyqt6_declare_qflags(flags, enum)
|
|
25
|
+
enum.define_method(:to_qflags) { flags.new(self) }
|
|
26
|
+
enum.define_method(:~) { ~flags.new(self) }
|
|
27
|
+
enum.define_method(:&) { |other| flags.new(self) & other }
|
|
28
|
+
enum.define_method(:^) { |other| flags.new(self) ^ other }
|
|
29
|
+
enum.define_method(:|) { |other| flags.new(self) | other }
|
|
30
|
+
|
|
31
|
+
flags.define_method(:to_qflags) { self }
|
|
32
|
+
flags.define_method(:inspect) { RubyQt6::T.inspect_struct_enum(self, int: to_i) }
|
|
33
|
+
|
|
34
|
+
flags.include(Comparable)
|
|
35
|
+
flags.define_method(:to_int) { to_i }
|
|
36
|
+
flags.define_method(:<=>) { |other| other.respond_to?(:to_int) ? to_int <=> other.to_int : nil }
|
|
37
|
+
end
|
|
38
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ruby-qt6-qtcore
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- John Doe
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: ruby-qt6-rice
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - '='
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 1.0.0
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - '='
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 1.0.0
|
|
26
|
+
description: Ruby Bindings for Qt Core.
|
|
27
|
+
email:
|
|
28
|
+
- johndoe@example.com
|
|
29
|
+
executables: []
|
|
30
|
+
extensions:
|
|
31
|
+
- ext/qt6/qtcore/extconf.rb
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- ".rspec"
|
|
35
|
+
- ".rubocop.yml"
|
|
36
|
+
- LICENSE
|
|
37
|
+
- README.md
|
|
38
|
+
- Rakefile
|
|
39
|
+
- ext/qt6/qtcore/bando-qobject-rb.cpp
|
|
40
|
+
- ext/qt6/qtcore/bando-qobject-rb.hpp
|
|
41
|
+
- ext/qt6/qtcore/bando-rb.cpp
|
|
42
|
+
- ext/qt6/qtcore/bando-rb.hpp
|
|
43
|
+
- ext/qt6/qtcore/extconf.rb
|
|
44
|
+
- ext/qt6/qtcore/qabstractitemmodel-rb.cpp
|
|
45
|
+
- ext/qt6/qtcore/qabstractitemmodel-rb.hpp
|
|
46
|
+
- ext/qt6/qtcore/qanystringview-rb.cpp
|
|
47
|
+
- ext/qt6/qtcore/qanystringview-rb.hpp
|
|
48
|
+
- ext/qt6/qtcore/qbasictimer-rb.cpp
|
|
49
|
+
- ext/qt6/qtcore/qbasictimer-rb.hpp
|
|
50
|
+
- ext/qt6/qtcore/qbytearray-rb.cpp
|
|
51
|
+
- ext/qt6/qtcore/qbytearray-rb.hpp
|
|
52
|
+
- ext/qt6/qtcore/qchar-rb.cpp
|
|
53
|
+
- ext/qt6/qtcore/qchar-rb.hpp
|
|
54
|
+
- ext/qt6/qtcore/qcoreapplication-rb.cpp
|
|
55
|
+
- ext/qt6/qtcore/qcoreapplication-rb.hpp
|
|
56
|
+
- ext/qt6/qtcore/qcoreevent-rb.cpp
|
|
57
|
+
- ext/qt6/qtcore/qcoreevent-rb.hpp
|
|
58
|
+
- ext/qt6/qtcore/qdatetime-rb.cpp
|
|
59
|
+
- ext/qt6/qtcore/qdatetime-rb.hpp
|
|
60
|
+
- ext/qt6/qtcore/qdir-rb.cpp
|
|
61
|
+
- ext/qt6/qtcore/qdir-rb.hpp
|
|
62
|
+
- ext/qt6/qtcore/qfile-rb.cpp
|
|
63
|
+
- ext/qt6/qtcore/qfile-rb.hpp
|
|
64
|
+
- ext/qt6/qtcore/qfiledevice-rb.cpp
|
|
65
|
+
- ext/qt6/qtcore/qfiledevice-rb.hpp
|
|
66
|
+
- ext/qt6/qtcore/qfileinfo-rb.cpp
|
|
67
|
+
- ext/qt6/qtcore/qfileinfo-rb.hpp
|
|
68
|
+
- ext/qt6/qtcore/qiodevice-rb.cpp
|
|
69
|
+
- ext/qt6/qtcore/qiodevice-rb.hpp
|
|
70
|
+
- ext/qt6/qtcore/qiodevicebase-rb.cpp
|
|
71
|
+
- ext/qt6/qtcore/qiodevicebase-rb.hpp
|
|
72
|
+
- ext/qt6/qtcore/qitemselection-rb.cpp
|
|
73
|
+
- ext/qt6/qtcore/qitemselection-rb.hpp
|
|
74
|
+
- ext/qt6/qtcore/qitemselectionmodel-rb.cpp
|
|
75
|
+
- ext/qt6/qtcore/qitemselectionmodel-rb.hpp
|
|
76
|
+
- ext/qt6/qtcore/qlibraryinfo-rb.cpp
|
|
77
|
+
- ext/qt6/qtcore/qlibraryinfo-rb.hpp
|
|
78
|
+
- ext/qt6/qtcore/qline-rb.cpp
|
|
79
|
+
- ext/qt6/qtcore/qline-rb.hpp
|
|
80
|
+
- ext/qt6/qtcore/qlocale-rb.cpp
|
|
81
|
+
- ext/qt6/qtcore/qlocale-rb.hpp
|
|
82
|
+
- ext/qt6/qtcore/qmargins-rb.cpp
|
|
83
|
+
- ext/qt6/qtcore/qmargins-rb.hpp
|
|
84
|
+
- ext/qt6/qtcore/qmetaclassinfo-rb.cpp
|
|
85
|
+
- ext/qt6/qtcore/qmetaclassinfo-rb.hpp
|
|
86
|
+
- ext/qt6/qtcore/qmetamethod-rb.cpp
|
|
87
|
+
- ext/qt6/qtcore/qmetamethod-rb.hpp
|
|
88
|
+
- ext/qt6/qtcore/qmetaobject-rb.cpp
|
|
89
|
+
- ext/qt6/qtcore/qmetaobject-rb.hpp
|
|
90
|
+
- ext/qt6/qtcore/qmetaobjectbuilder-rb.cpp
|
|
91
|
+
- ext/qt6/qtcore/qmetaobjectbuilder-rb.hpp
|
|
92
|
+
- ext/qt6/qtcore/qmetatype-rb.cpp
|
|
93
|
+
- ext/qt6/qtcore/qmetatype-rb.hpp
|
|
94
|
+
- ext/qt6/qtcore/qmodelindex-rb.cpp
|
|
95
|
+
- ext/qt6/qtcore/qmodelindex-rb.hpp
|
|
96
|
+
- ext/qt6/qtcore/qobject-rb.cpp
|
|
97
|
+
- ext/qt6/qtcore/qobject-rb.hpp
|
|
98
|
+
- ext/qt6/qtcore/qpoint-rb.cpp
|
|
99
|
+
- ext/qt6/qtcore/qpoint-rb.hpp
|
|
100
|
+
- ext/qt6/qtcore/qrect-rb.cpp
|
|
101
|
+
- ext/qt6/qtcore/qrect-rb.hpp
|
|
102
|
+
- ext/qt6/qtcore/qregularexpression-rb.cpp
|
|
103
|
+
- ext/qt6/qtcore/qregularexpression-rb.hpp
|
|
104
|
+
- ext/qt6/qtcore/qresource-rb.cpp
|
|
105
|
+
- ext/qt6/qtcore/qresource-rb.hpp
|
|
106
|
+
- ext/qt6/qtcore/qsettings-rb.cpp
|
|
107
|
+
- ext/qt6/qtcore/qsettings-rb.hpp
|
|
108
|
+
- ext/qt6/qtcore/qsignalmapper-rb.cpp
|
|
109
|
+
- ext/qt6/qtcore/qsignalmapper-rb.hpp
|
|
110
|
+
- ext/qt6/qtcore/qsize-rb.cpp
|
|
111
|
+
- ext/qt6/qtcore/qsize-rb.hpp
|
|
112
|
+
- ext/qt6/qtcore/qstring-rb.cpp
|
|
113
|
+
- ext/qt6/qtcore/qstring-rb.hpp
|
|
114
|
+
- ext/qt6/qtcore/qstringlist-rb.cpp
|
|
115
|
+
- ext/qt6/qtcore/qstringlist-rb.hpp
|
|
116
|
+
- ext/qt6/qtcore/qt-enum-af-rb.cpp
|
|
117
|
+
- ext/qt6/qtcore/qt-enum-af-rb.hpp
|
|
118
|
+
- ext/qt6/qtcore/qt-enum-gl-rb.cpp
|
|
119
|
+
- ext/qt6/qtcore/qt-enum-gl-rb.hpp
|
|
120
|
+
- ext/qt6/qtcore/qt-enum-mr-rb.cpp
|
|
121
|
+
- ext/qt6/qtcore/qt-enum-mr-rb.hpp
|
|
122
|
+
- ext/qt6/qtcore/qt-enum-sz-rb.cpp
|
|
123
|
+
- ext/qt6/qtcore/qt-enum-sz-rb.hpp
|
|
124
|
+
- ext/qt6/qtcore/qt-flags-al-rb.cpp
|
|
125
|
+
- ext/qt6/qtcore/qt-flags-al-rb.hpp
|
|
126
|
+
- ext/qt6/qtcore/qt-flags-mz-rb.cpp
|
|
127
|
+
- ext/qt6/qtcore/qt-flags-mz-rb.hpp
|
|
128
|
+
- ext/qt6/qtcore/qtcore-rb.cpp
|
|
129
|
+
- ext/qt6/qtcore/qtcore-rb.hpp
|
|
130
|
+
- ext/qt6/qtcore/qtcoreversion-rb.cpp
|
|
131
|
+
- ext/qt6/qtcore/qtcoreversion-rb.hpp
|
|
132
|
+
- ext/qt6/qtcore/qtextstream-rb.cpp
|
|
133
|
+
- ext/qt6/qtcore/qtextstream-rb.hpp
|
|
134
|
+
- ext/qt6/qtcore/qtimer-rb.cpp
|
|
135
|
+
- ext/qt6/qtcore/qtimer-rb.hpp
|
|
136
|
+
- ext/qt6/qtcore/qtranslator-rb.cpp
|
|
137
|
+
- ext/qt6/qtcore/qtranslator-rb.hpp
|
|
138
|
+
- ext/qt6/qtcore/qurl-rb.cpp
|
|
139
|
+
- ext/qt6/qtcore/qurl-rb.hpp
|
|
140
|
+
- ext/qt6/qtcore/quuid-rb.cpp
|
|
141
|
+
- ext/qt6/qtcore/quuid-rb.hpp
|
|
142
|
+
- ext/qt6/qtcore/qvariant-rb.cpp
|
|
143
|
+
- ext/qt6/qtcore/qvariant-rb.hpp
|
|
144
|
+
- ext/qt6/qtcore/t-qtcore-rb.cpp
|
|
145
|
+
- ext/qt6/qtcore/t-qtcore-rb.hpp
|
|
146
|
+
- lib/qt6/bando/dsl.rb
|
|
147
|
+
- lib/qt6/bando/qobject.rb
|
|
148
|
+
- lib/qt6/configuration.rb
|
|
149
|
+
- lib/qt6/ducktyping.rb
|
|
150
|
+
- lib/qt6/qtcore.rb
|
|
151
|
+
- lib/qt6/qtcore/private/_nodoc.rb
|
|
152
|
+
- lib/qt6/qtcore/private/inflector.rb
|
|
153
|
+
- lib/qt6/qtcore/private/metamethod.rb
|
|
154
|
+
- lib/qt6/qtcore/private/metaobject.rb
|
|
155
|
+
- lib/qt6/qtcore/private/signal.rb
|
|
156
|
+
- lib/qt6/qtcore/private/signalmanager.rb
|
|
157
|
+
- lib/qt6/qtcore/qabstractitemmodel.rb
|
|
158
|
+
- lib/qt6/qtcore/qabstractlistmodel.rb
|
|
159
|
+
- lib/qt6/qtcore/qabstracttablemodel.rb
|
|
160
|
+
- lib/qt6/qtcore/qanystringview.rb
|
|
161
|
+
- lib/qt6/qtcore/qbasictimer.rb
|
|
162
|
+
- lib/qt6/qtcore/qbool.rb
|
|
163
|
+
- lib/qt6/qtcore/qbytearray.rb
|
|
164
|
+
- lib/qt6/qtcore/qchar.rb
|
|
165
|
+
- lib/qt6/qtcore/qchildevent.rb
|
|
166
|
+
- lib/qt6/qtcore/qcoreapplication.rb
|
|
167
|
+
- lib/qt6/qtcore/qdate.rb
|
|
168
|
+
- lib/qt6/qtcore/qdatetime.rb
|
|
169
|
+
- lib/qt6/qtcore/qdir.rb
|
|
170
|
+
- lib/qt6/qtcore/qdynamicpropertychangeevent.rb
|
|
171
|
+
- lib/qt6/qtcore/qevent.rb
|
|
172
|
+
- lib/qt6/qtcore/qfile.rb
|
|
173
|
+
- lib/qt6/qtcore/qfiledevice.rb
|
|
174
|
+
- lib/qt6/qtcore/qfileinfo.rb
|
|
175
|
+
- lib/qt6/qtcore/qiodevice.rb
|
|
176
|
+
- lib/qt6/qtcore/qiodevicebase.rb
|
|
177
|
+
- lib/qt6/qtcore/qitemselection.rb
|
|
178
|
+
- lib/qt6/qtcore/qitemselectionmodel.rb
|
|
179
|
+
- lib/qt6/qtcore/qitemselectionrange.rb
|
|
180
|
+
- lib/qt6/qtcore/qlibraryinfo.rb
|
|
181
|
+
- lib/qt6/qtcore/qline.rb
|
|
182
|
+
- lib/qt6/qtcore/qlinef.rb
|
|
183
|
+
- lib/qt6/qtcore/qlocale.rb
|
|
184
|
+
- lib/qt6/qtcore/qmargins.rb
|
|
185
|
+
- lib/qt6/qtcore/qmarginsf.rb
|
|
186
|
+
- lib/qt6/qtcore/qmetaclassinfo.rb
|
|
187
|
+
- lib/qt6/qtcore/qmetamethod.rb
|
|
188
|
+
- lib/qt6/qtcore/qmetamethodbuilder.rb
|
|
189
|
+
- lib/qt6/qtcore/qmetaobject.rb
|
|
190
|
+
- lib/qt6/qtcore/qmetaobjectbuilder.rb
|
|
191
|
+
- lib/qt6/qtcore/qmetatype.rb
|
|
192
|
+
- lib/qt6/qtcore/qmodelindex.rb
|
|
193
|
+
- lib/qt6/qtcore/qobject.rb
|
|
194
|
+
- lib/qt6/qtcore/qpoint.rb
|
|
195
|
+
- lib/qt6/qtcore/qpointf.rb
|
|
196
|
+
- lib/qt6/qtcore/qrect.rb
|
|
197
|
+
- lib/qt6/qtcore/qrectf.rb
|
|
198
|
+
- lib/qt6/qtcore/qregularexpression.rb
|
|
199
|
+
- lib/qt6/qtcore/qregularexpressionmatch.rb
|
|
200
|
+
- lib/qt6/qtcore/qresource.rb
|
|
201
|
+
- lib/qt6/qtcore/qsettings.rb
|
|
202
|
+
- lib/qt6/qtcore/qsignalmapper.rb
|
|
203
|
+
- lib/qt6/qtcore/qsize.rb
|
|
204
|
+
- lib/qt6/qtcore/qsizef.rb
|
|
205
|
+
- lib/qt6/qtcore/qstring.rb
|
|
206
|
+
- lib/qt6/qtcore/qstringlist.rb
|
|
207
|
+
- lib/qt6/qtcore/qt.rb
|
|
208
|
+
- lib/qt6/qtcore/qt/qvariant.rb
|
|
209
|
+
- lib/qt6/qtcore/qtcoreversion.rb
|
|
210
|
+
- lib/qt6/qtcore/qtextstream.rb
|
|
211
|
+
- lib/qt6/qtcore/qtime.rb
|
|
212
|
+
- lib/qt6/qtcore/qtimer.rb
|
|
213
|
+
- lib/qt6/qtcore/qtimerevent.rb
|
|
214
|
+
- lib/qt6/qtcore/qtranslator.rb
|
|
215
|
+
- lib/qt6/qtcore/qurl.rb
|
|
216
|
+
- lib/qt6/qtcore/quuid.rb
|
|
217
|
+
- lib/qt6/qtcore/qvariant.rb
|
|
218
|
+
- lib/qt6/qtcore/version.rb
|
|
219
|
+
- lib/qt6/refinements/kernel.rb
|
|
220
|
+
- lib/qt6/refinements/string.rb
|
|
221
|
+
homepage: https://github.com/souk4711/ruby-qt6/qtcore
|
|
222
|
+
licenses: []
|
|
223
|
+
metadata:
|
|
224
|
+
homepage_uri: https://github.com/souk4711/ruby-qt6/qtcore
|
|
225
|
+
source_code_uri: https://github.com/souk4711/ruby-qt6/qtcore
|
|
226
|
+
changelog_uri: https://github.com/souk4711/ruby-qt6/qtcore
|
|
227
|
+
rdoc_options: []
|
|
228
|
+
require_paths:
|
|
229
|
+
- lib
|
|
230
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
231
|
+
requirements:
|
|
232
|
+
- - ">="
|
|
233
|
+
- !ruby/object:Gem::Version
|
|
234
|
+
version: 3.1.0
|
|
235
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
236
|
+
requirements:
|
|
237
|
+
- - ">="
|
|
238
|
+
- !ruby/object:Gem::Version
|
|
239
|
+
version: '0'
|
|
240
|
+
requirements: []
|
|
241
|
+
rubygems_version: 3.6.9
|
|
242
|
+
specification_version: 4
|
|
243
|
+
summary: Ruby Bindings for Qt Core.
|
|
244
|
+
test_files: []
|