ruby-qt6-qtcore 2.0.0 → 2.1.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.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/ext/qt6/qtcore/qeventloop-rb.cpp +33 -0
  3. data/ext/qt6/qtcore/qeventloop-rb.hpp +5 -0
  4. data/ext/qt6/qtcore/qlocale-rb.cpp +0 -16
  5. data/ext/qt6/qtcore/qobject-rb.cpp +1 -0
  6. data/ext/qt6/qtcore/qprocess-rb.cpp +123 -0
  7. data/ext/qt6/qtcore/qprocess-rb.hpp +5 -0
  8. data/ext/qt6/qtcore/qprocessenvironment-rb.cpp +32 -0
  9. data/ext/qt6/qtcore/qprocessenvironment-rb.hpp +5 -0
  10. data/ext/qt6/qtcore/qregularexpression-rb.cpp +1 -7
  11. data/ext/qt6/qtcore/qtcore-rb.cpp +8 -0
  12. data/ext/qt6/qtcore/qtimer-rb.cpp +0 -2
  13. data/ext/qt6/qtcore/qurlquery-rb.cpp +33 -0
  14. data/ext/qt6/qtcore/qurlquery-rb.hpp +5 -0
  15. data/ext/qt6/qtcore/t-qtcore-rb.cpp +4 -0
  16. data/lib/qt6/bando/dsl.rb +2 -2
  17. data/lib/qt6/configuration.rb +4 -9
  18. data/lib/qt6/ducktyping.rb +14 -14
  19. data/lib/qt6/qtcore/private/metaobject.rb +2 -2
  20. data/lib/qt6/qtcore/private/signalmanager.rb +4 -4
  21. data/lib/qt6/qtcore/qdate.rb +1 -1
  22. data/lib/qt6/qtcore/qdatetime.rb +1 -1
  23. data/lib/qt6/qtcore/qdir.rb +5 -0
  24. data/lib/qt6/qtcore/qeventloop.rb +17 -0
  25. data/lib/qt6/qtcore/qfile.rb +5 -0
  26. data/lib/qt6/qtcore/qfileinfo.rb +5 -0
  27. data/lib/qt6/qtcore/qiodevice.rb +2 -2
  28. data/lib/qt6/qtcore/qitemselection.rb +1 -1
  29. data/lib/qt6/qtcore/qline.rb +1 -1
  30. data/lib/qt6/qtcore/qlinef.rb +1 -1
  31. data/lib/qt6/qtcore/qmargins.rb +1 -1
  32. data/lib/qt6/qtcore/qmarginsf.rb +1 -1
  33. data/lib/qt6/qtcore/qobject.rb +5 -5
  34. data/lib/qt6/qtcore/qpoint.rb +1 -1
  35. data/lib/qt6/qtcore/qpointf.rb +1 -1
  36. data/lib/qt6/qtcore/qprocess.rb +50 -0
  37. data/lib/qt6/qtcore/qprocessenvironment.rb +11 -0
  38. data/lib/qt6/qtcore/qrect.rb +1 -1
  39. data/lib/qt6/qtcore/qrectf.rb +1 -1
  40. data/lib/qt6/qtcore/qregularexpression.rb +17 -1
  41. data/lib/qt6/qtcore/qsettings.rb +4 -4
  42. data/lib/qt6/qtcore/qsize.rb +1 -1
  43. data/lib/qt6/qtcore/qsizef.rb +1 -1
  44. data/lib/qt6/qtcore/qstring.rb +8 -0
  45. data/lib/qt6/qtcore/qt/qvariant.rb +2 -2
  46. data/lib/qt6/qtcore/qtime.rb +1 -1
  47. data/lib/qt6/qtcore/qurl.rb +3 -3
  48. data/lib/qt6/qtcore/qurlquery.rb +41 -0
  49. data/lib/qt6/qtcore/qvariant.rb +18 -18
  50. data/lib/qt6/qtcore/qvariantlist.rb +7 -7
  51. data/lib/qt6/qtcore/qvariantmap.rb +2 -2
  52. data/lib/qt6/qtcore/version.rb +1 -1
  53. data/lib/qt6/qtcore.rb +6 -0
  54. data/lib/qt6/refinements/kernel.rb +2 -2
  55. metadata +15 -3
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-qt6-qtcore
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Doe
@@ -15,14 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 2.0.0
18
+ version: 2.1.0
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - '='
24
24
  - !ruby/object:Gem::Version
