-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
11862 lines (9790 loc) · 474 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* $Id$
*/
/* Read doc/howtosvn.txt and use this format for entry headers:
YYYY-MM-DD HH:MM UTC[-|+]hhmm Your Full Name (your_email address)
2010-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
This work is licensed under the Creative Commons Attribution-ShareAlike
License. To view a copy of this license, visit
http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to
Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305,
USA. A summary of the license and the full legal text is included
in file: COPYING. If you wish to distribute some or all of this work
under different terms, please contact respective author(s).
The license applies to all entries newer than 2009-04-28.
*/
2020-04-03 08:53 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r479)
+ Added: qmlparts/resources/qml/PhotoCapture.qml
! Miss from previous commit. Reported by Luigi - thanks.
2020-02-28 13:37 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r479)
* hbqt/qtgui/hbqt_version.ch
% Updated for r479
* hbqt/hbmk2_qt.hb
% Updated to include QObject derived classes of QtWebEngine.
+ hbqt/qtwebengine
+ hbqt/qtwebengine/doc
+ hbqt/qtwebengine/doc/en
+ hbqt/qtwebengine/hbqt_init.cpp
+ hbqt/qtwebengine/hbqtwebengine.ch
+ hbqt/qtwebengine/hbqtwebengine.hbc
+ hbqt/qtwebengine/hbqtwebengine.hbm
+ hbqt/qtwebengine/hbqtwebengine.hbp
+ hbqt/qtwebengine/hbqtwebengine.hbx
+ hbqt/qtwebengine/hbqtwebengines.hbp
+ hbqt/qtwebengine/qth
+ hbqt/qtwebengine/qth/filelist.hbm
+ hbqt/qtwebengine/qth/QQuickWebEngineProfile.qth
+ hbqt/qtwebengine/qth/QWebEngineCertificateError.qth
+ hbqt/qtwebengine/qth/QWebEngineContextMenuData.qth
+ hbqt/qtwebengine/qth/QWebEngineCookieStore.qth
+ hbqt/qtwebengine/qth/QWebEngineDownloadItem.qth
+ hbqt/qtwebengine/qth/QWebEngineFullScreenRequest.qth
+ hbqt/qtwebengine/qth/QWebEngineHistory.qth
+ hbqt/qtwebengine/qth/QWebEngineHistoryItem.qth
+ hbqt/qtwebengine/qth/QWebEnginePage.qth
+ hbqt/qtwebengine/qth/QWebEngineProfile.qth
+ hbqt/qtwebengine/qth/QWebEngineScript.qth
+ hbqt/qtwebengine/qth/QWebEngineScriptCollection.qth
+ hbqt/qtwebengine/qth/QWebEngineSettings.qth
+ hbqt/qtwebengine/qth/QWebEngineUrlRequestInfo.qth
+ hbqt/qtwebengine/qth/QWebEngineUrlRequestInterceptor.qth
+ hbqt/qtwebengine/qth/QWebEngineUrlRequestJob.qth
+ hbqt/qtwebengine/qth/QWebEngineUrlSchemeHandler.qth
+ hbqt/qtwebengine/qth/QWebEngineView.qth
+ hbqtwidgets/tests/loganalyzer
+ Added: Module QtWebEngine since Qt 5.5 onwards.
A replacement to QtWebkit module which is now depricated.
; NOTE: this module is tested to be compilable on Linux
Ubuntu 64 bits in shared mode. It is not possible to
compile and link it in static mode. You will need
Qt 5.8 or higher for this purpose. This lib is not
included in qtcoontribs57.hbp. You may need to
call it manually staying in harbour/addons as:
hbmk2 hbqt/qtwebengine/hbqtwebengine.hbp
2020-02-20 20:04 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r478)
* hbqt/qtcore/hbqt_pointer.cpp
! Fixed: cut/update issue. Seems I am ageing.
2020-02-20 19:30 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r477)
+ hbqtqmlparts/photocapture.prg
+ Added. Missed in previous commit.
2020-02-20 19:22 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r476)
* hbqtwidgets/hbqtwidgets.hbp
! Fixed - unwanted additions.
2020-02-20 19:00 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r475)
* hbdbu/dbu.prg
* hbide/main.prg
- Commented out: REQUEST __HBEXTERN__HBQTWIDGETS__
A bunch of QtQuick/Qml baggage is unnecessary.
* hbqt/hbmk2_qt.hb
+ Added: QStackedWidget as a base widget for .ui forms.
Until now we had QDialog, QWidget, QMainWindow as base widgets.
* hbqt/hbqt_common.hbc
* hbqt/qtcore/hbqt_pointer.cpp
* hbqt/qtcore/hbqtcore.hbc
+ Enhancement: to build Qt 5.5.x version statically.
* hbqt/qtgui/hbqt_errorsys.prg
% Fixed: to display the error message box always.
In situations of recursive error it was killing the system.
* hbqt/qtgui/hbqt_hbqgraphicsitem.h
+ Added: bool __hbqGraphicsCanMoveItems();
* hbqt/qtgui/hbqt_hbqgraphicsitem.cpp
* hbqt/qtgui/hbqt_hbqgraphicsscene.cpp
+ Implemented to lock the graphics item permanantly.
* hbqt/qtgui/hbqtgui.hbc
+ added: windowsprintersupport static librray for Qt 5.x.x static.
* hbqt/qtgui/qth/QGraphicsScene.qth
+ added: many methods which were not included initially.
* hbqt/qtgui/qth/QPrintPreviewWidget.qth
+ added: missing constructor
else if( hb_pcount() == 1 && hbqt_par_isDerivedFrom( 1, "QPRINTER" ) )
* hbqt/qtqml/hbqt_init.cpp
+ aaded: Qml specific plugins for sttaic builds.
* hbqt/qtqml/hbqtqml.hbc
* hbqt/qtquick/hbqtquick.hbc
+ Heavy changes for Qt 5.5 and otherwise static builds.
* hbqtqmlparts/hbqtqmlparts.hbp
+ photocapture.prg
* hbqtqmlparts/hbqtqmlparts.hbx
% Regenerated.
* hbqtqmlparts/hbqtqmlparts.qrc
+ added: <file>resources/qml/PhotoCapture.qml</file>
* hbqtqmlparts/misc.prg
+ added: FUNCTION __hbqtActivatePhotoCapture( bBlock )
* hbqtqmlparts/qmlbridge.prg
* hbqtqmlparts/resources/qml/BarcodeReader.qml
% Cleanup.
* hbqtwidgets/alert.prg
% Visual enhancement.
* hbqtwidgets/hbqtbrowse.prg
% Enhancements to browse printing.
* hbqtwidgets/imageeditor.prg
% Replaced: :fitInParent() => HbQtLayoutInParent()
* hbqtwidgets/messages.prg
* hbqtwidgets/messages.ui
% Changed: <Back> icon.
* hbqtwidgets/misc.prg
% Minor.
+ Added: FUNCTION HbQtLayInParent( oWidget, oParent )
* hbqtwidgets/previewer.prg
% Enhanced: PrintPreview widget implementation.
* hbqtwidgets/properties.prg
+ Added: a couple of methods and other enhancements.
+ hbqtwidgets/resources/admin-1.png
+ hbqtwidgets/resources/cart-1.png
+ hbqtwidgets/resources/cart-2.png
+ hbqtwidgets/resources/cart-3.png
+ hbqtwidgets/resources/cart-4.png
+ hbqtwidgets/resources/cart-5.png
+ hbqtwidgets/resources/chat-1.png
+ hbqtwidgets/resources/clean.png
+ hbqtwidgets/resources/credit-card-1.png
+ hbqtwidgets/resources/customer-service.png
+ hbqtwidgets/resources/data-1.png
+ hbqtwidgets/resources/edit.png
+ hbqtwidgets/resources/exit-1.png
+ hbqtwidgets/resources/female.png
+ hbqtwidgets/resources/home.png
+ hbqtwidgets/resources/info-2.png
+ hbqtwidgets/resources/info-3.png
+ hbqtwidgets/resources/info-4.png
+ hbqtwidgets/resources/info-5.png
+ hbqtwidgets/resources/info-6.png
+ hbqtwidgets/resources/info-7.png
+ hbqtwidgets/resources/layers-1.png
+ hbqtwidgets/resources/mail-01.png
+ hbqtwidgets/resources/male.png
+ hbqtwidgets/resources/mover-1.png
+ hbqtwidgets/resources/mover-2.png
+ hbqtwidgets/resources/next-1.png
+ hbqtwidgets/resources/pdf-document.png
+ hbqtwidgets/resources/pdf.png
+ hbqtwidgets/resources/previous-1.png
+ hbqtwidgets/resources/properties-1.png
+ hbqtwidgets/resources/scanner-1.png
+ hbqtwidgets/resources/visuals-1.png
+ hbqtwidgets/resources/visuals-2.png
+ hbqtwidgets/resources/visuals-3.png
+ hbqtwidgets/resources/vzl-arrow-bottom.png
+ hbqtwidgets/resources/vzl-arrow-down.png
+ hbqtwidgets/resources/vzl-arrow-left.png
+ hbqtwidgets/resources/vzl-arrow-leftmost.png
+ hbqtwidgets/resources/vzl-arrow-right.png
+ hbqtwidgets/resources/vzl-arrow-rightmost.png
+ hbqtwidgets/resources/vzl-arrow-top.png
+ hbqtwidgets/resources/vzl-arrow-up.png
+ hbqtwidgets/resources/vzl-csv.png
+ hbqtwidgets/resources/vzl-dataset.png
+ hbqtwidgets/resources/vzl-del-state.png
+ hbqtwidgets/resources/vzl-edit.png
+ hbqtwidgets/resources/vzl-excel.png
+ hbqtwidgets/resources/vzl-layer-leaf.png
+ hbqtwidgets/resources/vzl-markers.png
+ hbqtwidgets/resources/vzl-navigator.png
+ hbqtwidgets/resources/vzl-properties.png
+ hbqtwidgets/resources/vzl-refresh.png
+ hbqtwidgets/resources/vzl-row-to-visual.png
+ hbqtwidgets/resources/vzl-select.png
+ hbqtwidgets/resources/vzl-sort-az.png
+ hbqtwidgets/resources/vzl-sort-za.png
+ hbqtwidgets/resources/vzl-states.png
+ hbqtwidgets/resources/vzl-table-view.png
+ hbqtwidgets/resources/vzl-visuals.png
+ hbqtwidgets/resources/vzl-zoom-in.png
+ hbqtwidgets/resources/vzl-zoom-out.png
+ hbqtwidgets/resources/vzl-zoom-pixel.png
+ hbqtwidgets/resources/vzl-zoom-whole.png
* hbqtwidgets/hbqtwidgets.qrc
+ Added: many more icons.
* hbqtwidgets/toolbarex.prg
% Minor.
* hbqtwidgets/visualizer.ui
* hbqtwidgets/visualitems.prg
* hbqtwidgets/visualizer.prg
+ Many enhancements.
* qtcontribs.hbp
- Commented out hbqtwebkit - not available for static builds - any version.
2019-04-25 08:40 UTC-0700 Pritpal Bedi (bedipritpal at hotmail.com)(r474)
+ hbqtwidgets/resources/original.png
+ hbqtwidgets/resources/to-excel.png
+ Added missing images. Thanks Zoran for pointing.
2019-04-23 00:05 UTC-0700 Pritpal Bedi (bedipritpal at hotmail.com)(r473)
* hbqt/hbmk2_qt.hb
! Fix where "nullptr" variable declaration is missing in
latest Qt releases.
* hbqt/qtcore/hbqt_init.cpp
+ static void hbqt_SlotsExecQRectQPointFQPointF( PHB_ITEM * codeBlock,
void ** arguments, QStringList pList )
Needed for signals in QRubberBand class.
* hbqt/qtgui/hbqtgui.ch
+ Added few more contsnats for QRubberBand class.
* hbqt/qtgui/qth/QPlainTextEdit.qth
+ Added few new methods introduced in different Qt versions.
+ hbqt/qtgui/qth/QRubberBand.qth
+ Implemented QRubberBand class.
* hbqt/qtgui/qth/filelist.hbm
+ Added: QRubberband.qth
* hbqtwidgets/hbqtbrowse.prg
+ Added: Actions icons in vertical toolbar of browser window for
::refreshCurrent() and ::refreshAll() methods.
+ hbqtwidgets/httpclient.prg
+ Implemented a general purpose, easy to use, addressing REST Api
protocol, class HbQtHttpClient() on top of TipClientHttp().
This source can be included as stand alone in any other
project. If matured enough I will also commit HbQtHttpServer()
based on Mindaugus's contrib/hbhttpd with some added and
extremely required features.
+ hbqtwidgets/imageeditor.prg
+ Implemented: HbQtImageEditor( oParent ) class which can be
embedded into any container with/without any layout. This
class exposes rotation, crop, etc features to manage images.
* hbqtwidgets/silverlight.prg
+ Added ::lActive property to know the state of
function HbQtActivateSilverLight().
* hbqtwidgets/hbqtwidgets.hbp
+ Added imageeditor.prg.
+ hbqtwidgets/resources/crop.png
+ hbqtwidgets/resources/delete-1.png
+ hbqtwidgets/resources/exit-48.png
+ hbqtwidgets/resources/refresh-3.png
+ hbqtwidgets/resources/rotate-left.png
+ hbqtwidgets/resources/select-2.png
+ hbqtwidgets/resources/settings.png
* hbqtwidgets/hbqtwidgets.qrc
+ Added few more images needed for HbQtImageEdit implementation.
; All above components, including the previous commit, has been
developed for couple of real-time, in-production applications and
which are running superbly in heavy load environments. So believe in
HbQt and take use of it.
2019-04-05 14:31 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r472)
* hbqtwidgets/misc.prg
! Fixed. A copy/paste error.
2019-04-04 15:19 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r471)
* hbqt/hbmk2_qt.hb
+ WR_PRG( '#include "hbqtcore.ch"' )
Patch provided by Zoran, thanks.
* hbqt/qtgui/qth/QCompleter.qth
+ Added: more methods.
* hbqt/qscintilla/qth/QsciScintilla.qth
+ Added method requested by Antonio Linares.
+ hbqtwidgets/timeout.prg
+ CLASS HbQtWarnTimeout
A widget to display timeout in seconds from higher to zero
with an option to fetch more time.
+ FUNCTION HbQtSessionTimeout( bBlock, nWaitPeriod )
Function to exploit HbQtWarnTimeout().
* hbqtwidgets/alert.prg
! Fixed some cosmetic issues.
* hbqtwidgets/hbqtwidgets.hbp
+ timeout.prg
* hbqtwidgets/keyboardn.ui
* hbqtwidgets/keyboard.prg
! Some cosmetic changes.
* hbqtwidgets/misc.prg
! Enhancement to __hbqtHashPullValue() to honor first level arrays.
* hbqtwidgets/parselogs.ui
! Cosmetic changes.
* hbqtwidgets/scripts.prg
! Minor fixes.
2017-11-09 17:08 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r470)
+ hbqt/tests/sqllite-table.prg
Added: yet another very useful demo exploiting SqlLite table and
presenting the data via QSqlModel in a QTableView.
Thanks to Ronaldo, M. for this contribution.
2017-11-08 16:36 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r469)
* hbqt/qtgui/hbqtgui.ch
+ Added: QMetaType_* constants.
- Modified: QVariant_* constants consistent with QMetaType_*.
Patch submitted by Luigi - thanks.
+ hbqt/tests/cidades.db
+ Added: Sqlite database demonstrated in sqllite.prg.
+ hbqt/tests/sqllite.prg
+ Added: Demo of using QCompleter in a QLineEdit. QCompleter
consumes the data coming from SqLite database. A good opportunity
for you to play with HbQtSql implementation.
+ hbqt/tests/completer.prg
+ Added: Demo app to use QCompleter in a QLineEdit in a simplistic form.
; QCompleter demos are provided by Ronaldo - thanks.
+ hbqt/tests/completerex.prg
+ Added: An extended version of above completer.prg. This demo gives
you insight how to use QCompleter dynamically based on the contents
of QLineEdit. I used selecting a domain when "@" key is pressed
in an edit controlfetching email address.
2017-10-29 14:10 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r468)
* hbqtwidgets/hbqtdbu.prg
% Replaced: hb_osPathSeparator() with hb_ps().
2017-10-29 14:00 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r467)
* hbdbu/dbu.prg
* hbide/main.prg
% Replaced: hb_osPathSeparator() with hb_ps().
2017-10-28 16:20 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r466)
* hbdbu/dbu.prg
* hbide/main.prg
- Reverted: REQUEST __HBEXTERN__HBTIP__ enabled by error.
2017-10-28 15:38 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r465)
* hbide/hbide.hbp
% minor.
* hbdbu/dbu.prg
* hbide/main.prg
+ Added: #include "harbour.hbx"
% Prepared to be compiled with freeBSD.
* hbqt/hbmk2_qt.hb
- Removed: -std=c++11
* hbqt/hbqt_common.hbc
- Removed: -std=c++11 hacks.
With current Harbour, sources are compiled just fine.
* hbqt/qscintilla/hbqscintilla.hbc
* hbqt/qtbluetooth/hbqtbluetooth.hbc
* hbqt/qtcharts/hbqtcharts.hbc
* hbqt/qtcore/hbqtcore.hbc
* hbqt/qtdbus/hbqtdbus.hbc
* hbqt/qtdeclarative/hbqtdeclarative.hbc
* hbqt/qtdesigner/hbqtdesigner.hbc
* hbqt/qtgui/hbqtgui.hbc
* hbqt/qtlocation/hbqtlocation.hbc
* hbqt/qtmultimedia/hbqtmultimedia.hbc
* hbqt/qtmultimediawidgets/hbqtmultimediawidgets.hbc
* hbqt/qtnetwork/hbqtnetwork.hbc
* hbqt/qtopengl/hbqtopengl.hbc
* hbqt/qtpositioning/hbqtpositioning.hbc
* hbqt/qtqml/hbqtqml.hbc
* hbqt/qtquick/hbqtquick.hbc
* hbqt/qtscript/hbqtscript.hbc
* hbqt/qtsensors/hbqtsensors.hbc
* hbqt/qtsql/hbqtsql.hbc
* hbqt/qtsvg/hbqtsvg.hbc
* hbqt/qtwebkit/hbqtwebkit.hbc
* hbqt/qtwebsockets/hbqtwebsockets.hbc
* hbqt/qtxml/hbqtxml.hbc
* hbqt/qzxing/hbqtzxing.hbc
% Prepared to be compiled with freeBSD.
* hbqtwidgets/hbqtdbu.prg
+ Added: #include "harbour.hbx"
* hbxbp/xbp.ch
+ Added: #define HB_ISNIL( x ) ( x == NIL )
Pointed-out by Viktor, many thanks.
This eliminates XHB dependency for this library.
; A patch provided by Mario Logo with , many thanks.
2017-10-22 08:45 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r464)
* hbqtwidgets/editor.prg
! Fixed: Long-standing bug in HbIDE where CTRL+L was misbehaving
when some text remains selected prior to calling it. Bug reported
by Toni Martins with exact steps to reproduce it, thanks Toni.
2017-10-18 19:14 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r463)
* hbide/editor.prg
% Minor fix.
* hbide/shortcuts.prg
% Fixed: CTRL+SHIFT+W to fire EXIT from HbIDE.
* hbqtwidgets/alert.prg
+ Improved: HbQtMsgbox( cMsg, cTitle, cnBGround, nTimeout, nX, nY )
Now background color, timeout in seconds, X and Y
positions can be applied.
* hbqtwidgets/signature.prg
% Minor: Color of signatures changed from blue to black.
* hbqtwidgets/silverlight.prg
+ Implemented: [<nDuration>] and [<bExecutionBlock>].
<nDuration> is the timeout seconds after which
oSilverLight will be deactivated automatically.
<bExecutionBlock> is the call-back which will be
fired when oSilverLight is deactivated.
Very useful extention.
* hbqtwidgets/misc.prg
+ Extended: HbQtActivateSilverLight( lActivate, xContent, oColor, ;
lAnimate, aOpacity, oWidget, nDuration, bExecute )
This function has been upgraded to correspond SilverLight.
+ hbqtwidgets/keyboard.prg
+ hbqtwidgets/keyboard.ui
+ hbqtwidgets/keyboardn.ui
+ A work-in-progress on-screen keyboard meant for
touch-screen applications like kiosks.
Shortly I will publish the semantics of
in-production kiosk application which consumes
this component. Note that many parts of this
component has to be polished as in its current
state code has been separated from application.
It is functional though.
* hbqtwidgets/hbqtwidgets.hbp
+ Added: keyboard.prg, keyboard.ui, keyboardn.ui
+ hbqtwidgets/resources/back-g-w.png
+ hbqtwidgets/resources/backspace.png
+ hbqtwidgets/resources/checkbox-checked-w.png
+ hbqtwidgets/resources/checkbox-unchecked-w.png
+ hbqtwidgets/resources/clear.png
+ hbqtwidgets/resources/click.wav
+ hbqtwidgets/resources/enter-g-w.png
+ hbqtwidgets/resources/enter.png
+ hbqtwidgets/resources/prv_down-4.png
+ hbqtwidgets/resources/prv_up-4.png
+ hbqtwidgets/resources/round-blue.png
+ hbqtwidgets/resources/round-gray.png
+ hbqtwidgets/resources/s-delete.png
+ hbqtwidgets/resources/s-down.png
+ hbqtwidgets/resources/s-left.png
+ hbqtwidgets/resources/s-plus.png
+ hbqtwidgets/resources/s-right.png
+ hbqtwidgets/resources/s-up.png
+ hbqtwidgets/resources/s-yes.png
* hbqtwidgets/hbqtwidgets.qrc
+ Added: many images needed for new components.
2017-10-14 08:33 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r462)
* hbdbu/dbu.prg
% Guarded: __addTreeItem() with #if defined( __PLATFORM__WINDOWS ).
was raising warning on Linux.
* hbqtwidgets/editor.prg
! Fixed (tried-not tested) rte reported by hb_xfree for a null pointer.
This is unusual to have this error or source line reported by
traceback is wrong. Reported by Luigi. [ HbDBU ]
2017-10-12 08:28 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r461)
* hbqt/qtcore/qth/QFile.qth
% Fixed: QFile( oFile ) - pointed-out by Luigi.
* hbqtwidgets/hbqtbrowse.prg
+ Refined :goTo() method to position vertical scrollbar when no :goto
block is defined.
2017-10-11 22:16 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r460)
* hbdbu/dbu.prg
* hbdbu/hbdbu.hbp
* hbide/main.prg
- Commented out __HBTIP_* directives. Broken in the core.
* hbqt/qtcore/hbqt_pointer.cpp
* hbqt/hbqt_common.hbc
* hbqt/qtcore/hbqtcore.hbc
* Some refinements for Qt Static builds for changes in latest versions.
* hbqt/qtgui/hbqtgui.ch
+ Added: QAbstractScrollArea_* constants.
* hbqt/qtgui/qth/QPixmap.qth
+ Added one latest method.
* qtcontribs57.hbp
- Removed QtScript module. No longer supported and never used in HbQt.
2017-10-11 21:09 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r459)
* hbqt/qtgui/qth/QWidget.qth
+ Implemented: QWidget:setParent( 0 ).
Patch submitted by Luigi.
2017-10-11 20:40 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r458)
* hbqtwidgets/misc.prg
+ Added: __hbqtHashPullValue( hHash, cKey, xDefault )
A very useful function.
* hbqtwidgets/scripts.prg
* Put var cPath under HB_SYMBOL_UNUSED, was raising warnings.
2017-10-11 20:30 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r457)
* hbqt/qtcore/qth/filelist.hbm
* hbqt/qtcore/qth/QAbstractEventDispatcher.qth
+ Added back class QAbstractEventDispatcher().
Also commented out many methods.
2017-10-11 20:22 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r456)
- hbqt/qtmultimedia/qth/QCameraViewFinderSettings.qth
+ hbqt/qtmultimedia/qth/QCameraViewfinderSettings.qth
* Renamed because of classname having wrong case.
Was breaking Linux builds.
2017-05-14 13:28 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r455)
* hbqt/qtcore/qth/QObject.qth
+ Refined Method setParent() which now can receive 0 as a parameter
more like C++ calling convension, in place of NULL pointer.
Until Now:
oWidget:setParent( QWidget() )
Now:
oWidget:setParent( 0 )
Suggested and patch supplied by Luigi.
* hbqt/qtgui/qth/QFontDatabase.qth
+ Added a couple of methods which were introduced by Qt's later versions.
* hbqt/qtgui/hbqtgui.ch
+ Added constants for QFontDatabase_*.
* hbdbu/hbdbu.hbp
* hbide/hbide.hbp
+ Added: hbqtmultimedia.hbc
2017-04-18 18:43 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r454)
* hbide/debugger.prg
! Fixed to publish fields of last activated alias with each next step.
2017-04-18 16:26 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r453)
* hbqt/hbqt_common.hbc
* hbqt/qtcore/hbqt_pointer.cpp
+ Added more plugins for static builds.
* hbqt/qtcore/qth/QLocale.qth
+ Readded methods which were guarded agains wrong version.
+ hbqt/qtmultimedia/qth/QCameraViewFinderSettings.qth
* hbqt/qtmultimedia/qth/filelist.hbm
+ Added another class.
* hbqt/qtmultimedia/hbqtmultimedia.hbc
* hbqt/qtmultimedia/qth/QCamera.qth
+Enhanced QCamera to take advantage of latest offerings.
+ hbqtwidgets/resources/camera.png
+ hbqtwidgets/resources/redo-1.png
+ hbqtwidgets/resources/round-green.png
+ hbqtwidgets/resources/round-red.png
+ hbqtwidgets/resources/round-yellow.png
* hbqtwidgets/hbqtwidgets.qrc
+ Added more icons.
* hbqtwidgets/editor.prg
I Fixed CTRL+L press in a source which was not navigated before.
* hbqtwidgets/parselogs.prg
! Fixed some nasty animation constructs.
* hbqtwidgets/signature.prg
% Minor improvements.
* hbide/debugger.prg
+ Enhanced to respect last active alias and publish the fields auto.
2017-03-09 13:31 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r452)
* hbqt/qtgui/hbqtgui.ch
+ Added: QSqlTableModel_* constants.
* hbqtwidgets/loggraphics.ui
* hbqtwidgets/parselogs.prg
+ Added: more features.
2017-03-05 13:07 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r451)
* hbqt/qtgui/qth/QImage.qth
+ Added: methods introduced in later versions of Qt.
+ hbqtwidgets/resources/cancel.png
+ hbqtwidgets/resources/refresh-2.png
+ hbqtwidgets/resources/refresh.png
+ hbqtwidgets/resources/select-3.png
* hbqtwidgets/hbqtwidgets.qrc
+ Added: few more images.
* hbqtwidgets/hbqtwidgets.hbp
+ Added: signature.prg.
+ hbqtwidgets/signature.prg
+ Implemented: Class HbQtSignature - to fetch signatures over the touch-screen devices.
A blocking but non-modal interface to fetch signatures from party of interest.
Testing can be done via mouse on standard screens though. For details
please look into HbQtFetchSignature() function.
+ Added: HbQtFetchSignature( bBlock ) -> NIL
<bBlock> == { | nStatus, oImage | __doWhateverWith( nStatus, oImage ) }
One-liner function to fetch signatures.
+ hbqtwidgets/tests/signatures.prg
+ An application demonstrating implementation of HbQtSignature class via
HbQtFetchSignature() function.
2017-02-27 13:07 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r450)
* hbdbu/hbdbu.hbp
% Adjustments for hbqtcharts.hbc based on Qt's minor version.
* hbqt/hbqt_common.hbc
! Fixed to link applications statically for lib name changes in
Qt's minor versions.
* hbqt/qzxing/zxing/zxing/ZXing.h
! Fixed to resolve _isnan() calls if HbQt is compiled with older
and latest Mingw versions. A constant issue not fixed properly
in Mingw.
* hbqtwidgets/parselogs.prg
! Guarded Class HbQtLogGraphics via #if defined( HBQT_WITH_CHARTS_SUPPORT ).
QtCharts are only available from Qt 5.7 onwards.
2017-02-20 17:37 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r449)
+ hbqtqmlparts/tests/calqlatr
+ hbqtqmlparts/tests/calqlatr/calqlatr.hbp
+ hbqtqmlparts/tests/calqlatr/calqlatr.prg
+ hbqtqmlparts/tests/calqlatr/calqlatr.qml
+ hbqtqmlparts/tests/calqlatr/calqlatr.qrc
+ hbqtqmlparts/tests/calqlatr/content
+ hbqtqmlparts/tests/calqlatr/content/Button.qml
+ hbqtqmlparts/tests/calqlatr/content/calculator.js
+ hbqtqmlparts/tests/calqlatr/content/Display.qml
+ hbqtqmlparts/tests/calqlatr/content/images
+ hbqtqmlparts/tests/calqlatr/content/images/paper-edge-left.png
+ hbqtqmlparts/tests/calqlatr/content/images/paper-edge-right.png
+ hbqtqmlparts/tests/calqlatr/content/images/paper-grip.png
+ hbqtqmlparts/tests/calqlatr/content/NumberPad.qml
+ hbqtqmlparts/tests/clocks
+ hbqtqmlparts/tests/clocks/clocks.hbp
+ hbqtqmlparts/tests/clocks/clocks.prg
+ hbqtqmlparts/tests/clocks/clocks.qml
+ hbqtqmlparts/tests/clocks/clocks.qrc
+ hbqtqmlparts/tests/clocks/content
+ hbqtqmlparts/tests/clocks/content/arrow.png
+ hbqtqmlparts/tests/clocks/content/background.png
+ hbqtqmlparts/tests/clocks/content/center.png
+ hbqtqmlparts/tests/clocks/content/clock-night.png
+ hbqtqmlparts/tests/clocks/content/clock.png
+ hbqtqmlparts/tests/clocks/content/Clock.qml
+ hbqtqmlparts/tests/clocks/content/hour.png
+ hbqtqmlparts/tests/clocks/content/minute.png
+ hbqtqmlparts/tests/clocks/content/quit.png
+ hbqtqmlparts/tests/clocks/content/second.png
+ hbqtqmlparts/tests/maroon
+ hbqtqmlparts/tests/maroon/content
+ hbqtqmlparts/tests/maroon/content/audio
+ hbqtqmlparts/tests/maroon/content/audio/bomb-action.wav
+ hbqtqmlparts/tests/maroon/content/audio/catch-action.wav
+ hbqtqmlparts/tests/maroon/content/audio/catch.wav
+ hbqtqmlparts/tests/maroon/content/audio/currency.wav
+ hbqtqmlparts/tests/maroon/content/audio/factory-action.wav
+ hbqtqmlparts/tests/maroon/content/audio/melee-action.wav
+ hbqtqmlparts/tests/maroon/content/audio/projectile-action.wav
+ hbqtqmlparts/tests/maroon/content/audio/shooter-action.wav
+ hbqtqmlparts/tests/maroon/content/BuildButton.qml
+ hbqtqmlparts/tests/maroon/content/GameCanvas.qml
+ hbqtqmlparts/tests/maroon/content/GameOverScreen.qml
+ hbqtqmlparts/tests/maroon/content/gfx
+ hbqtqmlparts/tests/maroon/content/gfx/background.png
+ hbqtqmlparts/tests/maroon/content/gfx/bomb-action.png
+ hbqtqmlparts/tests/maroon/content/gfx/bomb-idle.png
+ hbqtqmlparts/tests/maroon/content/gfx/bomb.png
+ hbqtqmlparts/tests/maroon/content/gfx/button-help.png
+ hbqtqmlparts/tests/maroon/content/gfx/button-play.png
+ hbqtqmlparts/tests/maroon/content/gfx/catch-action.png
+ hbqtqmlparts/tests/maroon/content/gfx/catch.png
+ hbqtqmlparts/tests/maroon/content/gfx/cloud.png
+ hbqtqmlparts/tests/maroon/content/gfx/currency.png
+ hbqtqmlparts/tests/maroon/content/gfx/dialog-bomb.png
+ hbqtqmlparts/tests/maroon/content/gfx/dialog-factory.png
+ hbqtqmlparts/tests/maroon/content/gfx/dialog-melee.png
+ hbqtqmlparts/tests/maroon/content/gfx/dialog-pointer.png
+ hbqtqmlparts/tests/maroon/content/gfx/dialog-shooter.png
+ hbqtqmlparts/tests/maroon/content/gfx/dialog.png
+ hbqtqmlparts/tests/maroon/content/gfx/factory-action.png
+ hbqtqmlparts/tests/maroon/content/gfx/factory-idle.png
+ hbqtqmlparts/tests/maroon/content/gfx/factory.png
+ hbqtqmlparts/tests/maroon/content/gfx/grid.png
+ hbqtqmlparts/tests/maroon/content/gfx/help.png
+ hbqtqmlparts/tests/maroon/content/gfx/lifes.png
+ hbqtqmlparts/tests/maroon/content/gfx/logo-bubble.png
+ hbqtqmlparts/tests/maroon/content/gfx/logo-fish.png
+ hbqtqmlparts/tests/maroon/content/gfx/logo.png
+ hbqtqmlparts/tests/maroon/content/gfx/melee-action.png
+ hbqtqmlparts/tests/maroon/content/gfx/melee-idle.png
+ hbqtqmlparts/tests/maroon/content/gfx/melee.png
+ hbqtqmlparts/tests/maroon/content/gfx/mob-idle.png
+ hbqtqmlparts/tests/maroon/content/gfx/mob.png
+ hbqtqmlparts/tests/maroon/content/gfx/points.png
+ hbqtqmlparts/tests/maroon/content/gfx/projectile-action.png
+ hbqtqmlparts/tests/maroon/content/gfx/projectile.png
+ hbqtqmlparts/tests/maroon/content/gfx/scores.png
+ hbqtqmlparts/tests/maroon/content/gfx/shooter-action.png
+ hbqtqmlparts/tests/maroon/content/gfx/shooter-idle.png
+ hbqtqmlparts/tests/maroon/content/gfx/shooter.png
+ hbqtqmlparts/tests/maroon/content/gfx/sunlight.png
+ hbqtqmlparts/tests/maroon/content/gfx/text-1.png
+ hbqtqmlparts/tests/maroon/content/gfx/text-2.png
+ hbqtqmlparts/tests/maroon/content/gfx/text-3.png
+ hbqtqmlparts/tests/maroon/content/gfx/text-blank.png
+ hbqtqmlparts/tests/maroon/content/gfx/text-gameover.png
+ hbqtqmlparts/tests/maroon/content/gfx/text-go.png
+ hbqtqmlparts/tests/maroon/content/gfx/wave.png
+ hbqtqmlparts/tests/maroon/content/InfoBar.qml
+ hbqtqmlparts/tests/maroon/content/logic.js
+ hbqtqmlparts/tests/maroon/content/mobs
+ hbqtqmlparts/tests/maroon/content/mobs/MobBase.qml
+ hbqtqmlparts/tests/maroon/content/NewGameScreen.qml
+ hbqtqmlparts/tests/maroon/content/SoundEffect.qml
+ hbqtqmlparts/tests/maroon/content/towers
+ hbqtqmlparts/tests/maroon/content/towers/Bomb.qml
+ hbqtqmlparts/tests/maroon/content/towers/Factory.qml
+ hbqtqmlparts/tests/maroon/content/towers/Melee.qml
+ hbqtqmlparts/tests/maroon/content/towers/Ranged.qml
+ hbqtqmlparts/tests/maroon/content/towers/TowerBase.qml
+ hbqtqmlparts/tests/maroon/maroon.hbp
+ hbqtqmlparts/tests/maroon/maroon.prg
+ hbqtqmlparts/tests/maroon/maroon.qml
+ hbqtqmlparts/tests/maroon/maroon.qrc
+ hbqtqmlparts/tests/photosurface
+ hbqtqmlparts/tests/photosurface/photosurface.hbp
+ hbqtqmlparts/tests/photosurface/photosurface.prg
+ hbqtqmlparts/tests/photosurface/photosurface.qml
+ hbqtqmlparts/tests/photosurface/photosurface.qrc
+ hbqtqmlparts/tests/photosurface/resources
+ hbqtqmlparts/tests/photosurface/resources/folder.png
+ hbqtqmlparts/tests/photosurface/resources/icon.png
+ hbqtqmlparts/tests/photosurface/resources/photosurface.icns
+ hbqtqmlparts/tests/photosurface/resources/photosurface.ico
+ hbqtqmlparts/tests/photosurface/resources/photosurface.rc
+ hbqtqmlparts/tests/photoviewer
+ hbqtqmlparts/tests/photoviewer/i18n
+ hbqtqmlparts/tests/photoviewer/i18n/qml_de.qm
+ hbqtqmlparts/tests/photoviewer/i18n/qml_de.ts
+ hbqtqmlparts/tests/photoviewer/i18n/qml_fr.qm
+ hbqtqmlparts/tests/photoviewer/i18n/qml_fr.ts
+ hbqtqmlparts/tests/photoviewer/photoviewer.hbp
+ hbqtqmlparts/tests/photoviewer/photoviewer.prg
+ hbqtqmlparts/tests/photoviewer/photoviewer.qml
+ hbqtqmlparts/tests/photoviewer/photoviewer.qrc
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/AlbumDelegate.qml
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/BusyIndicator.qml
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/Button.qml
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/EditableButton.qml
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/images
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/images/box-shadow.png
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/images/busy.png
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/images/cardboard.png
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/PhotoDelegate.qml
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/ProgressBar.qml
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/RssModel.qml
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/script
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/script/script.js
+ hbqtqmlparts/tests/photoviewer/PhotoViewerCore/Tag.qml
+ hbqtqmlparts/tests/rssnews
+ hbqtqmlparts/tests/rssnews/content
+ hbqtqmlparts/tests/rssnews/content/BusyIndicator.qml
+ hbqtqmlparts/tests/rssnews/content/CategoryDelegate.qml
+ hbqtqmlparts/tests/rssnews/content/images
+ hbqtqmlparts/tests/rssnews/content/images/Asia.jpg
+ hbqtqmlparts/tests/rssnews/content/images/btn_close.png
+ hbqtqmlparts/tests/rssnews/content/images/Business.jpg
+ hbqtqmlparts/tests/rssnews/content/images/busy.png
+ hbqtqmlparts/tests/rssnews/content/images/Entertainment.jpg
+ hbqtqmlparts/tests/rssnews/content/images/Europe.jpg
+ hbqtqmlparts/tests/rssnews/content/images/Health.jpg
+ hbqtqmlparts/tests/rssnews/content/images/Politics.jpg
+ hbqtqmlparts/tests/rssnews/content/images/Science.jpg
+ hbqtqmlparts/tests/rssnews/content/images/scrollbar.png
+ hbqtqmlparts/tests/rssnews/content/images/Sports.jpg
+ hbqtqmlparts/tests/rssnews/content/images/Technology.jpg
+ hbqtqmlparts/tests/rssnews/content/images/TopStories.jpg
+ hbqtqmlparts/tests/rssnews/content/images/USNational.jpg
+ hbqtqmlparts/tests/rssnews/content/images/World.jpg
+ hbqtqmlparts/tests/rssnews/content/NewsDelegate.qml
+ hbqtqmlparts/tests/rssnews/content/RssFeeds.qml
+ hbqtqmlparts/tests/rssnews/content/ScrollBar.qml
+ hbqtqmlparts/tests/rssnews/rssnews.hbp
+ hbqtqmlparts/tests/rssnews/rssnews.prg
+ hbqtqmlparts/tests/rssnews/rssnews.qml
+ hbqtqmlparts/tests/rssnews/rssnews.qrc
+ hbqtqmlparts/tests/samegame
+ hbqtqmlparts/tests/samegame/content
+ hbqtqmlparts/tests/samegame/content/+blackberry
+ hbqtqmlparts/tests/samegame/content/+blackberry/Settings.qml
+ hbqtqmlparts/tests/samegame/content/BBSettings.qml
+ hbqtqmlparts/tests/samegame/content/Block.qml
+ hbqtqmlparts/tests/samegame/content/BlockEmitter.qml
+ hbqtqmlparts/tests/samegame/content/Button.qml
+ hbqtqmlparts/tests/samegame/content/GameArea.qml
+ hbqtqmlparts/tests/samegame/content/gfx
+ hbqtqmlparts/tests/samegame/content/gfx/background-puzzle.png
+ hbqtqmlparts/tests/samegame/content/gfx/background.png
+ hbqtqmlparts/tests/samegame/content/gfx/bar.png
+ hbqtqmlparts/tests/samegame/content/gfx/blue-puzzle.png
+ hbqtqmlparts/tests/samegame/content/gfx/blue.png
+ hbqtqmlparts/tests/samegame/content/gfx/bubble-highscore.png
+ hbqtqmlparts/tests/samegame/content/gfx/bubble-puzzle.png
+ hbqtqmlparts/tests/samegame/content/gfx/but-game-1.png
+ hbqtqmlparts/tests/samegame/content/gfx/but-game-2.png
+ hbqtqmlparts/tests/samegame/content/gfx/but-game-3.png
+ hbqtqmlparts/tests/samegame/content/gfx/but-game-4.png
+ hbqtqmlparts/tests/samegame/content/gfx/but-game-new.png
+ hbqtqmlparts/tests/samegame/content/gfx/but-menu.png
+ hbqtqmlparts/tests/samegame/content/gfx/but-puzzle-next.png
+ hbqtqmlparts/tests/samegame/content/gfx/but-quit.png
+ hbqtqmlparts/tests/samegame/content/gfx/green-puzzle.png
+ hbqtqmlparts/tests/samegame/content/gfx/green.png
+ hbqtqmlparts/tests/samegame/content/gfx/icon-fail.png
+ hbqtqmlparts/tests/samegame/content/gfx/icon-ok.png
+ hbqtqmlparts/tests/samegame/content/gfx/icon-time.png
+ hbqtqmlparts/tests/samegame/content/gfx/logo-a.png
+ hbqtqmlparts/tests/samegame/content/gfx/logo-e.png
+ hbqtqmlparts/tests/samegame/content/gfx/logo-g.png
+ hbqtqmlparts/tests/samegame/content/gfx/logo-m.png
+ hbqtqmlparts/tests/samegame/content/gfx/logo-s.png
+ hbqtqmlparts/tests/samegame/content/gfx/logo.png
+ hbqtqmlparts/tests/samegame/content/gfx/particle-brick.png
+ hbqtqmlparts/tests/samegame/content/gfx/particle-paint.png
+ hbqtqmlparts/tests/samegame/content/gfx/particle-smoke.png
+ hbqtqmlparts/tests/samegame/content/gfx/red-puzzle.png
+ hbqtqmlparts/tests/samegame/content/gfx/red.png
+ hbqtqmlparts/tests/samegame/content/gfx/text-highscore-new.png
+ hbqtqmlparts/tests/samegame/content/gfx/text-highscore.png
+ hbqtqmlparts/tests/samegame/content/gfx/text-no-winner.png
+ hbqtqmlparts/tests/samegame/content/gfx/text-p1-go.png
+ hbqtqmlparts/tests/samegame/content/gfx/text-p1-won.png
+ hbqtqmlparts/tests/samegame/content/gfx/text-p1.png
+ hbqtqmlparts/tests/samegame/content/gfx/text-p2-go.png
+ hbqtqmlparts/tests/samegame/content/gfx/text-p2-won.png
+ hbqtqmlparts/tests/samegame/content/gfx/text-p2.png
+ hbqtqmlparts/tests/samegame/content/gfx/yellow-puzzle.png
+ hbqtqmlparts/tests/samegame/content/gfx/yellow.png
+ hbqtqmlparts/tests/samegame/content/levels
+ hbqtqmlparts/tests/samegame/content/levels/level0.qml
+ hbqtqmlparts/tests/samegame/content/levels/level1.qml
+ hbqtqmlparts/tests/samegame/content/levels/level2.qml
+ hbqtqmlparts/tests/samegame/content/levels/level3.qml
+ hbqtqmlparts/tests/samegame/content/levels/level4.qml
+ hbqtqmlparts/tests/samegame/content/levels/level5.qml
+ hbqtqmlparts/tests/samegame/content/levels/level6.qml
+ hbqtqmlparts/tests/samegame/content/levels/level7.qml
+ hbqtqmlparts/tests/samegame/content/levels/level8.qml
+ hbqtqmlparts/tests/samegame/content/levels/level9.qml
+ hbqtqmlparts/tests/samegame/content/levels/TemplateBase.qml
+ hbqtqmlparts/tests/samegame/content/LogoAnimation.qml
+ hbqtqmlparts/tests/samegame/content/MenuEmitter.qml
+ hbqtqmlparts/tests/samegame/content/PaintEmitter.qml
+ hbqtqmlparts/tests/samegame/content/PrimaryPack.qml
+ hbqtqmlparts/tests/samegame/content/PuzzleBlock.qml
+ hbqtqmlparts/tests/samegame/content/qmldir
+ hbqtqmlparts/tests/samegame/content/samegame.js
+ hbqtqmlparts/tests/samegame/content/SamegameText.qml
+ hbqtqmlparts/tests/samegame/content/Settings.qml
+ hbqtqmlparts/tests/samegame/content/SimpleBlock.qml
+ hbqtqmlparts/tests/samegame/content/SmokeText.qml
+ hbqtqmlparts/tests/samegame/samegame.hbp
+ hbqtqmlparts/tests/samegame/samegame.prg
+ hbqtqmlparts/tests/samegame/samegame.qml
+ hbqtqmlparts/tests/samegame/samegame.qrc
+ hbqtqmlparts/tests/stocqt
+ hbqtqmlparts/tests/stocqt/content
+ hbqtqmlparts/tests/stocqt/content/+windows
+ hbqtqmlparts/tests/stocqt/content/+windows/Settings.qml
+ hbqtqmlparts/tests/stocqt/content/Button.qml
+ hbqtqmlparts/tests/stocqt/content/CheckBox.qml
+ hbqtqmlparts/tests/stocqt/content/images
+ hbqtqmlparts/tests/stocqt/content/images/icon-left-arrow.png
+ hbqtqmlparts/tests/stocqt/content/images/wheel-touch.png
+ hbqtqmlparts/tests/stocqt/content/images/wheel.png
+ hbqtqmlparts/tests/stocqt/content/qmldir
+ hbqtqmlparts/tests/stocqt/content/Settings.qml
+ hbqtqmlparts/tests/stocqt/content/StockChart.qml
+ hbqtqmlparts/tests/stocqt/content/StockInfo.qml
+ hbqtqmlparts/tests/stocqt/content/StockListModel.qml
+ hbqtqmlparts/tests/stocqt/content/StockListView.qml
+ hbqtqmlparts/tests/stocqt/content/StockModel.qml
+ hbqtqmlparts/tests/stocqt/content/StockSettingsPanel.qml
+ hbqtqmlparts/tests/stocqt/content/StockView.qml
+ hbqtqmlparts/tests/stocqt/stocqt.hbp
+ hbqtqmlparts/tests/stocqt/stocqt.prg
+ hbqtqmlparts/tests/stocqt/stocqt.qml
+ hbqtqmlparts/tests/stocqt/stocqt.qrc
+ hbqtqmlparts/tests/tweetsearch
+ hbqtqmlparts/tests/tweetsearch/content
+ hbqtqmlparts/tests/tweetsearch/content/FlipBar.qml
+ hbqtqmlparts/tests/tweetsearch/content/LineInput.qml
+ hbqtqmlparts/tests/tweetsearch/content/ListFooter.qml
+ hbqtqmlparts/tests/tweetsearch/content/ListHeader.qml
+ hbqtqmlparts/tests/tweetsearch/content/resources
+ hbqtqmlparts/tests/tweetsearch/content/resources/anonymous.png
+ hbqtqmlparts/tests/tweetsearch/content/resources/bird-anim-sprites.png
+ hbqtqmlparts/tests/tweetsearch/content/resources/icon-clear.png
+ hbqtqmlparts/tests/tweetsearch/content/resources/icon-loading.png
+ hbqtqmlparts/tests/tweetsearch/content/resources/icon-refresh.png
+ hbqtqmlparts/tests/tweetsearch/content/resources/icon-search.png
+ hbqtqmlparts/tests/tweetsearch/content/SearchDelegate.qml
+ hbqtqmlparts/tests/tweetsearch/content/TweetDelegate.qml
+ hbqtqmlparts/tests/tweetsearch/content/tweetsearch.js
+ hbqtqmlparts/tests/tweetsearch/content/TweetsModel.qml
+ hbqtqmlparts/tests/tweetsearch/tweetsearch.hbp
+ hbqtqmlparts/tests/tweetsearch/tweetsearch.prg
+ hbqtqmlparts/tests/tweetsearch/tweetsearch.qml
+ hbqtqmlparts/tests/tweetsearch/tweetsearch.qrc
+ Added: QML demos provided in Qt distro 5.8.
The structure of the folders is kept as-is though
some parent Qml source name is changed somewhat.
; To link above demos in STATIC mode must compile
hbqt/qtcore/hbqtcore with cflag = -DHBQT_WITH_QML_SUPPORT.
2017-02-20 16:29 UTC-0800 Pritpal Bedi (bedipritpal at hotmail.com)(r448)
* hbqt/qtcharts/qth/QChartView.qth
+ Applied [*R=1*] to QChart * chart() method.
Trasfers the ownership of <chart> back to Harbour.
* hbqtwidgets/resources/auto_off.png
* hbqtwidgets/resources/auto_on.png
* hbqtwidgets/hbqtwidgets.qrc
+ Added: some more images.