-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
ChangeLog_005.txt
4336 lines (4112 loc) · 155 KB
/
ChangeLog_005.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_005.txt $
*/
2017-08-26 00:17 UTC-0300 Fernando Yurisich <[email protected]>
* distros\MakeExclude.txt
+ Added file.
* manual\Changelog.htm
* Updated.
2017-08-26 00:04 UTC-0300 Fernando Yurisich <[email protected]>
* doc\Maintenance.txt
* manual\Changelog.htm
* Updated.
* manual\OVERVIEW.HTM
* source\h_error.prg
* Version.
2017-08-25 23:53 UTC-0300 Fernando Yurisich <[email protected]>
* include\bostaurus.ch
* samples\oohg\stream\TStream.prg
* source\bostaurus.prg
* source\miniprint.prg
* Format.
* ide\.cvsignore
+ Added file.
* manual\ACTIVEX.HTM
* manual\ANIGIF.HTM
* manual\ANIMATEBOX.HTM
+ manual\BOSTAURUS.HTM
+ manual\BOSTAURUS_CONSTANTS.HTM
+ manual\BOSTAURUS_FUNCTIONS.HTM
* manual\BROWSE.HTM
* manual\BUTTON.HTM
* manual\CHECKBOX.HTM
* manual\CHECKBUTTON.HTM
* manual\CHECKLIST.HTM
* manual\CLASSES.HTM
+ manual\CLASSES_INDEX.HTM
* manual\COMBOBOX.HTM
+ manual\COMMANDS.HTM
+ manual\CONTROLS.HTM
* manual\Changelog.htm
* manual\DATEPICKER.HTM
* manual\DO_REPORT.HTM
* manual\DRAW_IN_WINDOW.HTM
* manual\EDITBOX.HTM
* manual\EDIT_EXTENDED.HTM
* manual\EDIT_WORKAREA.HTM
* manual\FRAME.HTM
* manual\GRID.HTM
* manual\HBPRINTER.HTM
* manual\HBPRINTER_@_COMMANDS.HTM
* manual\HBPRINTER_CONSTANTS.HTM
* manual\HBPRINTER_DRAWING_COMMANDS.HTM
* manual\HBPRINTER_FONT_COMMANDS.HTM
* manual\HBPRINTER_GET_COMMANDS.HTM
* manual\HBPRINTER_PRINT_COMMANDS.HTM
* manual\HBPRINTER_SAMPLE.HTM
* manual\HBPRINTER_SET_COMMANDS.HTM
* manual\HBPRINTER_SET_GET_TEXT_COMMANDS.htm
* manual\HOTKEY.HTM
* manual\HOTKEYBOX.HTM
* manual\HYPERLINK.HTM
* manual\IMAGE.HTM
+ manual\INFORMATION.HTM
* manual\INTERNAL.HTM
* manual\IPADDRESS.HTM
* manual\LABEL.HTM
* manual\LIBRARIES.HTM
* manual\LICENSE.HTM
* manual\LISTBOX.HTM
+ manual\MINIPRINT.HTM
+ manual\MINIPRINT_@_COMMANDS.HTM
+ manual\MINIPRINT_CONSTANTS.HTM
+ manual\MINIPRINT_DRAWING_COMMANDS.HTM
+ manual\MINIPRINT_PRINT_COMMANDS.HTM
+ manual\MINIPRINT_SAMPLE.HTM
+ manual\MINIPRINT_SET_COMMANDS.HTM
* manual\MONTHCALENDAR.HTM
+ manual\OOHG.HTM
* manual\OVERVIEW.HTM
+ manual\PICTURE.HTM
* manual\PLAYER.HTM
* manual\PROGRESSBAR.HTM
* manual\PROGRESSMETER.HTM
* manual\RADIOGROUP.HTM
* manual\RICHEDITBOX.HTM
* manual\SCREENSAVER.HTM
* manual\SLIDER.HTM
* manual\SPINNER.HTM
* manual\SPLITBOX.HTM
* manual\STATUSBAR.HTM
* manual\TAB.HTM
* manual\TAPPLICATION.HTM
* manual\TEXTARRAY.HTM
* manual\TEXTBOX.HTM
* manual\TIMEPICKER.HTM
* manual\TIMER.HTM
* manual\TOOLBAR.HTM
+ manual\TOOLTIP.HTM
* manual\TPRINT.HTM
* manual\TREE.HTM
* manual\UNCOMPRESS.HTM
* manual\WAVE.HTM
* manual\WINDOW.HTM
+ manual\WINDOW_COMMANDS.HTM
+ manual\WINDOW_DECLARE.HTM
+ manual\WINDOW_DEFINE.HTM
+ manual\WINDOW_LOAD.HTM
+ manual\WINDOW_SETS.HTM
* manual\XBROWSE.HTM
* manual\ooHG.hhc
* manual\ooHG.hhp
* Updated.
2017-08-25 16:41 UTC-0300 Fernando Yurisich <[email protected]>
* source\bostaurus.prg
* source\c_activex.c
* source\c_controlmisc.c
* source\c_cursor.c
* source\c_dialogs.c
* source\c_font.c
* source\c_gdiplus.c
* source\c_graph.c
* source\c_image.c
* source\c_media.c
* source\c_msgbox.c
* source\c_progressbar.c
* source\c_resource.c
* source\c_scrsaver.c
* source\c_winapimisc.c
* source\c_windows.c
* source\h_activex.prg
* source\h_anigif.prg
* source\h_application.prg
* source\h_browse.prg
* source\h_button.prg
* source\h_checkbox.prg
* source\h_checklist.prg
* source\h_combo.prg
* source\h_comm.prg
* source\h_controlmisc.prg
* source\h_crypt.prg
* source\h_cursor.prg
* source\h_datepicker.prg
* source\h_dialogs.prg
* source\h_dll.prg
* source\h_edit.prg
* source\h_edit_ex.prg
* source\h_editbox.prg
* source\h_error.prg
* source\h_font.prg
* source\h_form.prg
* source\h_frame.prg
* source\h_graph.prg
* source\h_grid.prg
* source\h_help.prg
* source\h_hotkey.prg
* source\h_hotkeybox.prg
* source\h_hyperlink.prg
* source\h_image.prg
* source\h_ini.prg
* source\h_init.prg
* source\h_internal.prg
* source\h_ipaddress.prg
* source\h_label.prg
* source\h_listbox.prg
* source\h_media.prg
* source\h_menu.prg
* source\h_monthcal.prg
* source\h_msgbox.prg
* source\h_notify.prg
* source\h_pdf.prg
* source\h_picture.prg
* source\h_print.prg
* source\h_progressbar.prg
* source\h_progressmeter.prg
* source\h_radio.prg
* source\h_registry.prg
* source\h_report.prg
* source\h_richeditbox.prg
* source\h_scroll.prg
* source\h_scrollbutton.prg
* source\h_scrsaver.prg
* source\h_slider.prg
* source\h_spinner.prg
* source\h_splitbox.prg
* source\h_status.prg
* source\h_tab.prg
* source\h_textarray.prg
* source\h_textbox.prg
* source\h_timer.prg
* source\h_toolbar.prg
* source\h_tooltip.prg
* source\h_tree.prg
* source\h_winapimisc.prg
* source\h_windows.prg
* source\h_xbrowse.prg
* source\h_zip.prg
* source\miniprint.prg
* source\winprint.prg
* Updated copyright info.
2017-08-25 16:28 UTC-0300 Fernando Yurisich <[email protected]>
* samples\dbview\prgs\dbview.prg
* samples\http\h_http.prg
* samples\http\i_socket.ch
* samples\mpm\Readme.txt
* samples\mpm\fmgs\mpm.ch
* samples\oohg\browsecolumncontrols.prg
* samples\oohg\gridcolumncontrols.prg
* samples\oohg\hello.prg
* samples\oohg\maindemooop.prg
* samples\oohg\rtl.prg
* samples\oohg\autoadjust\demo.prg
* samples\oohg\basegraph\demo.prg
* samples\oohg\fastfind\demo.prg
* samples\oohg\histogram\demo.prg
* samples\oohg\mybrowse\mybrowse.prg
* samples\oohg\oohgrecord\brw_odbc.prg
* samples\oohg\oohgrecord\recordmerge.prg
* samples\oohg\oohgrecord\textfile.prg
* samples\oohg\oohgrecord\xbrowsearray.prg
* Updated copyright info.
2017-08-25 16:25 UTC-0300 Fernando Yurisich <[email protected]>
* include\i_app.ch
+ DO EVENTS and SET DEFAULT ICON TO.
* include\i_window.ch
- DO EVENTS and SET DEFAULT ICON TO.
2017-08-25 16:25 UTC-0300 Fernando Yurisich <[email protected]>
* include\bostaurus.ch
* include\hmg.ch
* include\i_activex.ch
* include\i_altsyntax.ch
* include\i_anigif.ch
* include\i_app.ch
* include\i_browse.ch
* include\i_button.ch
* include\i_checkbox.ch
* include\i_checklist.ch
* include\i_color.ch
* include\i_combobox.ch
* include\i_comm.ch
* include\i_controlmisc.ch
* include\i_datepicker.ch
* include\i_dll.ch
* include\i_edit.ch
* include\i_editbox.ch
* include\i_encrypt.ch
* include\i_exec.ch
* include\i_frame.ch
* include\i_graph.ch
* include\i_grid.ch
* include\i_hb_compat.ch
* include\i_help.ch
* include\i_hmg_compat.ch
* include\i_hotkeybox.ch
* include\i_hyperlink.ch
* include\i_image.ch
* include\i_ini.ch
* include\i_internal.ch
* include\i_ipaddress.ch
* include\i_keybd.ch
* include\i_label.ch
* include\i_lang.ch
* include\i_listbox.ch
* include\i_media.ch
* include\i_menu.ch
* include\i_misc.ch
* include\i_monthcal.ch
* include\i_picture.ch
* include\i_progressbar.ch
* include\i_progressmeter.ch
* include\i_pseudofunc.ch
* include\i_radiogroup.ch
* include\i_region.ch
* include\i_registry.ch
* include\i_report.ch
* include\i_richeditbox.ch
* include\i_scroll.ch
* include\i_scrsaver.ch
* include\i_slider.ch
* include\i_spinner.ch
* include\i_splitbox.ch
* include\i_status.ch
* include\i_tab.ch
* include\i_textarray.ch
* include\i_textbox.ch
* include\i_this.ch
* include\i_timer.ch
* include\i_toolbar.ch
* include\i_tooltip.ch
* include\i_tree.ch
* include\i_var.ch
* include\i_windefs.ch
* include\i_window.ch
* include\i_xbrowse.ch
* include\i_zip.ch
* include\minigui.ch
* include\miniprint.ch
* include\oohg.ch
* include\oohg.h
* include\winprint.ch
* Updated copyright info.
2017-08-25 16:05 UTC-0300 Fernando Yurisich <[email protected]>
* ide\sample\cvc.fmg
* ide\sample\form_prefer.fmg
* ide\sample\fp.fmg
* ide\sample\newform.fmg
* ide\sample\qwerty.fmg
* ide\sample\tbarsamp.fmg
* Updated copyright info.
2017-08-25 16:02 UTC-0300 Fernando Yurisich <[email protected]>
* ide\fmgs\fontclrs.fmg
* ide\fmgs\form_prefer.fmg
* ide\fmgs\mymenued.fmg
* ide\fmgs\mytbsel.fmg
* ide\fmgs\mytoolbared.fmg
* ide\fmgs\orderf.fmg
* ide\fmgs\tabprop.fmg
* Updated copyright info.
2017-08-25 15:20 UTC-0300 Fernando Yurisich <[email protected]>
* ide\prgs\dbucvc.prg
* ide\prgs\formedit.prg
* ide\prgs\menued.prg
* ide\prgs\mgide.prg
* ide\prgs\toolbed.prg
* Updated copyright info.
2017-08-24 19:28 UTC-0300 Fernando Yurisich <[email protected]>
* .\compile_MINGW.BAT
+ Libs hbhpdf, libhbhpf y png.
* .\oohg.hbc
+ Libs hbhpdf, libhbhpf y png.
+ Search path for hbzebra and hbhpdf.
* include\i_pseudofunc.ch
+ MsgAlert.
* include\i_windefs.ch
+ MB_TOPMOST constant.
* source\h_msgbox.prg
+ Function SetAutoTypeNoSpaces( lSet ).
+ Some format.
* Right padding is optional in function AutoType.
+ Function _MsgBox( Message, Title, Style, Icon, SysModal, TopMost )
for compatibility with HMG Extended.
2017-08-23 22:29 UTC-0300 Fernando Yurisich <[email protected]>
* doc\classes.txt
* include\i_app.ch
+ Alternative syntax for FormObject and MainName
+ manual\LICENSE.HTM
; A copy of .\LICENSE.txt
+ manual\TAPPLICATION.HTM
; Basic doc for TApplication class.
* manual\ACTIVEX.HTM
* manual\ANIGIF.HTM
* manual\ANIMATEBOX.HTM
* manual\BROWSE.HTM
* manual\CLASSES.HTM
* manual\Changelog.htm
* manual\DATEPICKER.HTM
* manual\DO_REPORT.HTM
* manual\DRAW_IN_WINDOW.HTM
* manual\EDITBOX.HTM
* manual\EDIT_EXTENDED.HTM
* manual\EDIT_WORKAREA.HTM
* manual\OVERVIEW.HTM
* manual\TPRINT.HTM
* manual\TREE.HTM
* manual\UNCOMPRESS.HTM
* manual\WAVE.HTM
* manual\WINDOW.HTM
* Updated links.
* Format.
* manual\ooHG.hhc
* manual\ooHG.hhp
+ Added new pages.
* Changed layout.
* source\h_application.prg
* Class datas are now readonly.
* Format.
2017-08-22 22:56 UTC-0300 Fernando Yurisich <[email protected]>
* manual\Changelog.htm
* manual\CLASSES.HTM
* Updated.
2017-08-22 21:10 UTC-0300 Fernando Yurisich <[email protected]>
- .\COPYING
- .\ChangeLog.001
- .\ChangeLog.002
- .\ChangeLog.003
- .\ChangeLog.004
+ .\ChangeLog.txt
+ .\ChangeLog_001.txt
+ .\ChangeLog_002.txt
+ .\ChangeLog_003.txt
+ .\ChangeLog_004.txt
+ .\LICENSE.txt
; Added extension to enable file opening with doubleclick.
* .\compile30.bat
* .\compile32.bat
* .\compile_MINGW.BAT
* Use version specific object of rc file.
* distros\MakeDistro.bat
* Ignore harbour's uninstall.exe
* distros\MakeExclude.txt
+ Some files.
+ doc\Maintenance.txt
; List of task to maintain docs up to date.
* doc\classes.txt
* Updated.
* ide\prgs\formedit.prg
+ ListBox properties COLWIDTH, MULTITAB, TABSWIDTH and DRAGITEMS.
* Some format.
* include\bostaurus.ch
* Remove && comment.
* include\i_altsyntax.ch
+ DRAGITEMS clause.
! COLUMNWIDTH clause.
* include\i_listbox.ch
+ DRAGITEMS clause.
* include\i_var.ch
* Format.
* include\i_windefs.ch
+ ListBox constants related to drag and drop operations.
- LB_SETCOLUMNWIDTH constant.
* Some format.
* include\oohg.h
+ Events_Drag to symbols table.
* manual\CLASSES.HTM
* manual\Changelog.htm
* manual\GRID.HTM
* manual\LISTBOX.HTM
* manual\OVERVIEW.HTM
* manual\TREE.HTM
* manual\XBROWSE.HTM
* Updated.
* manual\DO_REPORT.HTM
* manual\DRAW_IN_WINDOW.HTM
* manual\EDIT_EXTENTED.HTM
* manual\EDIT_WORKAREA.HTM
* manual\HBPRINTER.HTM
* manual\PLAYER.HTM
* manual\WAVE.HTM
! Tag.
* resources\CompileRes.bat
* resources\CompileRes_mingw.bat
* Now can separatly compile resources for HB30 and HB32.
; Compilation results on oohg_hm30.o or oohg_hm32.o
; If you need oohg.o please rename de proper one.
+ resources\dragdown.cur
+ resources\dragup.cur
- resources\oohg.o
; Copy oohg_hm30.o or oohg_hm32.o to oohg.o if needed.
* resources\oohg.rc
+ MINIGUI_DRAGUP and MINIGUI_DRAGDOWN cursors.
* Format.
* resources\oohg.res
* Updated.
* resources\oohg_bcc.rc
+ MINIGUI_DRAGUP and MINIGUI_DRAGDOWN cursors.
! Missing resources.
* Format.
* source\bostaurus.prg
! BCC errors.
* source\c_controlmisc.c
+ Symbol Events_Drag.
* source\c_winapimisc.c
! BCC errors.
* source\h_crypt.prg
* source\h_report.prg
* && replaced by //.
* source\h_init.prg
* _OOHG_AllVars size.
* Format.
+ Initialization of Drag ListBox message.
* source\h_listbox.prg
+ Support for DRAGITEMS clause.
+ DATA DragItem and DATA DragTo.
+ Methods Events_Drag, TopIndex and EnsureVisible.
* Method ItemHeight simplified.
! TextHeight clause not working for text only listbox.
* Some format.
* Calls to SendMessage changed by calls to C functions.
+ Functions _GETDDLMESSAGE, GET_DRAG_LIST_NOTIFICATION_CODE,
GET_DRAG_LIST_DRAGITEM, DRAG_LIST_DRAWINSERT, DRAG_LIST_MOVE_ITEMS,
LISTBOXSETTOPINDEX, LISTBOXGETTOPINDEX, LISTBOXGETCOUNT,
LISTBOXGETITEMHEIGHT and LISTBOXSETCOLUMNWIDTH
* source\h_windows.prg
+ Support for Drag List notifications.
2017-08-18 20:41 UTC-0300 Fernando Yurisich <[email protected]>
- ide_up_to_2013-08-13.zip
+ include\hmg.ch
; HMG and HMG Extended compatibility file.
* include\i_altsyntax.ch
* Changed placement of some auxiliary variables.
- Unused auxiliary variables.
+ COLUMNWIDTH, MULTITAB and TABSWIDTH clauses.
+ BREAK translation.
* include\i_hmg_compat.ch
- BREAK translation.
* include\i_listbox.ch
+ COLUMNWIDTH, MULTITAB and TABSWIDTH clauses.
+ ONDBLCLICK.
* Format.
* include\i_pseudofunc.ch
+ Functions LB_String2Array, ISWINXPORLATER and ISVISTAORLATER.
* include\i_windefs.ch
+ LB_SETCOLUMNWIDTH.
* manual\Changelog.htm
* Updated.
* resources\WindowsXP.Manifest
* resources\WindowsXP64.Manifest
* Added compatibility with all Windows versions.
* source\c_winapimisc.c
* Some format.
* Some casting.
* Updated function MEMORYSTATUS using api GlobalMemoryStatusEx.
* Functions CREATEFOLDER and SETCURRENTFOLDER now return .T. on success
or .F. on failure.
* Updated function WINVERSION to recognize Windows 10.
+ Function GETCOMPACTPATH.
Truncates a path to fit within a certain number of characters by
replacing path components with ellipses.
* source\h_init.prg
+ Initial value for _OOHG_Main_Icon var.
* source\h_listbox.prg
* Some format.
+ Data lMultiTab and nColWidth.
+ Support for MULTITAB and TABSWIDTH clauses.
+ Function LB_Array2String.
* Method AddItem and functions LISTBOXADDSTRING and LISTBOXADDSTRING2
now return the index of the item added or 0 if an error happened.
* Function LISTBOXGETSTRING: removed string length limitation.
+ Function LISTBOXSETMULTITAB.
+ Methods ItemHeight and ColumnWidth.
! FocusRect is missing.
* source\h_winapimisc.prg
* Some format.
+ Function _GetCompactPath.
Truncates a path to fit within a certain number of characters by
replacing path components with ellipses.
2017-08-12 16:00 UTC-0300 Fernando Yurisich <[email protected]>
* include\bostaurus.ch
+ New constants.
* source\bostaurus.prg
* Synchronized with HMG Extended version.
+ PRG function BT_DrawPolygon.
+ PRG function BT_DrawPolyBezier.
+ PRG Function BT_DrawArc.
+ PRG function BT_DrawChord.
+ PRG function BT_DrawPie.
* PRG function BT_DrawPolyLine now calls C function BT_DRAW_HDC_POLY.
* PRG function BT_DrawEllipse now calls PRG function BT_DrawArc.
+ New constants at C level.
- C function BT_DRAW_HDC_POLYLINE.
+ C function BT_DRAW_HDC_POLY.
+ C function BT_DRAW_HDC_ARC.
+ C function BT_DRAW_HDC_ARCX.
! Some memory leaks at C level.
! Casting of hDC parameter at C function BT_DRAW_HDC_GRADIENTFILL.
! Casting of Orientation parameter at C functions BT_DRAW_HDC_TEXTOUT
and BT_DRAW_HDC_DRAWTEXT.
! Background painting at C functions BT_DRAW_HDC_TEXTOUT,
BT_BITMAPLOADEMF and BT_BMP_TRANSFORM.
! Some missing casting.
* Some format.
* manual\Changelog.htm
* Updated.
2017-08-11 20:16 UTC-0300 Fernando Yurisich <[email protected]>
.\Changelog.004
! Typo.
* .\oohg.hbc
+ Library bostaurus.
* include\i_altsyntax.ch
* Some auxiliary variable names changed.
* Changed the variables in some defines.
+ Missing translations.
+ Support for BOTTOM, RIGHT, TOPALIGN, BOTTOMALIGN, ALIGNMENT,
RIGHTALIGN, VCENTER and MULTICOLUMN clauses.
* include\i_listbox.ch
* source\h_listbox.prg
* manual\LISTBOX.htm
+ MULTICOLUMN property.
* include\i_button.ch
* include\i_status.ch
* Format.
* manual\Changelog.htm
* Updated.
* ide\prgs\formedit.prg
+ MULTICOLUMN property.
! Listbox is not showing items.
2017-08-07 20:46 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_browse.prg
* source\h_xbrowse.prg
! After aborting edition in a control using NAVIGATEBYCELL
the view is shifted to the first column instead of staying
at the edited cell.
* manual\Changelog.htm
* Updated.
2017-07-27 21:09 UTC-0300 Fernando Yurisich <[email protected]>
* include\i_windefs.ch
+ FlashWindowEx constants.
* source\h_form.prg
+ Method Flash( nWhat, nTimes, nMilliseconds ) to TForm class.
nWhat action
FLASHW_CAPTION Flash the window caption.
FLASHW_TRAY Flash the taskbar button.
FLASHW_ALL Flash both the window caption and the taskbar button.
FLASHW_TIMER Add to one the previous to flash continuously, until
the FLASHW_STOP flag is set.
FLASHW_STOP Stop flashing. The system restores the window to its
original state.
FLASHW_TIMERNOFG Add to FLASHW_TRAY to continuously flash the taskbar
button until the window comes to the foreground.
nTimes Number of times to flash the window.
Set to 0 when using FLASHW_TIMER to obtain non-stop
flashing.
Set to 0 when usingh FLASHW_CAPTION, FLASHW_TRAY or
FLASHW_ALL to toggle the current flash status.
nMilliseconds Flashing interval. 0 means use the default cursor blink rate.
If the window caption was drawn as active before the call, the return value is .T.
Otherwise, the return value is .F.
* manual\Changelog.htm
* Updated.
2017-07-20 21:35 UTC-0300 Fernando Yurisich <[email protected]>
* .\compile_MINGW.BAT
* .\oohg.hbc
* ide\prgs\mgide.prg
* samples\mpm\prgs\Mpm.prg
+ library hb_zebra.a
* include\i_app.ch
+ Icon property.
* include\i_var.ch
+ _OOHG_Main_Icon.
* include\i_window.ch
+ FLASH WINDOW.
+ SET DEFAULT ICON TO.
; This command sets the name of the app's default icon.
To be effective, it must take place before the definition of the
program's main window. This command is equivalent to the clause
ICON at DEFINE WINDOW ... MAIN.
* source\bostaurus.prg
! bt_bmp_SaveFile wasn't working when gdi+ system wasn't initialized.
* source\c_windows.c
+ FLASHWINDOWEX function.
* source\h_application.prg
+ Method Icon.
; This method sets/gets the name of the app's default icon.
To be effective, the set of the default icon must take place
before the definition of the program's main window.
* source\h_form.prg
+ Support for SET DEFAULT ICON TO.
* manual\Changelog.htm
* Updated.
2017-07-09 14:02 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_browse.prg
* EditAllCells and EditGrid methods of TOBrowseByCell will place
the focus on the first column instead of the last.
* manual\Changelog.htm
* Updated.
2017-07-09 18:45 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_notify.prg
! Compiler warnings at C level.
* distros\MakeDistro.bat
* source\makelib_mingw.bat
* manual\Changelog.htm
* Updated.
2017-07-09 15:12 UTC-0500 Vicente Guerra <[email protected]>
* samples\oohg\stream\TStreamSSL.prg
! Fixed double BIO_free() call.
2017-07-09 14:58 UTC-0500 Vicente Guerra <[email protected]>
* source\common_make.bat
* source\c_windows.c
* source\h_form.prg
+ source\h_notify.prg
* source\oohg.hbp
* Moved some functions from c_windows.c to h_notify.prg .
+ TNotifyIcon control added. Support for multiple notify icons.
+ samples\oohg\clocks.prg
+ Multiple notify icons sample.
* include\i_timer.ch
* INTERVAL and ACTION clausules defined as optionals, for
avoid an strict order definition.
2017-01-29 00:55 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_image.prg
! IMAGE control with CLIENTEDGE and WHITEBACKGROUND clause and
no picture is not displayed properly inside a TAB control.
* source\makelib_mingw.bat
* Format.
2017-01-26 17:26 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_activex.prg
! RTE when ACTIVEX control is created after a previous release.
2016-12-30 13:35 UTC-0300 Fernando Yurisich <[email protected]>
* samples\oohg\printtest.prg
* Format.
+ Sample about printing text using proportional font.
* source\c_windows.c
* source\h_radio.prg
! BCC compiler errors.
2016-12-18 21:03 UTC-0300 Fernando Yurisich <[email protected]>
* manual\Changelog.htm
* Updated.
* source\h_menu.prg
! Method DisableVisualStyle not working.
Note that disabling visual style for a MAIN menu is the
same as disabling visual style for the form it belongs to.
2016-12-18 20:10 UTC-0300 Fernando Yurisich <[email protected]>
* manual\Changelog.htm
* Updated.
* source\h_windows.prg
! Painting after removing visual styles.
2016-12-18 19:24 UTC-0300 Fernando Yurisich <[email protected]>
* doc\classes.txt
* manual\CLASSES.HTM
* manual\Changelog.htm
* Updated.
* source\h_button.prg
* source\h_checkbox.prg
* source\h_radio.prg
* Use ::IsVisualStyled instead of ::lVisualStyled.
* source\h_windows.prg
* DATA lVisualStyled is now PROTECTED, use ::IsVisualStyled instead.
+ METHOD IsVisualStyled.
2016-12-16 22:55 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_windows.prg
* METHOD DisableVisualStyle now returns Nil.
* manual\Changelog.htm
* Updated.
2016-12-16 22:42 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
! Previous entry.
* doc\classes.txt
* Updated.
* ide\prgs\formedit.prg
+ OOHGDRAW and WINDRAW clauses.
THEMED and NOTHEME are still recognized.
* include\i_altsyntax.ch
* include\i_button.ch
* include\i_checkbox.ch
* include\i_radiogroup.ch
* INCOMPATIBLE.
THEMED and NOTHEME clauses changed by OOHGDRAW and WINDRAW.
OOHGDRAW is the default clause unless the OS does not supports
visual styles or if visual styles are disabled for the app, in
which case defaults to WINDRAW.
Those who do not want to change their sources must include
this pre-processor directives:
#xtranslate BUTTON [ <x> ] THEMED => BUTTON [ <x> ] OOHGDRAW
#xtranslate BUTTON [ <x> ] NOTHEME => BUTTON [ <x> ] WINDRAW
#xtranslate CHECKBUTTON [ <x> ] THEMED => BUTTON [ <x> ] OOHGDRAW
#xtranslate CHECKBUTTON [ <x> ] NOTHEME => BUTTON [ <x> ] WINDRAW
#xtranslate CHECKBOX [ <x> ] THEMED => CHECKBOX [ <x> ] OOHGDRAW
#xtranslate CHECKBOX [ <x> ] NOTHEME => CHECKBOX [ <x> ] WINDRAW
#xtranslate RADIOGROUP [ <x> ] THEMED => RADIOGROUP [ <x> ] OOHGDRAW
#xtranslate RADIOGROUP [ <x> ] NOTHEME => RADIOGROUP [ <x> ] WINDRAW
#translate THEMED <themed> => OOHGDRAW <themed>
#translate NOTHEME <notheme> => WINDRAW <notheme>
* manual\BUTTON.HTM
* manual\CHECKBOX.htm
* manual\CLASSES.HTM
* manual\Changelog.htm
* manual\RADIOGROUP.htm
* Updated.
* samples\mpm\fmgs\main.Fmg
* Removed unneeded clause.
* source\h_button.prg
* DATA lThemed renamed to lLibDraw. INCOMPATIBLE.
Defaults to _OOHG_UsesVisualStyle().
- Comment.
! Painting when button is not the focused control.
* Do not use custom draw when control's lVisualStyled flag is set.
* source\h_checkbox.prg
* DATA lThemed renamed to lLibDraw. INCOMPATIBLE.
Defaults to _OOHG_UsesVisualStyle().
* Do not use custom draw when control's lVisualStyled flag is set.
* source\h_checklist.prg
! NM_SETFOCUS event handler was not setting the form's
LastFocusedControl property.
* source\h_combo.prg
! CBN_SETFOCUS event handler was not setting the form's
LastFocusedControl property.
* source\h_controlmisc.prg
! Method DoLostFocus not working properly when there are 2 or more
TEXTBOX controls with VALID clause in the same form.
! EN_SETFOCUS, NM_SETFOCUS and BN_SETFOCUS event handler was not setting the form's
LastFocusedControl property.
* source\h_listbox.prg
! LBN_SETFOCUS event handler was not setting the form's
LastFocusedControl property.
* source\h_menu.prg
* Force control's redraw after changing colors.
* source\h_monthcal.prg
! WM_SETFOCUS event handler was not setting the form's
LastFocusedControl property.
* source\h_radio.prg
* DATA lThemed renamed to lLibDraw. INCOMPATIBLE.
Defaults to _OOHG_UsesVisualStyle().
* BACKGROUND clause no longer forces OOHGDRAW clause.
* Do not use custom draw when control's lVisualStyled flag is set.
* source\h_windows.prg
+ DATA lVisualStyled, defaults to _OOHG_UsesVisualStyle().
+ METHOD DisableVisualStyle.
+ DisableVisualStyle function at C level.
2016-12-10 15:52 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_radio.prg
! Missing declaration of __MSABI_LONG on older versions of Windows
is causing errors at compile time.
* IsAppThemed() calls replaced by _OOHG_UsesVisualStyle().
* manual\Changelog.htm
* Updated.
* source\bostaurus.hbp
* source\hbprinter.hbp
* source\oohg.hbp
* source\winprint.hbp
+ Comment.
2016-11-30 21:27 UTC-0300 Fernando Yurisich <[email protected]>
* include\i_altsyntax.ch
* include\i_browse.ch
* include\i_grid.ch
* include\i_xbrowse.ch
+ ONBEFOREEDITCELL clause.
* source\h_label.prg
* Format.
* source\h_radio.prg
! RadioGroup with AUTOSIZE clause is not painted.
* DATA oBkGrnd initialized to Nil instead of 0.
* Format.
+ Left alignment of THEMED items.
* CustomDraw is now performed using DrawThemeTextEx(),
GetThemePartSize() and IsThemeBackgroundPartiallyTransparent().
* manual\Changelog.htm
* Updated.
2016-11-27 12:12 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_error.prg
! Typo.
* Format.
* source\h_grid.prg
+ DATA OnBeforeEditCell.
If setted, this code block is evaluated before initiating the
cell's edition and if it returns false the edition is aborted
as if the user has desisted.
To avoid bad side effects do not delete items or change
control's value inside this code block.
* source\h_browse.prg
+ Support for OnBeforeEditCell.
* source\h_xbrowse.prg
+ Support for OnBeforeEditCell.
* Format.
* source\h_windows.prg
* Format.
* source\h_controlmisc.prg
! RTE when control's parent is not derived from TWindow class.
* manual\Changelog.htm
* Updated.
2016-11-12 12:03 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_xbrowse.prg
! RTE when adding a column to a browse with FIXEDBLOCKS clause.
2016-11-03 19:37 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_controlmisc.prg
* oSelf->lOldBackColor is set to -1 when a NULL BRUSH is
asigned to oSelf->BrushHandle.
! RTE at function Events_Color_InTab.
* source\c_windows.c
* Format.
2016-11-02 10:26 UTC-0300 Fernando Yurisich <[email protected]>
* distros\MakeDistro.bat
+ /L switch to skip the build of the IDE.
* include\oohg.h
+ Declaration for AnsiToWide C function.
* source\c_winapimisc.c
+ AnsiToWide function.
* source\c_windows.c
* Function SetLayeredWindowAttributes was rewritten.
* source\h_controlmisc.prg
* Method Events_Color of class TControl now saves a reference
to NULL_BRUSH when data Transparent is .T.
* Function Events_Color_InTab now saves a reference
to NULL_BRUSH when data Transparent is .T.
* source\h_form.prg
* Assign NULL instead of 0 to oSelf->BrushHandle.
2016-10-25 18:37 UTC-0300 Fernando Yurisich <[email protected]>
* distros\MakeDistro.bat
* doc\classes.txt
+ Class TANIGIF.
* ide\mgide.rc
+ ANIGIF related resource.
* ide\fmgs\orderf.fmg
* Some methods were renamed.
+ ide\imgs\gif.ico
* Image for ANIGIF control in "Controls" panel.
* ide\formedit.prg
* Some methods were renamed.
+ Support for ANIGIF.
* include\i_altsyntax.ch
+ Support for ANIGIF.
+ include\i_anigif.ch
+ ANIGIF control.
* include\oohg.ch
+ i_anigif.ch
* manual\ACTIVEX.htm
* Next topic is now ANIGIF.
+ manual\ANIGIF.htm
* ANIGIF syntax.
* manual\ANIMATEBOX.htm
* Previous topic is now ANIGIF.
* manual\BUTTON.HTM
* Format.
* manual\CLASSES.HTM
* manual\Changelog.htm
* Updated.
* manual\OVERVIEW.HTM
* Fixed version number changed by CVS date keyword.
* manual\ooHG.hhc
* manual\ooHG.hhk
* manual\ooHG.hhp
+ ANIGIF page.
+ source\h_anigif.prg
* Class TAniGIF.
* Function SaveResourceToFile.
* source\common_make.bat
* source\makelib_mingw.bat
* source\oohg.hbp
+ h_anigif to input files list.
* source\h_checkbox.prg
! Focus rect is shown when control has no caption.
* source\h_tree.prg
+ DATA OnMouseDrop.
+ DATA OnDrop.
* source\h_windows.prg
- DATA OnMouseDrop.
- DATA OnDrop.
2016-10-22 13:24 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_activex.prg
* source\h_browse.prg
* source\h_button.prg
* source\h_checkbox.prg
* source\h_checklist.prg
* source\h_combo.prg
* source\h_comm.prg
* source\h_controlmisc.prg
* source\h_datepicker.prg
* source\h_dialogs.prg
* source\h_editbox.prg
* source\h_font.prg
* source\h_form.prg
* source\h_frame.prg
* source\h_grid.prg
* source\h_hotkey.prg
* source\h_hotkeybox.prg
* source\h_hyperlink.prg
* source\h_image.prg
* source\h_internal.prg
* source\h_ipaddress.prg
* source\h_label.prg
* source\h_listbox.prg
* source\h_media.prg
* source\h_menu.prg
* source\h_monthcal.prg
* source\h_msgbox.prg
* source\h_pdf.prg
* source\h_picture.prg
* source\h_print.prg
* source\h_progressbar.prg