forked from oohg/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog_006.txt
4709 lines (4181 loc) · 169 KB
/
ChangeLog_006.txt
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: ChangeLog_006.txt $
*/
2019-03-03 19:12 UTC-0300 Fernando Yurisich <[email protected]>
* core\compile_MINGW.bat
! "Command not recognized" message.
2019-02-27 23:01 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_pseudofunc.ch
* OOHG's version date.
2019-02-27 23:00 UTC-0300 Fernando Yurisich <[email protected]>
* core\README.md
+ Contributors list.
2019-02-27 21:31 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\*.*
* core\source\*.*
* Copyright updated.
2019-02-27 21:29 UTC-0300 Fernando Yurisich <[email protected]>
* core\README.md
* oohg reference.
2019-02-27 21:26 UTC-0300 Fernando Yurisich <[email protected]>
* core\compile_MINGW.bat
! Duplicate definition error at build time.
+ /V switch = verbose build.
2019-02-27 21:25 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_001.txt
! Some dates.
2019-02-25 17:40 UTC-0300 Fernando Yurisich <[email protected]>
* core\oohg_license_template.txt
! Wrong version.
2019-02-25 17:32 UTC-0300 Fernando Yurisich <[email protected]>
* core\oohg_license_template.txt
+ Reference to HMG Extended.
* OOHG copyright following this site info:
https://ben.balter.com/2015/06/03/copyright-notices-for-websites-and-open-source-projects/
2019-02-25 17:25 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_002.txt
* Synced to HMG Extended version.
2019-02-25 17:23 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_002.txt
* core\ChangeLog_003.txt
* core\ChangeLog_004.txt
* core\ChangeLog_005.txt
! Entry indentation was wrong.
2019-02-24 19:27 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\BuildLib.bat
! HM30 build.
* core\source\BuildLib_hbmk2.bat
* core\source\common_make.bat
! Echo displaying a dot.
* core\source\makelib.bat
! HM30 build.
! HG_CCOMP setting.
* core\source\makelib_mingw.bat
* Remove empty line at end.
2019-02-24 01:48 UTC-0300 Fernando Yurisich <[email protected]>
* core\buildapp.bat
* core\BuildApp30.bat
* core\BuildApp32.bat
+ core\BuildApp34.bat
* core\BuildApp_hbmk2.bat
* core\compile.bat
* core\compile30.bat
* core\compile32.bat
+ core\compile34.bat
* core\compile_bcc.bat
* core\compile_MINGW.bat
+ core\compile_XM.bat
* core\resources\CompileRes.bat
* core\resources\Compile_mingw.bat
* core\source\BuildLib.bat
* core\source\BuildLib30.bat
* core\source\BuildLib32.bat
* core\source\BuildLib34.bat
* core\source\BuildLib_hbmk2.bat
* core\source\common_make.bat
* core\source\makelib.bat
* core\source\makelib30.bat
* core\source\makelib32.bat
+ core\source\makelib34.bat
* core\source\makelib_bcc.bat
* core\source\makelib_mingw.bat
+ core\source\makelibXM.bat
+ Support for Viktor Szakats Harbour 3.4 + MinGW clang
compiler (HM34).
+ Support for xHarbour + MinGW gcc compiler (XM).
* HB30 and HB32 switches changed to HM30 and HM32.
* All env var are now prefixed with "HG_".
! Resource compilation under BCC.
2019-02-24 01:36 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_001.txt
* core\ChangeLog_002.txt
* core\ChangeLog_003.txt
* core\ChangeLog_004.txt
* core\ChangeLog_005.txt
- Removed comment.
2019-02-24 01:27 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\oohg.hbc
+ Logic to handle libraries that differ between versions.
2019-02-24 01:25 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_this.ch
+ Missing properties and functions.
2019-02-17 11:35 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_form.prg
* Pacified some warnings under MINGW 8.1.0
! MDI forms with VIRTUAL HEIGHT clause don't work properly.
! Endless loop when painting at ON PAINT event.
; This fix also restores Bostaurus functionality (now it works
in the same way that HMG Extended works).
2019-02-17 11:29 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_dll.prg
* Pacified some warnings under MINGW 8.1.0
2019-02-17 11:25 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_windows.c
* Pacified some warnings under MINGW 8.1.0
* GetTabBrush function now uses BitBlt instead of WM_PRINT.
; This fixes radiogroup's transparency when form's background
is painted at ON PAINT event.
2019-02-17 11:24 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\bostaurus.prg
* core\source\c_activex.c
* core\source\c_controlmisc.c
* core\source\c_gdiplus.c
* core\source\c_graph.c
* core\source\c_image.c
* core\source\c_winapimisc.c
* core\source\h_controlmisc.prg
* core\source\h_crypt.prg
* core\source\h_datepicker.prg
* core\source\h_grid.prg
* core\source\h_ini.prg
* core\source\h_ipaddress.prg
* core\source\h_listbox.prg
* core\source\h_media.prg
* core\source\h_menu.prg
* core\source\h_monthcal.prg
* core\source\h_picture.prg
* core\source\h_richeditbox.prg
* core\source\h_splitbox.prg
* core\source\h_tab.prg
* core\source\h_textarray.prg
* core\source\h_toolbar.prg
* core\source\h_tooltip.prg
* core\source\h_tree.prg
* core\source\miniprint.prg
* core\source\winprint.prg
* Pacified some warnings under MINGW 8.1.0
2019-02-17 11:20 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_windows.prg
+ Function _oohg_calldump at C-level. It calls the homonymous
function at PRG-level.
2019-02-17 11:15 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_pdf.prg
* Pacified some warnings under MINGW 8.1.0
- Some unneeded code.
2019-02-17 11:13 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_notify.prg
! Potencial buffer overrun at functions ChangeNotifyIcon,
ShowNotifyIcon and SetNotifyIconData.
2019-02-17 11:07 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_init.prg
* Use TApplication:New() instead of TApplication:Define().
2019-02-17 11:03 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_application.prg
! RTE at method Define (invalid self object).
* Method Define is no longer CONSTRUCTOR and it's sole purpose
is to return ::aAppObject.
+ Method New to do what the old Method Define used to do.
Returns NIL.
2019-02-17 10:52 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\common_make.bat
+ Some error messages.
2019-02-17 10:43 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\oohg.h
+ Prototype for _oohg_calldump.
+ HB_UNCONST define for Harbour 3.0
2019-02-17 10:41 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_windefs.ch
+ WS_EX_COMPOSITED.
2019-02-17 10:39 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_hb_compat.ch
+ Translation for i18n and NumToHex functions.
2019-02-17 10:36 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_003.txt
! Typo.
2019-02-08 10:58 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_textarray.prg
! Controls shows no text.
2019-02-03 00:01 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_gdiplus.c
* core\source\c_scrsaver.c
* core\source\c_windows.c
* core\source\h_grid.prg
* core\source\h_textbox.prg
* Pacified some warnings under MINGW 8.1.0
2019-02-02 18:44 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_dll.prg
* core\source\h_menu.prg
* core\source\h_grid.prg
* core\source\h_richeditbox.prg
* Pacified some warnings under MINGW 8.1.0
2019-02-02 13:24 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_tree.ch
+ ONCHECKCHANGE as a synonym of ON CHECKCHANGE clause.
2019-02-02 13:24 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_004.txt
! Typo.
2019-02-02 13:23 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_monthcal.prg
! Compiler error for new versions of MINGW.
2019-01-30 18:23 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_button.prg
* DATA lLibDraw now defaults to _OOHG_UseLibraryDraw
instead of .F.
2019-01-30 18:22 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_var.ch
* core\source\h_application.prg
+ Globlar var _OOHG_UseLibraryDraw. Defaults to .F.
2019-01-30 18:21 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_tree.ch
+ NOBORDER as a synonym of ON BORDERLESS clause.
2019-01-30 18:21 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_textbox.ch
+ ONTEXTFILLED as a synonym of ON TEXTFILLED clause.
2019-01-30 18:20 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_scroll.ch
+ ONLINEUP as a synonym of ON LINEUP clause.
+ ONLINELEFT as a synonym of ON LINELEFT clause.
+ ONLINEDOWN as a synonym of ON LINEDOWN clause.
+ ONLINERIGHT as a synonym of ON LINERIGHT clause.
+ ONPAGEUP as a synonym of ON PAGEUP clause.
+ ONPAGELEFT as a synonym of ON PAGELEFT clause.
+ ONPAGEDOWN as a synonym of ON PAGEDOWN clause.
+ ONPAGERIGHT as a synonym of ON PAGERIGHT clause.
+ ONTOP as a synonym of ON TOP clause.
+ ONLEFT as a synonym of ON LEFT clause.
+ ONRIGHT as a synonym of ON RIGHT clause.
+ ONBOTTOM as a synonym of ON BOTTOM clause.
+ ONTHUMB as a synonym of ON THUMB clause.
+ ONTRACK as a synonym of ON TRACK clause.
+ ONENDTRACK as a synonym of ON ENDTRACK clause.
2019-01-30 18:19 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_editbox.ch
+ SUBCLASS clause.
2019-01-30 18:18 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_button.ch
+ ONMOUSEMOVE as synonym of ON MOUSEMOVE clause.
* Some format.
2019-01-30 18:17 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_browse.ch
* core\include\i_grid.ch
* core\include\i_xbrowse.ch
+ HEADERIMAGESALIGN as synonym of IMAGESALIGN clause.
% Use PP rule instead of iif.
2019-01-30 18:16 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_altsyntax.ch
! Combo's REFRESH clause.
2019-01-30 18:15 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_005.txt
! Some entries.
2019-01-30 09:46 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_print.prg
! RTE at ENDDOC when lSize parameter is absent.
2019-01-23 11:03 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_windows.prg
! COMBOBOX's ON CHANGE event is not working.
2019-01-20 20:40 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\oohg_dyns.hbx
* The case of some functions.
2019-01-20 20:39 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_tree.prg
! Return value of function TreeView_GetImageList.
2019-01-20 20:39 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_windows.prg
* DATA lDestroyed was renamed to DATA lDisableDoEvent.
+ DATA lDestroyed.
* Some format.
2019-01-20 20:38 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_print.prg
! Missing release of "printing..." window.
+ METHOD ReleaseX to TPDFPRINT (not needed but for clarity).
2019-01-20 20:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_controlmisc.prg
! Missing event at DelFromCtrlsArrays.
* Some format.
+ Public control's memvars are now released at control's
release after setting them to zero.
2019-01-20 20:36 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_application.prg
+ Missing include files at C-level.
2019-01-20 20:35 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\oohg.h
* core\source\c_controlmisc.prg
- Events_NCDestroy because it's unnecessary.
* core\source\h_form.prg
- Events_NCDestroy because it's unnecessary.
* The code to end the app when the initialization of the window
fails was moved to the PRG level to generate an entry in the
error log and allow a more orderly exit.
+ Public control's memvars are now released at form's
release after setting them to zero.
- Debugging code.
* Some format.
2019-01-20 20:35 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_combobox.ch
+ Missing clauses ONCHANGE, ONDISPLAYCHANGE, ONLISTDISPLAY,
ONLISTCLOSE and ONREFRESH.
+ Missing parameters to splitbox version.
2019-01-18 19:12 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\miniprint.ch
+ Clauses NOWAIT, NOSIZE, OF and PARENT to
END PRINTDOC command.
* core\include\winprint.ch
- Clauses WAIT and NOSIZE from END DOC command because
they are the default ones.
* core\source\h_print.prg
+ METHOD IsDocOpenX to CLASS TMiniPrint.
* METHOD InitX of CLASS TMiniPrint no longer creates the
public vars if they already exist.
+ Parameters lWait and lSize to METHOD EndDocX of
CLASS TMiniPrint. When lWait is .F. the report won't pause
the execution until the preview is closed. Defaults to .T.
When lSize is .T. the user can redimension the preview
window. Defaults to .T.
* METHOD ReleaseX of CLASS TMiniPrint no longer releases
the public vars if the preview is still open.
* core\source\miniprint.prg
* FUNCTION _HMG_PRINTER_ShowPreview now receives three
parameters: cParent, lWait and lSize (default to NIL, .T.
and .T.). When lWait is .F. the preview window will
be activated with NOWAIT clause. When lSize is .T. the
preview window allows resizing.
; This changes allow the simultaenous use of a MINIPRINT-based
TPrint object and an HBPRINTER-based TPrint object.
2019-01-18 15:07 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_windows.prg
! SET NAVIGATION EXTENDED is not working.
2019-01-18 09:52 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_print.prg
- Debugging code.
2019-01-18 09:11 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_grid.prg
! RTE at METHOD DoEventMouseCoords.
2019-01-17 21:18 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_windows.prg
! RTE when mouse goes over a textbox's context menu.
2019-01-17 21:18 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_datepicker.prg
* core\source\h_hotkeybox.prg
* core\source\h_hyperlink.prg
* core\source\h_image.prg
* core\source\h_internal.prg
* core\source\h_ipaddress.prg
* core\source\h_label.prg
* core\source\h_listbox.prg
* core\source\h_monthcal.prg
* core\source\h_picture.prg
* core\source\h_progressbar.prg
* core\source\h_radio.prg
* core\source\h_richeditbox.prg
* core\source\h_scroll.prg
* core\source\h_scrollbutton.prg
* core\source\h_slider.prg
* core\source\h_spinner.prg
* core\source\h_splitbox.prg
* core\source\h_status.prg
* core\source\h_tab.prg
* core\source\h_textarray.prg
* core\source\h_toolbar.prg
* core\source\h_tooltip.prg
* core\source\h_tree.prg
* More changes to achieve thread safety.
* Some format.
2019-01-17 21:16 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_button.prg
! Typo.
2019-01-17 21:15 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_grid.prg
+ METHOD DoEventMouseCoords.
+ ON CLICK event now receives item and col clicked.
* core\source\h_browse.prg
+ ON CLICK event now receives item and col clicked.
* core\source\h_xbrowse.prg
+ ON CLICK event now receives item and col clicked.
2019-01-17 21:12 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\oohg_dyns.hbx
* Updated.
2019-01-17 21:11 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_textbox.ch
+ NOCONTEXTMENU clause.
* core\source\h_textbox.prg
* More changes to achieve thread safety.
* Some format.
+ Support for new clause.
2019-01-17 21:10 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_tab.ch
+ ACTION as synonym of ON CLICK clause.
2019-01-17 21:09 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_browse.ch
* core\include\i_checklist.ch
* core\include\i_grid.ch
* core\include\i_xbrowse.ch
% Use PP rule instead of iif.
2019-01-13 00:29 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_application.prg
- CLASSVAR hClsMtx.
* Class now uses only the C-level mutex.
* Methods MutexLock and MutexUnlock are now defined at C-level.
; This will allow to make thread-safe the following variables
shared by PRG and C levels: _OOHG_aControlhWnd, _OOHG_aControlIds,
_OOHG_aControlObjects and _OOHG_aControlNames.
2019-01-13 00:20 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_controlmisc.prg
* Function InputWindow now uses the default font.
* Function InputWindow now longer uses a form with fixed name.
; Now we can have more than one input window simultaneously.
* Function _InputWindowOk is now static.
* Function _InputWindowCancel is now static.
2019-01-13 00:14 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\hbprinter_dyns.hbx
* Updated.
; Note that all the functions are prefixed with RR_ and all of
them are written in uppercase. These functions are meant for
internal use only.
* core\include\oohg_dyns.hbx
* Updated.
* core\include\winprint.ch
+ Clauses WAIT, NOWAIT, SIZE, NOSIZE, OF and PARENT to
END DOC command.
* core\source\h_init.prg
* Some TPRINT messages.
* core\source\h_print.prg
- DATA Exit from class TPRINTBASE.
+ DATA lDocIsOpen to class TPRINTBASE.
+ DATA nPreviewSize to class TPRINTBASE.
+ DATA nStage to class TPRINTBASE.
+ DATA oWinReport to class TPRINTBASE.
+ DATA uParent to class TPRINTBASE.
+ METHOD IsDocOpen to class TPRINTBASE.
+ METHOD IsDocOpenX to class TPRINTBASE.
+ METHOD IsDocOpenX to class THBPRINTER.
+ METHOD EndDoc of class TPRINTBASE and METHOD EndDocX of
class THBPRINTER have two new parameters: lWait and
lSize. When lWait is .F. the report won't pause the
execution until the preview is closed. When lSize is .T.
the user can redimension the preview window.
* Various methods now return the current value of the
related property. When there's no property associated
then they return .T. for success or .F. for failure.
* Varios methods no longer set the value of the related
property when an invalid value is received.
* Forms no longer have fixed names.
- STATIC FUNCTION Zoom.
+ METHOD Zoom to class TDOSPRINT.
- METHOD SetPreviewSize from classes TTXTPRINT, TEXCELPRINT,
TSPREADSHEETPRINT, TRTFPRINT, TCSVPRINT, TPDFPRINT,
TCALCPRINT
- METHOD SetCPL from class TRTFPRINT.
* Codebar functions now return "" instead of NIL on error.
+ FUNCTION ArrayIsValidColor( aColor ).
; Now we can use two TPrint objects simultaneously!!!
; Note that some printing libraries don't handle more
than one report at the same time (f.e. MINIPRINT).
* core\source\winprint.prg
* Some format and comments.
+ DATA hData.
+ New messages.
* Document's timestamp to avoid collisions.
* METHOD EndDoc now receives three parameters: cParent,
lWait and lSize (default to NIL, ::PreviewMode and ! lWait).
When lWait is .F. the preview window will be activated
with NOWAIT clause. When lSize is .T. the preview window
allows resizing.
* METHOD Preview now receives three parameters: cParent,
lWait and lSize (default to NIL, .T. and ! lWait).
When lWait is .F. the preview window will be activated
with NOWAIT clause. When lSize is .T. the preview window
allows resizing.
* STATIC FUNCTION str2file renamed as FUNCTION RR_STR2FILE.
* STATIC FUNCTION sayconvert renamed as FUNCTION RR_SAYCONVERT.
* FUNCTION str2arr renamed as FUNCTION RR_STR2ARR.
* Forms no longer have fixed names.
+ Function RR_CREATEHBPRINTERDATA.
* All C-level module-static vars were moved to a C-level
structure.
* C-level functions now use the data structure instead of
the static vars.
; Now we can use two HBPrinter objects simultaneously!!!
2019-01-11 20:54 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_grid.prg
* A C-level module-static var was moved to a C-level
function-static mutex-protected var.
* Static vars are now mutex-protected.
2019-01-11 18:40 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_combo.prg
+ METHOD SelectLastItem.
! RTE when initializing a combobox with IMAGE clause.
! RTE when method ItemValue is called with a string
that is not an item.
! RTE when methods FindString or FindStringExact are called
without the second parameter or when it's not valid.
! Combobox's display is not cleared after deleting the
selected item using method DeleteItem.
* Control's ID is "pre-registered" before it's creation
to allow its use at WM_MEASUREITEM event handler.
* Minor code simplifications at TCOMBO_EVENTS_MEASUREITEM
and TCOMBO_EVENTS_MEASUREITEM functions.
! Mutex protection of static vars.
* core\source\h_listbox.prg
* Control's ID is "pre-registered" before it's creation
to allow its use at WM_MEASUREITEM event handler.
* Var renamed.
* core\source\h_windows.prg
! WM_COMMAND handler causes app to crash after clicking a menu.
! WM_MEASUREITEM handler is not working for combobox.
2019-01-11 18:32 UTC-0300 Fernando Yurisich <[email protected]>
; More changes to achieve thread safety.
* core\include\i_pseudofunc.ch
+ Function GetActiveHelpFile.
* core\include\i_var.ch
+ Global vars _OOHG_ActiveToolBar, _OOHG_ActiveHelpFile,
_OOHG_GetNullName, _OOHG_SettingFocus and _OOHG_Validating.
* core\include\oohg.h
+ New parameter to GetFormObjectByHandle and
GetControlObjectByHandle function prototypes.
* core\source\bostaurus.prg
* Static vars are now mutex-protected.
* core\source\c_controlmisc.c
+ New parameter to function GetControlObjectByHandle to
allow for optional mutex protection when calling function
_OOHG_SearchControlHandleInArray.
+ Function GetControlObjectById is now mutex-protected.
* Some comments.
* core\source\c_msgbox.c
* Static var is now mutex-protected.
* core\source\c_windows.c
* Function _OOHG_GetExistingObject is now mutex-protected.
+ Function ShowLastError.
* core\source\h_application.prg
- METHOD HotKeysGet.
+ MESSAGE HotKeysGet.
+ METHOD Value_Pos02.
+ METHOD Value_Pos46.
+ METHOD Value_Pos50.
+ METHOD Value_Pos51.
+ METHOD Value_Pos52.
+ METHOD Value_Pos53.
* Some changes to improve readability.
* core\source\h_button.prg
* core\source\h_checkbox.prg
! Mutex protection of static var.
* core\source\h_controlmisc.prg
* Two static vars at PRG-level were substituted by global vars.
* Function _OOHG_GetNullName was moved to h_application to make
it thread-safe.
* Some format and comments.
+ METHOD PreAddToCtrlsArrays( Id ) to "pre-register" the control's
ID so it can be used at events fired after the control's creation
and before the control's registration.
* METHOD Register no longer accepts 0 as a valid ID.
* METHOD AddToCtrlsArrays now checks if the control was
"pre-registered" and updates the arrays.
* core\source\h_datepicker.c
* Two C-level module-static vars were moved to C-level
function-static mutex-protected vars.
* core\source\h_dll.prg
* Static vars are now mutex-protected.
* Some format.
* core\source\h_form.prg
* Function _OOHG_GetFormObjectByHandle is now thread-safe.
+ New parameter to some function calls.
* Some format and comments.
* Three static vars are now mutex-protected.
* Var renamed.
* core\source\h_frame.prg
* A C-level module-static var was moved to a C-level
function-static mutex-protected var.
* core\source\h_help.prg
* One static var at PRG-level was substituted by a global var.
- Function GetActiveHelpFile.
* core\source\h_toolbar.prg
* One static var at PRG-level was substituted by a global var.
* core\source\h_tree.prg
+ New parameter to some function calls.
* core\source\h_windows.prg
+ New parameter to some function calls.
* Some format.
2019-01-11 16:09 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_internal.prg
* core\source\h_ipaddress.prg
* core\source\h_picture.prg
* core\source\h_splitbox.prg
* core\source\h_textarray.prg
* C-level var renamed.
2019-01-11 16:08 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_scroll.prg
* ID assignment to NIL because 0 its an illegal value.
2019-01-11 16:07 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_media.prg
- Commented out code.
2019-01-11 18:06 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_label.prg
* Var renamed.
! When autosize is enabled, the control's height is wrongly
calculated whenever the caption is changed.
2019-01-11 16:34 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_004.txt
+ Credits to previous entry.
2018-12-27 19:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_encrypt.ch
+ RESULT clause to ENCODE FILE, DECODE FILE, ENCODE TO and
DECODE TO commands.
* core\include\h_crypt.prg
* Functions FI_CODE, FI_DECODE, DB_ENCRYPT and DB_UNENCRYPT
now return NIL if the file is already encrypted, .F. if
something went wrong and .T. if successful.
! Functions DB_ENCRYPT and DB_UNENCRYPT don't accept
filenames with extension.
- Static function cFileName.
2018-12-25 22:33 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_003.txt
! Typo.
* core\ChangeLog_004.txt
! Typo.
* core\include\i_hmg_compat.ch
+ Support for MENUITEM's CHECKMARK clause.
* core\include\i_menu.ch
+ New commands to handle menu controls.
+ OWNERDRAW, DEFAULT, MESSAGE, FONT, TIMEOUT clauses.
+ ONCLICK as synonym of ACTION clause.
+ ICON as a synonym of IMAGE clause.
+ MRU and MRUITEM commands, to build "most recently used" lists.
; This changes are fully compatible with HMG Extended.
* core\include\i_var.ch
+ Global vars _OOHG_DefaultStatusBarMsg, _OOHG_DefaultMenuParams
and _OOHG_OwnerDrawMenus.
* core\include\i_windefs.ch
+ Defines for WM_MENUSELECT, MF_HILITE and MF_OWNERDRAW.
+ core\include\menu.h
+ Defines menu related constants used at PRG and C levels.
* core\include\oohg.h
+ Menu related structure.
* Declaration of _OOHG_ScaleImage function.
+ Defines for static s_Events_InitMenuPopUp and s_oMenu.
+ Conditional inclusion of menu.h file.
* core\source\c_controlmisc.c
* Some changes for 64 bits support.
+ Static symbols Events_InitMenuPopUp and oMenu.
* core\source\c_image.c
* Two parameters of _OOHG_ScaleImage function are now long.
! _OOHG_ScaleImage function does not work when hWnd parameter
if null.
* core\source\h_application.prg
+ METHOD ActiveMenuRemove.
+ METHOD Value_Pos48.
! METHOD DefineLogFont.
* core\source\h_combo.prg
! Typo.
* core\source\h_controlmisc.prg
* METHOD SetFont of TControl now returns the font handle.
* core\source\h_form.prg
* Some changes for 64 bits support.
+ WM_NCMOUSEMOVE message handler.
* core\source\h_grid.prg
! Typo.
* core\source\h_internal.prg
* Some changes for 64 bits support.
* core\source\h_label.prg
! Autosize is not working properly when the control's value
is a multiline text.
* METHOD SetFont of TLabel now returns the font handle.
* core\source\h_menu.prg
- STATIC _OOHG_xMenuActive.
+ CLASS TMenuParams.
+ DATA bOnInitPopUp to TMenu.
+ DATA cFontID to TMenu.
+ DATA cStatMsg to TMenu.
+ DATA nTimeout to TMenu.
+ DATA oMenuParams to TMenu.
+ METHOD Border3D to TMenu.
+ METHOD Colors to TMenu.
+ METHOD CursorType to TMenu.
+ METHOD Events_InitMenuPopUp to TMenu.
+ METHOD Gradient to TMenu.
+ METHOD ItemCount to TMenu.
+ METHOD ItemPosition to TMenu.
+ METHOD OwnerDraw to TMenu.
+ METHOD Params to TMenu.
+ METHOD PopUpPosition to TMenu.
+ METHOD SeparatorType to TMenu.
! METHOD DisableVisualStyle() of TMenu
+ New parameters to several methods to support new
commands and clauses (see i_menu.ch).
- DATA xId ftom TMenuItem.
+ DATA bOnInitPopUp to TMenuItem.
+ DATA cCaption to TMenuItem.
+ DATA cFontID to TMenuItem.
+ DATA cStatMsg to TMenuItem.
+ DATA hExternFont to TMenuItem.
+ DATA lIsAtBar to TMenuItem.
+ DATA lIsMenuBreak to TMenuItem.
+ DATA lIsSeparator to TMenuItem.
+ DATA lOwnerDraw to TMenuItem.
+ DATA nTimeout to TMenuItem.
+ DATA oMenuParams to TMenuItem.
+ DATA xData to TMenuItem.
+ METHOD Border3D to TMenuItem.
+ METHOD Colors to TMenuItem.
+ METHOD CursorType to TMenuItem.
+ METHOD DefaultItemById to TMenuItem.
+ METHOD Events_DrawItem to TMenuItem.
+ METHOD Events_InitMenuPopUp to TMenuItem.
+ METHOD Events_MeasureItem to TMenuItem.
+ METHOD Events_MenuHilited to TMenuItem.
+ METHOD Gradient to TMenuItem.
+ METHOD OwnerDraw to TMenuItem.
+ METHOD Position to TMenuItem.
+ METHOD SeparatorType to TMenuItem.
! METHOD Checked of TMenuItem for popups at the menu bar.
* Methods DefinePopUp and InsertPopUp of TmenuItem now use
an ID instead of using the hWnd.
+ Class TMenuItemMRU to create a "Most Recently Used" menu.
! Return value of InsertMenu.
+ Support for MF_OWNERDRAW flag at InsertMenu and
AppendMenu functions.
* Functions MenuChecked, MenuEnabled and MenuHilited
now use MF_BYPOSITION flag.
+ Support for MF_OWNERDRAW flag at MenuItem_SetBitmaps
function.
+ Functions CreateMenuItemData, DeleteMenuItemData,
SetMenuDefaultItemByID, TMenuItemMeasure,
FindItemPosition, FindPopUpPosition, DefaultMenuParams,
GetMenuItemCount, TMenuItemDraw, _OOHG_MenuCursorType,
_OOHG_MenuSeparator, _OOHG_MenuBorderStyle,
_OOHG_MenuGradientStyle and _OOHG_MenuBitmapMetrics.
+ C-level functions BitmapFromIcon, FillGradient,
DrawMenuTextBkgrnd, DrawMenuSelectedItemBorder,
DrawMenuImage, DrawMenuCheckMark, DrawMenuSeparator,
FindItemPos and FindPopUpPos.
* Some casting.
* Some changes for 64 bits support.
* Some format.
; Parts of this code are based on the original works of
P.Chornyj <[email protected]> and
Grigory Filatov <[email protected]> for HMG Extended project.
* core\source\h_monthcal.prg
* METHOD SetFont of TMonthCal now returns the font handle.
* core\source\h_picture.prg
* Some changes for 64 bits support.
* core\source\h_radio.prg
* METHOD SetFont of TRadioGroup now returns the font handle
of the first option.
* core\source\h_status.prg
+ DATA oTimer.
+ METHOD InitTimeout.
+ METHOD Release.
* core\source\h_textarray.prg
- Some commented text.
* core\source\h_windows.prg
* A C-level module-static var was moved to a C-level
function-static var.
- Removed a no longer needed C-level module-static var.
- Removed hack for WM_MEASUREITEM messages.
* Some comments.
+ Support for menu controls at WM_DRAWITEM message handler.
+ Support for menu controls at WM_MEASUREITEM message handler.
+ WM_INITMENUPOPUP message handler.
+ WM_MENUSELECT message handler.
* Funtction _OOHG_GLOBALRTL at C-level now uses a static
local var and it's setting is protected by _OOHG_GlobalMutex.
2018-12-13 20:43 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_print.prg
! PrintRoundRectangle and PrintRectangle were painting the
inside with a black brush.
2018-12-13 09:33 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_application.prg
! Compilation fails because some missing constants.
2018-12-09 23:14 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_combo.prg
* Format.
* Three C-level module-static vars were moved to C-level
function-static vars, thus making the class thread safe.
2018-12-09 22:43 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\winprint.prg
+ Support for PNG and TIFF images from resources.
2018-12-09 22:41 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_controlmisc.prg
* core\source\h_edit_ex.prg
* core\source\h_grid.prg
* core\source\h_print.prg
* GetDesktopHeight changed by GetDeskTopRealHeight.
* GetDesktopWidth changed by GetDeskTopRealWidth.
2018-12-09 22:40 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_tab.prg
* core\source\h_toolbar.prg
* Format.
2018-12-09 22:38 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_form.prg
* Format.
* DEFINE WINDOW TEMPLATE to DEFINE WINDOW 0.
2018-12-09 22:35 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\miniprint.prg
* GetDesktopHeight changed by GetDeskTopRealHeight.
* GetDesktopWidth changed by GetDeskTopRealWidth.
* Some changes for 64 bit support.
2018-12-09 22:31 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_label.prg
* METHOD Value now accepts a codeblock.
2018-12-09 22:29 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_ini.prg
* Format.
2018-12-09 20:00 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
+ App.DefineFont
+ App.ReleaseFont
2018-12-04 20:51 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
+ App.MutexLock
+ App.MutexUnlock
2018-12-04 20:50 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_hb_compat.ch
+ Translation for Function DateTime.
2018-12-04 20:49 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_application.prg
* NDX_OOHG_DEFAULTMENUCOLORS changed by NDX_OOHG_DEFAULTMENUPARAMS.
+ METHOD MutexLock.
+ METHOD MutexUnlock.
2018-12-04 20:48 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_combo.prg
* Some DEFAULT changed by ASSIGN.
2018-12-04 20:48 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_crypt.prg
+ Message localization.
* Function DB_CODE should be thread safe now.
* Format.
2018-12-04 20:47 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_grid.prg
+ Define for tagNMLVSCROLL structure because it's not
present in BCC.
2018-12-04 20:47 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_init.prg
+ Some messages for h_crypt.prg
2018-12-04 18:36 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
! Compiler error on App.FileName.
2018-12-03 19:53 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_grid.prg
! Compilation with BORLAND.
2018-12-03 19:53 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_pdf.prg
+ DATA cExecuteApp
+ DATA cExecuteParams
+ DATA cPrintApp
+ DATA cPrintParams
+ DATA cFileName
* File's name now defaults to "file.pdf".
* METHOD FilePrint now calls the app defined by DATA cPrintApp.
* METHOD Execute now calls the app defined by DATA cExecuteApp.
2018-12-03 19:41 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_button.prg
! SOLID clause is not working.
2018-12-02 23:21 UTC-0300 Fernando Yurisich <[email protected]>
* core\ChangeLog_004.txt
! Typo.
2018-12-02 23:21 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\oohg.h
* Updated function declaration.
+ New symbol Events_MenuHilited.
2018-12-02 23:19 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_controlmisc.c
* Some changes for 64 bit support.
2018-12-02 23:18 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_winapimisc.c
* Some format.
* Some changes for 64 bit support.
2018-12-02 23:16 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_windows.c
* Some format.
2018-12-02 23:14 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_image.c
* core\source\h_button.prg
+ New parameter to function _OOHG_ReplaceColor that enables
the replace of one color by another color.
* Some format.
2018-12-02 23:11 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_combo.prg
* Some changes for 64 bit support.
2018-12-02 23:09 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_pdf.prg
+ METHOD Height.