-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathChangeLog.txt
2449 lines (2132 loc) · 85.1 KB
/
ChangeLog.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.txt $
*/
/*
* Use this format for the entry headers:
* YYYY-MM-DD HH:MM UTC[-|+]hhmm Name/Username <your_email@address>
* Use this marks for file entries:
* '*', '+' or '-' to mean the file was modified, added or deleted.
* Use this marks for detail entries:
* '*' Changed: ... '!' Fixed: ....
* '+' Added: ... '%' Optimized: ...
* '-' Removed: ... ';' Comment
* Use #nnn to refer to an issue.
*/
2024-09-12 18:20 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_application.prg
! Wrong initialization of _OOHG_AutoScroll and _OOHG_GridScrollOnWheel.
#628
#629
2024-03-21 09:21 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_windows.prg
! Program crashes after displaying the context menu of a control.
; This fix removes intended support for container's context menu.
- Unneeded comment.
#627
2024-02-29 07:54 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_windefs.ch
* core\include\oohg.h
* core\source\c_controlmisc.c
* core\source\h_form.prg
* core\source\h_windows.prg
* Add support for WM_NCHITTEST message.
#625
2024-02-25 19:56 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_internal.prg
* Replace fixed constants with app-pseudo vars.
#624
2024-02-25 19:30 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_application.prg
! Missing initialization of _OOHG_DefaultScrollPage,
_OOHG_DefaultScrollStep, _OOHG_AutoScroll and
_OOHG_GridScrollOnWheel.
#623
2024-02-25 18:59 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
* Change clause order.
2024-02-21 19:46 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_tree.prg
* Some changes for 64 bits support.
#622
2023-06-03 22:08 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_print.prg
+ Data lHonorMargins to class TPrintBase.
+ Method SetHonorMargins to set/get the new data.
* Method PrintBarcode of class TPrintBase will take into account
the margins of the current page when the new data is set to .T.
#621
2023-05-29 17:13 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_tooltip.ch
+ SET TOOLTIPNOPREFIX [TO] ON/OFF.
+ SET TOOLTIP NOPREFIX [TO] ON/OFF.
+ SET TOOLTIPSTYLE [TO] PREFIX/NOPREFIX.
2023-05-28 20:28 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_tooltip.prg
+ Style NOPREFIX.
#620
2023-05-20 18:10 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_menu.ch
- Unsupported clause TOOLTIP.
#619
2023-05-15 19:55 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
! Method Caption for a ITEM returns NIL.
#618
2023-05-14 11:30 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_status.prg
! StatusBar's STATUSITEM clause without a parameter causes
RTE "Argument error: +" at ADDITEM method.
#617
2023-05-13 18:41 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
+ TMenuItem: Add a reference to its 'parent' menu.
#616
2023-05-13 16:40 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
* core\source\h_pdf.prg
* core\source\h_print.prg
* core\source\h_report.prg
! Wrong string comparison.
; Never use a#b or a!=b.
; Always use !a==b
#615
2023-05-06 18:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_hmg_compat.ch
+ core\include\i_minigui_compat.ch
* core\include\i_minigui.ch
* Remove from compatibility header i_hmg_compat.ch all items
related to Minigui and create a new specific header for it.
#600
2023-05-06 17:24 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
+ DATA bOnInitPopup and METHOD Events_InitMenuPopUp of
CLASS TMenu. This partially reverts commit
2023-04-19 17:20 UTC-0300.
#613
- Duplicate define of constant DEFAULT_GUI_FONT.
#614
2023-05-06 11:39 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_tooltip.prg
! Fix ADD TOOLTIP ICON clause.
#612
2023-05-06 11:39 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_tooltip.prg
! Fix ADD TOOLTIP ICON clause.
#612
2023-04-28 20:04 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
+ Default values were added for some parameters of the
INSERT ITEM clause.
! METHOD Picture of TMenuItem class: checked and unchecked
bitmaps are not being displayed.
2023-04-22 10:40 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_menu.ch
* Replace normal stringify result marker
with smart result marker in RELEASE clause.
2023-04-19 18:10 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
- DATA lMain from TMenu, TMenuMain and TMenuItem classes.
* METHOD Refresh of TMenu class was changed to do nothing.
+ METHOD Refresh to TMenuMain class (copy of old TMenu's Refresh).
2023-04-19 17:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
+ DATA Type to TMenuMain, TMenuContext, TMenuNotify and
TMenuDropDown classes.
2023-04-19 17:20 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
- Remove unneeded data bOnInitPopup from the TMenu class.
- Remove unneeded method Events_InitMenuPopup from the TMenu class.
* Method Events_InitMenuPopup of TMenuItem is now defined as Block.
2023-04-18 19:02 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_form.prg
* Change the third parameter of two GetMenuItemInfo calls.
2023-04-18 19:00 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_windows.prg
* Change the third parameter of two GetMenuItemInfo calls.
2023-04-17 08:51 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_form.prg
* Remove duplicated assignments.
2023-04-16 21:19 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_tooltip.ch
! Error in malformed ADD TOOLTIPICON clause.
#610
2023-04-16 19:17 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
! Error "No exported variable CONTEXTMENU" in line 415.
; TMenuDropDown can't inherit ::Super:Define method because
this menu is for controls not for forms.
* core\source\h_windows.prg
- DATA DynamicMenu.
* core\source\h_form.prg
+ DATA DynamicMenu.
#609
2023-04-15 14:02 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_menu.ch
* Replace normal stringify result markers with smart ones
in RELEASE clauses.
2023-04-10 21:20 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
* core\include\i_pseudofunc.ch
* core\include\i_var.ch
* core\source\h_application.prg
* core\source\h_grid.prg
+ Codeblock bOnScroll will be executed when the mouse wheel is
moved over the Grid's row. Current implementation just executes
Up and Down method.
+ Add a flag to enable and disable the execution of the bOnScroll
codeblock. The default behavior is disabled.
; Set _OOHG_GridScrollOnWheel to .T. to enable for all grids.
#605
2023-04-08 20:46 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_grid.prg
+ Codeblock bOnScroll will be executed when the mouse wheel is
moved over the Grid's row. Current implementation just executes
Up and Down method.
#605
2023-04-07 15:20 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_hmg_compat.ch
+ Translation for CLEAN MEMORY command.
2023-04-07 15:38 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_font.c
+ Function GetSystemFontEx to retrieve information of the fonts
used in message boxes, captions, small captions, menu bars,
status bars and tooltips. It returns an array:
{ name, size, bold, italic, underline, strikout, charset }.
+ Function GetOtherMetrics to retrive the metrics associated with
the nonclient area of a nonminimized window. It returns an array:
{ BorderWidth, ScrollWidth, ScrollHeight, CaptionWidth,
CaptionHeight, SmCaptionWidth, SmCaptionHeight, MenuWidth,
MenuHeight, iPaddedBorderWidth}
2023-04-07 14:28 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_hmg_compat.ch
+ Translations for some HMG/MINIGUI clipboard related functions.
* Function Random now translates to a copy of the HMG function
that was renamed as HMG_Random.
! IsThemed translation.
+ Translations for _GetAppCargo, HMG_GarbageCall, RELEASE MEMORY.
2023-04-07 13:11 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_aplication.prg
+ Protect CollectGarbage with mutex.
2023-04-07 12:58 UTC-0300 Fernando Yurisich <[email protected]>
* core\incluide\i_window.ch
+ Clause ANIMATE WINDOW.
2023-04-07 12:56 UTC-0300 Fernando Yurisich <[email protected]>
* core\incluide\i_app.ch
+ Support for App/Sys/System.CollectGarbage.
2023-04-07 12:53 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_aplication.prg
+ Method CollectGarbage.
2023-04-07 11:46 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
* Remove unnecessary parentheses.
+ Some missing 'get' translates.
+ Missing 'set' translate for App.ErrorLevel.
2023-04-06 22:08 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_controlmisc.c
* Replace NULL with GetActiveWindow() in OpenClipboard calls.
2023-04-06 22:00 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_status.ch
! STATUSITEM DEFAULT clauses throws error
"Variable does not exist: DEFAULT" at runtime.
#608
2023-04-06 21:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_controlmisc.prg
+ HMG's Random function as HMG_Random.
2023-04-06 14:28 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_application.prg
* App.Errorlevel, _OOHG_AppObject():ErrorLevel, _OOHG_ErrorLevel
and _OOHG_AppObject():Value_Pos38 now set/return ErrorLevel().
* core\source\h_error.prg
! ExitProcess( 1 ) was replaced by ExitProcess( Max( ErrorLevel(), 1 ) ).
* core\source\h_form.prg
* ExitProcess(_OOHG_ErrorLevel) was replaced by ExitProcess( ErrorLevel() ).
; Fix ErrorLevel value on program's error: since the user can change the
ErrorLevel at any time, _OOHG_ErrorLevel maybe out of sync when the
program crashes.
#607
2023-04-05 18:54 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_controlmisc.c
+ Function InsertOEMComma.
* core\source\h_textbox.prg
* Pasting 45.671,17 to a NUMERIC with INPUTMASK '@E 999,999.99'
enters 45,67 because @E inputmask is not working properly.
#595
+ Constants to handle the TEXTBOX's FOCUSEDPOS property.
#578
+ Add support for restoring the selection that existed the last
time the control lost the focus.
#597
2023-04-05 16:48 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
+ System/Sys commands.
#600
2023-04-05 15:16 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_print.prg
* core\source\h_windows.prg
* core\source\h_controlmisc.prg
* Replace Int + hb_Random with hb_RandomInt.
#606
2023-04-04 23:01 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_windows.prg
* Improve support of menu controls.
#600
2023-04-04 22:41 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_hmg_compat.ch
* core\include\i_menu.ch
* core\source\h_menu.prg
* Improve support of menu controls.
#600
2023-04-04 15:35 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_textbox.ch
+ FocusedPos related constants.
#597
2023-04-03 22:59 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_windows.c
+ Function ChangeStyle borrowed from Minigui.
* core\source\i_controlmic.ch
+ Support for SET CONTROL ... CLIENTEDGE, STATICEDGE,
WINDOWEDGE and NOTEDGE commands from Minigui.
+ Support for SET CONTROL CONTEXTMENU from Minigui.
#600
2023-04-03 22:31 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_winapimisc.prg
- Functions GetWindowsFolder,GetSystemFolder, GetTempFolder,
GetMyDocumentsFolder, GetDesktopFolder, GetProgramFilesFolder
and GetSpecialFolder.
#604
2023-04-03 21:49 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_hmg_compat.ch
+ SET OOP command.
+ Error constants.
+ GetMenuColors and some constants.
+ SET MENUTHEME.
+ RELEASE MAINMENU, CONTEXTMENU, CONTROL CONTEXTMENU,
NOTIFY MENU, DROPDOWNBUTTON.
#600
2023-04-03 21:31 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_pseudofunc.ch
+ IsNotifyMenuDefined.
* IsWin64 is now translated to IsExe64.
#600
+ GetWindowsFolder, GetSystemFolder, GetTempFolder, GetSpecialFolder,
GetMyDocumentsFolder, GetDesktopFolder, GetProgramFilesFolder.
#604
2023-04-02 11:54 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_menu.ch
+ Add PARENT as a synonym of OF.
+ Add clause DEFINE DROPDOWNMENU OWNERBUTTON as a synonym of
DEFINE DROPDOWN MENU BUTTON.
+ Add missing clauses NOTRANSPARENT and TOOLTIP to pp rules
#xcommand ITEM and #xcommand MENUITEM.
#601
2023-03-27 20:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_menu.prg
+ Functions GetMenu, ExistMainMenu and DeleteMainMenu.
#600
2023-03-27 20:30 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_window.ch
+ Translate for QUIT command.
#600
2023-03-27 20:16 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_windefs.ch
+ Some WM constants.
#600
2023-03-27 20:07 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
* core\include\i_var.ch
* core\source\h_application.prg
+ SET SCROLLPAGE TO
+ SET SCROLLSTEP TO
+ SET AUTOSCROLL ON/OFF
+ App-pseudo-vars _OOHG_DefaultScrollPage, _OOHG_DefaultScrollStep
and _OOHG_AutoScroll.
* core\source\h_form.prg
+ Support for AutoScroll.
* core\source\h_scroll.prg
+ Support for DefaultScrollPage and DefaultScrollStep.
#598
#599
2023-03-14 16:27 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\bostaurus.prg
* core\source\c_controlmisc.c
* core\source\c_winapimisc.c
* core\source\h_grid.prg
* core\source\h_ini.prg
* core\source\winprint.prg
! Replace struct = { 0 } with memset( &struct, 0, sizeof( struct ) ).
Such BCC syntax does not clear the whole structure body in most of
other C compilers.
#596
2022-11-06 10:42 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_textbox.prg
! Undefined var lNorRTrim.
#594
2022-11-05 15:45 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_winapimisc.prg
* Synchronize function GetSystemFont with Extended.
#593
2022-11-05 15:45 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_winapimisc.prg
! Replace a call to OSIsWin10OrLater() by OSIsWinTenOrLater().
#592
2022-11-05 15:36 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_pseudofunc.ch
! Fix support for newer Windows versions: the preprocessor rules
for IsWin10OrLater() and IsWin11OrLater() must translate to
OSIsWinTenOrLater() and OSIsWinElevenOrLater() respectively.
#592
2022-11-05 15:25 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_windows.c
* Pacify C compilar warning.
2022-11-05 15:22 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_winapimisc.c
* Remove space at EOL.
2022-10-31 18:19 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_textbox.prg
+ Support for not trimming trailing spaces.
#591
2022-10-30 10:54 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_winapimisc.c
! Win 11 detection.
#580
2022-10-30 10:30 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_window.c
+ Function OSIsWinEightOrLater.
+ Function OSIsWinTenOrLater.
+ Function OSIsWinElevenOrLater.
#581
2022-10-30 09:50 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_metrics.ch
+ Add more defines.
#585
2022-10-30 09:48 UTC-0300 Fernando Yurisich <[email protected]>
* core\buildapp.bat
- Remove unused env vars.
#582
2022-10-30 09:46 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\oohg.h
* core\source\c_activex.c
* Define DEVICEINTERFASEparam was renamed DEVICEINTERFACEparam.
#586
2022-10-30 09:44 UTC-0300 Fernando Yurisich <[email protected]>
* core\resources\Windows.Manifest
* Align lines.
#583
2022-10-29 18:58 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_windows.c
* Add OsIsWinSevenOrLater function.
#584
2022-10-29 16:43 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_grid.prg
- Remove no longer needed function call.
#587
2022-10-29 16:43 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_edit_ex.prg
* Minor cosmetic changes.
#588
2022-10-29 16:38 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_scrsaver.prg
- XP related code was removed.
#589
2022-10-29 16:17 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_zip.prg
! Spell error.
#590
2022-10-12 19:25 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_edit.ch
! Changes made by #472 were reverted because OOHG's sample
edit_extended/s002.prg does not allow to make changes
to the database.
#577
2022-09-25 19:22 UTC-0300 Fernando Yurisich <[email protected]>
+ core\include\i_windefs.ch
* Remove the defines now included in i_metrics.ch.
#576
2022-09-25 19:18 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_grid.prg
* Replace GetSystemMetrics( SM_CXFULLSCREEN ) by
GetFullScreenWidth() and GetSystemMetrics( SM_CYFULLSCREEN )
by GetFullScreenHeight().
#575
2022-09-25 19:12 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_windows.c
+ Functions GetVScrollbarWidth, GetHScrollbarHeight,
GetFullScreenWidth, GetFullScreenHeight, GetWindowMinWidth
and GetWindowMinHeight.
* core\source\h_scroll.prg
- Functions GetVScrollbarWidth and GetHScrollbarHeight.
#573
#574
2022-09-25 18:58 UTC-0300 Fernando Yurisich <[email protected]>
+ core\include\i_metrics.ch
* Support for Windows system metrics constants.
#572
2022-09-25 09:26 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_winapimisc.c
* Support for Windows 11 to function WinVersion.
#571
* Some format.
* Pacify an HB34's compiler warning.
2022-09-25 09:15 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_activex.c
* core\source\h_checkbox.prg
* core\source\h_combo.prg
* core\source\h_radio.prg
! Some memory leaks caused by calls to hb_xgrab without
a correspondiente call to hb_xfree.
#570
2022-09-21 19:43 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_editbox.prg
! ON CHANGE clause is not executed when the control's value
is changed programmatically.
#569
2022-09-20 19:42 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_controlmisc.ch
* _OOHG_SetMultiple was replace by _OOHG_AppObject():Value_Pos30.
* core\include\i_var.ch
* Updated xtranslate for _OOHG_SetMultiple.
* MultipleInstances was replace by Value_Pos30.
* core\source\c_winapimisc.c
* Support for app mutex was improved.
* core\source\h_application.prg
- DATA AppMutex.
- METHOD MultipleInstances.
! SET MULTIPLE OFF WARNING clause is not working.
#567
+ Method Name to allow the change of the app's name, set by
default to cFileNoExt( ::FileName ).
#568
2022-09-20 19:06 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
+ App.IsAlreadyRunning definition.
* Replace references to method App:MultipleInstances
by method _OOHG_AppObject():Value_Pos30.
! Specific clauses were moved so they follow the more general
ones. This fixes compiler error E0022 Invalid lvalue ':'.
# 566
2022-09-19 19:44 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_controlmisc.prg
+ Function cFilePath: returns the path of a filename.
+ Function cFileExt: returns the extension of a filename.
#564
2022-09-19 19:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_grid.prg
* Set THIS.CELLVALUE before executing the ON ENTER events of
Grid, Browse and XBrowse controls.
#563
2022-09-10 11:39 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_progressbar.prg
! RTE when method Define is called with the lVertical parameter
set to a non-logical value.
#562
2022-09-05 19:42 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_windefs.ch
+ Update constants related to TTree controls.
#553
* core\include\i_tree.ch
+ Synonyms for some clauses.
#550
+ Clause ON EXPANDED. It's evaluated after the expansion of a
node has ended.
+ Clause ON COLLAPSED. It's evaluated after the colapse of a
node has ended.
#551
* core\source\h_tree.prg
+ Support for new clauses.
#551
#554
+ Method Toggle to class TTree to change an item from collapsed
to expanded or from expanded to collapsed.
#553
+ Method IsItemCollapseReseted to class TTree.
#549
+ Method CollapseReset to class TTree.
#552
+ Method WasItemExpanded to class TTree.
#555
! Support for REDRAWONADD parameter is missing at method Define.
#556
+ Send previous item label to VALID block.
#557
* Method ItemImages was simplified.
2022-09-04 11:55 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_grid.ch
+ Clause STOPEDIT.
* core\source\h_grid.prg
+ Support for clause STOPEDIT.
; Adds the possibility to stay in a cell after its edition has ended.
#561
2022-08-25 15:00 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_controlmisc.c
* Add support for loading JPG images to image lists.
#560
2022-08-07 09:30 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_altsyntax.ch
* core\include\i_hyperlink.ch
* core\source\h_hyperlink.prg
+ Support for clauses RIGHTALIGN and CENTERALIGN.
#559
2022-07-15 19:06 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_windefs.ch
+ Update constants related to TTree controls.
#548
2022-07-12 12:56 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_browse.prg
* Remove unused extra parameter at aScan calls.
#547
2022-07-12 12:07 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_browse.prg
! Method EditGrid of class TOBrowseByCell fails when a work area is
not open.
#546
2022-07-12 12:35 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_browse.prg
! Methods EditAllCells and EditGrid of class TOBrowse and method
EditAllCells of class TOBrowseByCell are calling method
IsColumnReadOnly with the wrong row number when a record append
is ongoing.
#545
2022-07-12 12:19 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_browse.prg
! Method EditAllCells of class TOBrowse doesn't change the control's
value when parameter lChange is .T.
#544
2022-07-12 12:15 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_browse.prg
! Missing check to prevent the execution of method EditAllCells of
class TOBrowse while a record is being appended.
#543
2022-07-12 12:07 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_browse.prg
* Methods EditAllCells and EditGrid of class TOBrowse: the test for
an open workarea was moved to the method's beginning.
* Method EditAllCells of class TOBrowseByCell: the test for an open
workarea was moved to the method's beginning.
#542
2022-07-12 12:02 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_browse.prg
+ Parameter lJustAdd to method EditCell of class TOBrowse.
+ Parameter lJustAdd to method EditAllCells of class TOBrowse.
+ Parameter lJustAdd to method EditGrid of class TOBrowse.
+ Parameter lJustAdd to method EditCell of class TOBrowseByCell.
+ Parameter lJustAdd to method EditAllCells of class TOBrowseByCell.
+ Parameter lJustAdd to method EditGrid of class TOBrowseByCell.
; If the lAppend and lJustAdd parameters are .T. and the specified
column is hidden, read only, or its When clause evaluates to .F.
then a record is added to the workarea, its fields are populated
with default values, the ON APPEND codeblock is evaluated, and
the method is ended with .T. as if the user had pressed the
Enter key.
#541
2022-07-12 12:02 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_browse.prg
+ Parameter lJustAdd to method EditCell of class TOBrowse.
+ Parameter lJustAdd to method EditAllCells of class TOBrowse.
+ Parameter lJustAdd to method EditGrid of class TOBrowse.
+ Parameter lJustAdd to method EditCell of class TOBrowseByCell.
+ Parameter lJustAdd to method EditAllCells of class TOBrowseByCell.
+ Parameter lJustAdd to method EditGrid of class TOBrowseByCell.
; If the lAppend and lJustAdd parameters are .T. and the specified
column is hidden, read only, or its When clause evaluates to .F.
then a record is added to the workarea, its fields are populated
with default values, the ON APPEND codeblock is evaluated, and
the method is ended with .T. as if the user had pressed the
Enter key.
#541
2022-07-11 18:04 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_activex.ch
+ Clause CLIENTEDGE.
* core\include\i_windefs.ch
+ S_OK
* core\source\c_activex.c
* Synchronized with Minigui Extended.
* core\source\h_activex.prg
- Duplicated datas.
% Parameter checking.
+ Support for extended styles to ActiveX windows.
* Synchronized with Minigui Extended.
#539
2022-07-11 17:53 UTC-0300 Fernando Yurisich <[email protected]>
* core\compile.bat
* core\compile_MINGW.BAT
* core\oohg.hbc
! Compilation under HB30 cancels with message "hbcurl lib not found".
#540
2022-07-08 21:10 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_browse.prg
! Infinite loop in method EditGrid of class TGridByCell
when the last column of the last row is readonly.
#538
2022-07-07 20:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_richeditbox.prg
+ Support for printing the control's content.
- Some extra spaces.
+ Some format.
+ Method GetTextLength.
+ Method Render.
; These methods enable the rendering the content of the control
to a printer's DC.
#537
2022-07-07 20:31 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\oohg_dyns.hbx
* Updated
2022-07-07 20:05 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
+ Clause SET FORM DEFAULT BACKCOLOR TO.
Defaults to -1.
#535
2022-07-07 19:58 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_app.ch
! Extra parenthesis at SET LOGFILE TO xtranslate removed.
#534
2022-07-07 18:40 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_font.ch
+ SET DEFAULT FONT TO
; It allows to set all the attributes of the default font.
* core\include\i_var.ch
+ App-pseudo-vars _OOHG_DefaultBackColor, _OOHG_DefaultFormBackColor,
_OOHG_DefaultFontAngle,_OOHG_DefaultFontWidth,
_OOHG_DefaultFontOrientation and _OOHG_DefaultFontAdvanced.
* core\source\h_application.prg
+ Support for new app-pseudo-vars.
+ Support for setting a default backcolor to all the controls
in a form.
+ Support for setting a default backcolor to all the forms in
the application.
+ Support for setting Angle, Width, Orientation and Advanced
attributes of the default font.
* core\source\h_form.prg
+ Method FontName to class TForm. This allows to set/get the
default fontname for newly created controls in the form.
+ Support for setting a default backcolor to all the forms in
the application.
#533
2022-07-07 17:40 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_font.c
! Default value of EnumFontFamiliesEx parameter at
function ENUMFONTSEX.
#532
2022-07-03 19:59 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_picture.prg
! Method Picture does not honor the value of data lNoTransparent.
#531
2022-07-03 19:57 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_image.prg
! Method Picture does not honor the value of data lNoTransparent.
#531
2022-07-03 19:42 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_button.prg
* Some misspelled words.
2022-07-03 19:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_window.ch
+ Tags FONTNAME and FONTSIZE to DEFINE WINDOWS syntax.
#530
2022-07-03 19:30 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_image.c
! Function _OOHG_SIZEOFBITMAPFROMFILE returns wrong values.
#529
2022-06-21 17:15 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_window.ch
+ Some properties and methods to DEFINE WINDOW.
#528
2022-06-11 19:02 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_ini.prg
* The third parameter of function _GetIni was renamed to
to properly reflect is type.
#527
2022-06-11 18:57 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_var.ch
* core\source\h_application.prg
+ Add support for bold, italic, strikeout, underline and charset
attributes to OOHG's default font.
#526
2022-05-31 21:11 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_frame.prg
! Exclude area is not added to FRAME control when it's
defined using traditional sintax. This does not work
because the area is not asociated to a control.
#525
2022-05-29 11:39 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_application.prg
! Default fontcolor must be BLACK instead of NIL.
#524
2022-05-21 20:40 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_window.ch
! Support for OnMouseLeave.
#524
2022-05-18 19:27 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_tab.ch
* core\source\h_tab.prg
+ Support for CARGO property.
; This facilitates the implementation of the property in the IDE.
2022-05-07 16:17 UTC-0300 Fernando Yurisich <[email protected]>
* core\oohg_license_template.txt
* core\include\*.ch
* core\include\*.h
* core\resources\*.rc
* core\source\*.c
* core\source\*.prg
* Copyright updated.
2022-05-04 18:37 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_progressbar.prg
+ Some comments about fontcolor and backcolor.
#419
2022-05-04 18:03 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_progressmeter.prg
+ Some comments about fontcolor and backcolor.
#419
2022-05-01 10:46 UTC-0300 Fernando Yurisich <[email protected]>
+ core\include\i_xbrowse.ch
+ A dummy translate for ENABLEALTA property.
#490
2022-04-24 11:36 UTC-0300 Fernando Yurisich <[email protected]>
+ core\ChangeLog_007.txt
* core\ChangeLog.txt
* All entries before 2021-01-01 were moved to ChangeLog_007.txt
2022-04-22 21:36 UTC-0300 Fernando Yurisich <[email protected]>
* core\BuildApp_hbmk2.bat
+ Support for hbmk2's trace parameter.
#421
2022-03-20 21:27 UTC-0300 Fernando Yurisich <[email protected]>
! This.<BackColor, BackColorCode, Cargo, ClientHeight, ClientWidth,
Col, Cursor, Handle, Height, hWnd, Name, Object, Row> are
allways translated to _OOHG_ThisForm:<property>.
#400
#427
! This.<Hide, Object, Release, SetFocus, Show> were wrongly
translated to _OOHG_ThisForm:<function()>.
#403
* core\include\i_this.ch
! Missing support for This.Save pseudofunction.
+ Methods This.Save and This.SaveAs.
#404
! This.Position := <arg> translation.
! This.Repeat := <arg> translation.
#405
+ Properties This.<ReadOnly, Sizable, SysMenu, TitleBar, TopMost,
VirtualHeight, VirtualWidth, Volume>.
+ Properties ThisForm.<p: Names, Controls>.
* ThisWindow.<x> defines were replaced by ThisForm.<x>.
+ Properties ThisForm.<Caption, Enabled, MaxButton, MinButton,
OnNotifyClick, Sizable, SysMenu, TitleBar, Visible>.
+ Method ThisForm.<SaveAs>.
* GetProperty and SetProperty calls were replace by object syntax.
+ This.<Action, OnClick, OnChange, OnDblClick, OnGotFocus, OnLostFocus>.
* The casing of the event procedures.
+ ThisObject:<x>.
+ ThisWindow as a synonyn of ThisForm.
+ Pseudofunctions This.IsControl() and This.IsForm().
#406
2022-03-20 19:14 UTC-0300 Fernando Yurisich <[email protected]>
* core\oohg.hbc
- Some comments.
* Command lib= was replace by hbcs= to pacify HB34's hbmk2 warnings.
#407
2022-03-20 19:11 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\c_winapimisc.c
- Unneeded code.
+ Comment.
#408
2022-03-19 16:38 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_tooltip.prg
* Pacify some 64-bit compiler warnings.
#409
2022-03-19 16:36 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\oohg.hbp
+ Compiler flags to pacify warnings.
- Unneeded compiler flag.
#410
2022-03-19 16:30 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\bostaurus.hbp
* core\source\hbprinter.hbp
* core\source\miniprint.hbp
+ Compiler flags to pacify warnings.
#410
2022-03-18 19:03 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_media.prg
! Return value of MCIFunc is wrong for 64 bits version.
#411
2022-03-06 19:22 UTC-0300 Fernando Yurisich <[email protected]>
* core\source\h_progressmeter.prg
+ Method BarColor as a synonym of FontColor.
#415
* Explicit method ForeColor replaced by ACCESS/ASSIGN.
#416
2022-03-06 19:16 UTC-0300 Fernando Yurisich <[email protected]>
* core\include\i_progressmeter.ch
+ FONTCOLOR as a synonym of FORECOLOR.
#412
2022-03-06 19:15 UTC-0300 Fernando Yurisich <[email protected]>