25
- version: 2.0.0
25
+ version: 2.1.0
26
26
  description: Ruby Bindings for Qt Core.
27
27
  email:
28
28
  - johndoe@example.com
@@ -59,6 +59,8 @@ files:
59
59
  - ext/qt6/qtcore/qdatetime-rb.hpp
60
60
  - ext/qt6/qtcore/qdir-rb.cpp
61
61
  - ext/qt6/qtcore/qdir-rb.hpp
62
+ - ext/qt6/qtcore/qeventloop-rb.cpp
63
+ - ext/qt6/qtcore/qeventloop-rb.hpp
62
64
  - ext/qt6/qtcore/qfile-rb.cpp
63
65
  - ext/qt6/qtcore/qfile-rb.hpp
64
66
  - ext/qt6/qtcore/qfiledevice-rb.cpp
@@ -99,6 +101,10 @@ files:
99
101
  - ext/qt6/qtcore/qobject-rb.hpp
100
102
  - ext/qt6/qtcore/qpoint-rb.cpp
101
103
  - ext/qt6/qtcore/qpoint-rb.hpp
104
+ - ext/qt6/qtcore/qprocess-rb.cpp
105
+ - ext/qt6/qtcore/qprocess-rb.hpp
106
+ - ext/qt6/qtcore/qprocessenvironment-rb.cpp
107
+ - ext/qt6/qtcore/qprocessenvironment-rb.hpp
102
108
  - ext/qt6/qtcore/qrect-rb.cpp
103
109
  - ext/qt6/qtcore/qrect-rb.hpp
104
110
  - ext/qt6/qtcore/qregularexpression-rb.cpp
@@ -141,6 +147,8 @@ files:
141
147
  - ext/qt6/qtcore/qtranslator-rb.hpp
142
148
  - ext/qt6/qtcore/qurl-rb.cpp
143
149
  - ext/qt6/qtcore/qurl-rb.hpp
150
+ - ext/qt6/qtcore/qurlquery-rb.cpp
151
+ - ext/qt6/qtcore/qurlquery-rb.hpp
144
152
  - ext/qt6/qtcore/quuid-rb.cpp
145
153
  - ext/qt6/qtcore/quuid-rb.hpp
146
154
  - ext/qt6/qtcore/qvariant-rb.cpp
@@ -177,6 +185,7 @@ files:
177
185
  - lib/qt6/qtcore/qdir.rb
178
186
  - lib/qt6/qtcore/qdynamicpropertychangeevent.rb
179
187
  - lib/qt6/qtcore/qevent.rb
188
+ - lib/qt6/qtcore/qeventloop.rb
180
189
  - lib/qt6/qtcore/qfile.rb
181
190
  - lib/qt6/qtcore/qfiledevice.rb
182
191
  - lib/qt6/qtcore/qfileinfo.rb
@@ -202,6 +211,8 @@ files:
202
211
  - lib/qt6/qtcore/qobject.rb
203
212
  - lib/qt6/qtcore/qpoint.rb
204
213
  - lib/qt6/qtcore/qpointf.rb
214
+ - lib/qt6/qtcore/qprocess.rb
215
+ - lib/qt6/qtcore/qprocessenvironment.rb
205
216
  - lib/qt6/qtcore/qrect.rb
206
217
  - lib/qt6/qtcore/qrectf.rb
207
218
  - lib/qt6/qtcore/qregularexpression.rb
@@ -224,6 +235,7 @@ files:
224
235
  - lib/qt6/qtcore/qtimerevent.rb
225
236
  - lib/qt6/qtcore/qtranslator.rb
226
237
  - lib/qt6/qtcore/qurl.rb
238
+ - lib/qt6/qtcore/qurlquery.rb
227
239
  - lib/qt6/qtcore/quuid.rb
228
240
  - lib/qt6/qtcore/qvariant.rb
229
241
  - lib/qt6/qtcore/qvariantlist.rb