-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathChangeLog_003.txt
4619 lines (4164 loc) · 180 KB
/
ChangeLog_003.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_003.txt $
*/
2013-11-04 19:15 UTC-0200 Fernando Yurisich <[email protected]>
* source\h_form.prg
! RTE when a window is defined inside a template because the
included window is asigned the same name as the loaded window.
* source\makelib_bcc.bat
! Wrong folder is created.
2013-11-03 14:28 UTC-0200 Fernando Yurisich <[email protected]>
* source\h_pdf.prg
; TPDF class does not supports EXINFO nor IPTC info in
JPEG images.
2013-11-01 22:12 UTC-0200 Fernando Yurisich <[email protected]>
* source\h_xbrowse.prg
! RTE when adding a column to a Browse control.
2013-11-01 18:36 UTC-0200 Fernando Yurisich <[email protected]>
* .\compile_MINGW.bat
* hbmysql library is now optional because it may not be
present in some Harbour builds.
* source\BuildLib.bat
+ LIB_GUI envvar.
+ Some comments.
* BIN_HRB envvar preserved if already defined.
* source\hbprinter.hbp
* source\miniprint.hbp
* source\oohg.hbp
* Use LIB_GUI envvar instead of fixed path.
* Comments.
* source\makelib_mingw.bat
! Process cancels when PATH envvar is empty.
+ Messages showing process' progress.
* source\h_image.prg
! Image control with Height==0 and Width==0 displays a black
rectangle when the control is resized (caused by not loading
the source image at full size).
2013-10-28 21:34 UTC-0200 Fernando Yurisich <[email protected]>
* lib\hb\mingw\.cvsignore
* lib\xhb\bcc\.cvsignore
* Updated.
2013-10-27 19:08 UTC-0200 Fernando Yurisich <[email protected]>
* doc\How_to_Configure_and_Use.txt
! Missing Id.
! Wrong path in set LIB_GUI.
2013-10-27 14:33 UTC-0600 Vicente Guerra <[email protected]>
* .\compile_bcc.bat
* Added new Harbour .LIB names.
2013-10-27 13:37 UTC-0200 Fernando Yurisich <[email protected]>
* .\BuildApp.bat
! Fixed wrong message when exe is running.
* .\oohg.hbc
* Path of _temp.o file to current folder.
2013-10-27 11:48 UTC-0200 Fernando Yurisich <[email protected]>
+ lib\xhb\bcc\.cvsignore
* Updated.
2013-10-26 13:28 UTC-0200 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
2013-10-26 13:25 UTC-0200 Fernando Yurisich <[email protected]>
* source\h_print.prg
! TPRINTDOS does not print from preview.
2013-10-24 00:41 UTC-0200 Fernando Yurisich <[email protected]>
* source\h_browse.prg
* source\h_grid.prg
* source\h_xbrowse.prg
! Hidden columns are edited using tiny window.
2013-10-17 17:50 UTC-0200 Fernando Yurisich <[email protected]>
* source\h_richeditbox.prg
+ DATA lDefault: set to .F. so after DBLCLICK event the default
action (select one word) is not performed. Defaults to .T.
2013-10-16 17:55 UTC-0200 Fernando Yurisich <[email protected]>
* source\h_error.prg
! Error log is not created when app runs in root folder.
2013-10-12 17:55 UTC-0200 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
* source\h_pdf.prg
; TPDF class only supports 24 bpp TIFF images.
* source\c_gdiplus.c
+ Support for color depth parameter.
* Use NULL when image format do not support parameters.
* source\h_windows.prg
+ nColorDepth parameter in methods SaveAs and Print.
; Use SaveAs( cFile, lAll, cType, nQuality, nColorDepth ).
Use Print( nFRow, nFCol, nTRow, nTCol, lAll, cType, nQuality, nColorDepth).
nFRow == from row.
nFCol == from col.
nTRow == to row.
nTCol == to col.
cFile == name of the file to create.
lAll == .T. to save the whole window, .F. to save the
windows's client area only.
cType == "BMP", "JPG", "JPEG", "TIF", "TIFF" or "PNG".
nQuality == for JPEG format only, a value from 0 (lowest) to
100 (highest, default). For TIFF format only, a 0 to
save uncompressed or a 1 to save using LZW (default).
Other formats ignore these parameter.
GIF images are always compressed using LZW.
PNG images are always compressed using ZIP.
BMP images are always uncompressed.
nColorDepth == 1, 4, 8, 24 or 32 for TIFF format, defaults to
32/24 for images with/without transparency.
Other formats ignore these parameter.
BMP and JPEG images are always saved at 24 bpp.
GIF images are always saved at 8 bpp.
PNG images are always saved at 24 bpp color depth
if they don't have transparency or at 32 bpp if
they have it.
2013-10-12 09:28 UTC-0200 Fernando Yurisich <[email protected]>
* source\c_gdiplus.c
! BCC warnings.
2013-10-11 22:00 UTC-0200 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
* .\compile_MINGW.bat
+ /i switch to prevent linking of OOHG resource file.
* include\i_windefs.ch
+ Defines for HDN_ITEMCHANGING and HDN_TRACK.
* source\h_grid.prg
! Visual artifacts when sizing column headers.
+ METHOD FirstVisibleItem.
* Function ListView_GetTopIndex returns 1-based index.
* doc\classes.txt
* Updated.
2013-10-07 18:04 UTC-0200 Fernando Yurisich <[email protected]>
* source\h_grid.prg
! Grid is not painted properly after resizing one column and
clicking in a new row.
2013-10-04 18:09 UTC-0500 Vicente Guerra <[email protected]>
* samples\oohg\stream\TStream.prg
! Fixed TStreamFile:Skip() method.
+ ::nMinToFill property added. Autofills when buffer is lower
than this value.
2013-10-02 21:17 UTC-0300 Fernando Yurisich <[email protected]>
* .\compile_MINGW.bat
! Libraries not linked in console mode.
2013-10-01 21:13 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
2013-10-01 20:45 UTC-0300 Fernando Yurisich <[email protected]>
* doc\classes.txt
* Updated.
* include\i_altsyntax.ch
* include\i_xbrowse.ch
* source\h_xbrowse.prg
+ DATA lUpdCols.
+ Added clause UPDATECOLOR to force a color update of the
displayed items on every change.
* Redraw is disabled during ::Refresh().
! Can't refresh row color unless ::RefreshRow() is called.
* source\h_browse.prg
- DATA lUpdCols.
2013-09-30 17:35 UTC-0300 Fernando Yurisich <[email protected]>
* source\c_gdiplus.c
* Use HB_ISNUM and HB_ISLOG macros.
2013-09-29 21:30 UTC-0500 Vicente Guerra <[email protected]>
* source\c_image.c
* source\c_gdiplus.c
* Added casting.
+ Automatic support for Gdi+ library (when available).
2013-09-29 23:04 UTC-0300 Fernando Yurisich <[email protected]>
* doc\classes.txt
* Updated.
2013-09-29 20:02 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
* include\i_altsyntax.ch
* include\i_xbrowse.ch
* source\h_xbrowse.prg
! The first row can't be deleted when it's the only one.
+ Method IsTableEmpty to class ooHGRecord: returns .T. when the
data origin is empty.
+ Clause NOSHOWEMPTYROW: it hides the empty row of the XBrowse
control when the data origin is empty. It needs that the data
origin has IsTableEmpty method properly defined.
2013-09-28 13:25 UTC-0300 Fernando Yurisich <[email protected]>
* include\i_hmg_compat.ch
* include\i_altsyntax.ch
* include\i_button.ch
* include\i_image.ch
* source\h_button.prg
* source\h_image.prg
+ DIBSECTION clause to Button, ButtonCheck and ButtonEx controls.
+ NOTRANSPARENT, NO3DCOLORS and NODIBSECTION clauses to Image
controls.
; This clauses improve image support.
* source\h_print.prg
! Printer icon shows wrong background.
* source\miniprint.prg
* include\miniprint.ch
! Pages after 9999 are not shown in preview.
+ "Wait while closing" window.
2013-09-27 23:39 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
! Current cell is not shown when scrolling a TGridByCell using
the right arrow.
! The edition window of a TGridByCell acts "independently".
! Edit controls with inputmask behave oddly.
2013-09-25 20:11 UTC-0300 Fernando Yurisich <[email protected]>
+ source\c_gdiplus.c
! Compilation under xHarbour and BCC.
* .\compile_bcc.bat
! No EXE is generated because RTL.LIB wasn't found.
2013-09-24 21:03 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
* source\h_xbrowse.prg
! COLUMNCONTROLS clause in XBRowse is ignored.
2013-09-23 21:10 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
* source\h_xbrowse.prg
! RTE at TXBROWSE:REFRESHROW(375) when an XBrowse is defined
inside a Tab.
2013-09-23 20:02 UTC-0300 Fernando Yurisich <[email protected]>
+ source\c_gdiplus.c
* Missing in previous commit.
* .\Changelog
* Previous entry corrected.
2013-09-22 23:20 UTC-0300 Fernando Yurisich <[email protected]>
* source\c_image.c
+ Function _OOHG_SIZEOFHBITMAP.
* source\h_msgbox.prg
+ Static _OOHG_OneItemPerLine.
+ Function SetOneArrayItemPerLine, when .T. function AutoType
will show items in separated lines.
* Function AutoType.
* Minor formatting.
+ source\c_gdiplus.c
+ Support for saving a BMP as JPEG, PNG and TIFF.
Borrowed from HMG Extended Gdiplus sample.
* source\common_make.bat
* source\makelib_mingw.bat
* source\oohg.hbp
+ c_gdiplus.c
* source\h_windows.prg
+ Support for JPEG, PNG and TIFF formats in methods SaveAs
and Print.
; Use SaveAs( cFile, lAll, cType, nQuality ).
Use Print( nFRow, nFCol, nTRow, nTCol, lAll, cType, nQuality ).
nFRow == from row.
nFCol == from col.
nTRow == to row.
nTCol == to col.
cFile == name of the file to create.
lAll == .T. to save the whole window, .F. to save the
windows's client area only.
cType == "BMP", "JPG", "JPEG", "TIF", "TIFF" or "PNG".
nQuality == for JPEG format only, a value from 0 (lowest)
to 100 (highest). For TIFF format only, a 0 to
save uncompressed or a 1 to save using LZW.
2013-09-19 17:36 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_msgbox.prg
* source\c_msgbox.c
+ Added function MsgExclamationYesNo().
Thanks to Ricardo Sassy.
2013-09-18 18:36 UTC-0300 Fernando Yurisich <[email protected]>
* include\i_altsyntax.ch
! RTE when no FIXEDCONTROLS clause nor DYNAMICCONTROLS clause
is used in DEFINE/END GRID/BROWSE/XBROWSE.
! RTE when no FIXEDBLOCKS clause nor DYNAMICBLOCKS clause
is used in DEFINE/END BROWSE/XBROWSE.
+ Added UNSYNCHRONIZED clause.
2013-09-12 20:08 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_graph.prg
! Pie chart wrongly displayed when one of the series values is 0.
2013-09-11 19:52 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
- Unneeded code.
! TGridControlComboBox display a blank cell when valuesource
contains trailing blanks.
2013-09-10 19:51 UTC-0300 Fernando Yurisich <[email protected]>
* include\i_altsyntax.ch
+ ON APPEND clause.
+ ONEDITCELL clause.
+ ON EDITCELL clause.
* source\h_xbrowse.prg
! RTE at method TXBrowse:EditItem_B().
2013-09-09 22:42 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entries corrected.
* source\h_browse.prg
- Method FixBlocks().
- Method FixControls().
! Method FixBlocks() was not working as intended.
! Method FixControls() was not working as intended.
! SET BROWSEFIXEDCONTROLS not working as intended.
* source\h_xbrowse.prg
- Method FixControls().
! Method FixBlocks() was not working as intended.
! Method FixControls() was not working as intended.
! SET XBROWSEFIXEDCONTROLS not working as intended.
% Some unnecessary conditions.
* source\h_grid.prg
! Method FixControls() was not working as intended.
! SET GRIDFIXEDCONTROLS not working as intended.
% Some unnecessary conditions.
; FIXEDCONTROLS clause prevents Grid, XBrowse and Browse objects
to use more than one TGridControlObject, thus improving
performance.
; This clause has a drawback: you can't change an edit control by
simply doing ::EditControls[nCol] := <new edit control>.
To implement the change you must add a call to ::FixControls(.T.).
; The Grid, XBrowse and Browse controls default behaviour is not
changed, it remains as if FIXEDCONTROLS is .F.
To create, from some point on, all controls with fixed/non-fixed
edit controls, use:
SET GRIDFIXEDCONTROLS ON | OFF for Grids, or
SET BROWSEFIXEDCONTROLS ON | OFF for Browses, or
SET XBROWSEFIXEDCONTROLS ON | OFF for XBrowses.
; This sets don't change the behaviour of already defined objects.
To change the behaviour of an already defined object, use
FixControls( .T. | .F. ).
2013-09-09 19:09 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_xbrowse.prg
* source\h_browse.prg
! RTE in method Refresh().
2013-09-09 18:18 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_xbrowse.prg
* source\h_grid.prg
! Column headers are not exported in methods ToExcel() and
ToOpenOffice().
2013-09-08 20:48 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_checklist.prg
+ Method ToOpenOffice().
* source\h_xbrowse.prg
+ Method FixControls() to support SET XBROWSEFIXEDCONTROLS.
+ Method ToOpenOffice().
+ Support for FIXEDCONTROLS clause.
! RTE in method FixBlocks().
+ Parameters nColFrom and nColTo to method ToExcel()
* Name of some local variables.
* Title is exported after autofiting columns in method ToExcel().
! RTE in method ToExcel() when a field is defined by a block.
+ Parameter nOnFocusPos to method EditCell().
+ Function SetXBrowseFixedControls().
* source\h_browse.prg
+ Method FixControls() to support SET BROWSEFIXEDCONTROLS.
+ Support for FIXEDCONTROLS clause.
! RTE in method FixBlocks().
+ Parameter nOnFocusPos to method EditCell().
+ Function SetBrowseFixedControls().
* source\h_grid.prg
+ Static var _OOHG_GridFixedControls.
+ Support for FIXEDCONTROLS clause.
+ DATAs aEditControls and lFixedControls.
+ Method FixControls() to support SET GRIDFIXEDCONTROLS.
+ Support for FIXEDCONTROLS clause.
+ Parameters nItemTo, nColFrom and nColTo to methods ToExcel()
and ToOpenOffice().
* Title is exported after autofiting columns in methods ToExcel()
and ToOpenOffice().
% Method EditCell2().
+ Function SetGridFixedControls().
* include\i_grid.ch
+ FIXEDCONTROLS and DYNAMICCONTROLS clauses.
+ SET GRIDFIXEDCONTROLS ON | OFF.
* include\i_xbrowse.ch
* include\i_browse.ch
* include\i_hmg_compat.ch
+ FIXEDCONTROLS and DYNAMICCONTROLS clauses.
* include\i_altsyntax.ch
+ Support for FIXEDCONTROLS and DYNAMICCONTROLS clauses.
! Support for FIXEDBLOCKS and DYNAMICBLOCKS clauses.
! Support for DOUBLEBUFFER and SINGLEBUFFER clauses.
! Support for SYNCHRONIZED and UNSYNCHRONIZED clauses.
* Minor formatting.
2013-09-05 22:00 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
+ Method ToOpenOffice() to export grid to a Calc spreadsheet.
* Name of local variable.
2013-09-04 23:38 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
* include\i_windefs.ch
+ Define for HDN_ITEMCHANGED.
* include\i_xbrowse.ch
+ SET XBROWSEFIXEDBLOCKS ON | OFF
* Handling of FIXEDBLOCKS and DYNAMICBLOCKS clauses.
* include\i_hmg_compat.ch
* Handling of FIXEDBLOCKS and DYNAMICBLOCKS clauses.
* include\i_browse.ch
+ SET BROWSEFIXEDBLOCKS ON | OFF
* Handling of FIXEDBLOCKS and DYNAMICBLOCKS clauses.
* include\i_altsyntax.ch
* Handling of FIXEDBLOCKS and DYNAMICBLOCKS clauses.
* include\i_combobox.ch
+ Support for REFRESH clause.
+ SET COMBOREFRESH ON | OFF.
* source\h_grid.prg
! Typo.
! Control is erased after doubleclicking on a header's separator.
* source\h_xbrowse.prg
+ Static var _OOHG_XBrowseFixedBlocks.
* Initial value of DATA lFixedBlocks.
* ::FixBlocks() to support SET XBROWSEFIXEDBLOCKS.
+ Function SetXBrowseFixedBlocks() to set XBROWSEFIXEDBLOCKS
status globally.
* INCOMPATIBLE: FIXEDBLOCKS is .T. by default.
; To obtains previous behaviour use SET XBROWSEFIXEDBLOCKS OFF
before creating the controls (this set doesn't change the
behaviour of already defined controls).
To change the behaviour of an already defined control, use
FixBlocks( .T. | .F. ).
* source\h_browse.prg
+ Static var _OOHG_BrowseFixedBlocks.
+ ::FixBlocks() to support SET BROWSEFIXEDBLOCKS.
! ::RefreshData() calls ::Refresh() two times.
+ Function SetBrowseFixedBlocks() to set BROWSEFIXEDBLOCKS status
globally.
* INCOMPATIBLE: FIXEDBLOCKS is .T. by default.
; To obtains previous behaviour use SET BROWSEFIXEDBLOCKS OFF
before creating the controls (this set doesn't change the
behaviour of already defined controls).
To change the behaviour of an already defined control, use
FixBlocks( .T. | .F. ).
* source\h_combo.prg
+ Static var _OOHG_ComboRefresh.
* Initial value of DATA lRefresh.
! RTE when NOREFRESH clause is not used.
% Check for sourceorder.
+ Function SetComboRefresh() to set REFRESH status globally.
2013-09-03 22:37 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_combo.prg
+ DATAs lRefresh, SourceOrder and OnRefresh.
+ OnRefresh event at the end of ::Refresh().
+ New parameter to ::AddItem() and ::InsertItem().
Use it to set item's valuesource.
Never use 0 as valuesource because 0 means no item is selected.
* include\i_combobox.ch
* include\i_altsyntax.ch
+ Support for NOREFRESH and SOURCEORDER clauses.
+ Support for ON REFRESH clause.
; NOREFRESH prevents ::RefreshData() from calling ::Refresh().
; SOURCEORDER sets the index order of the associated workarea.
Also: ITEMSOURCE { cWorkArea, bBlock, SourceOrder } (this
syntax takes preference over the first one).
SourceOrder should be NIL, a Number, a String or a Block.
When it's a Block, it will be evaluated inmediatly before
loading the items.
2013-08-23 20:21 UTC-0300 Fernando Yurisich <[email protected]>
* .\compile_MINGW.bat
! EXE is not started after compilation.
2013-08-22 19:31 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
2013-08-22 19:30 UTC-0300 Fernando Yurisich <[email protected]>
* source\makelib_pc.bat
! Missed in previous commit.
2013-08-22 19:23 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entries corrected.
* .\BuildApp.bat
* .\compile.bat
* .\compile_MINGW.bat
* .\compile_bcc.bat
* .\compile_pc.bat
* .\compile_vc.bat
* doc\How_to_Configure_and_Use.txt
* resources\CompileRes.bat
* source\BuildLib.bat
* source\hbprinter.hbp
* source\makelib.bat
* source\makelib_bcc.bat
* source\makelib_mingw.bat
* source\makelib_pc.bat
* source\makelib_vc.bat
* source\miniprint.hbp
* source\oohg.hbp
* source\xml.bat
* Comments updated.
* Changed ooHG_INSTALL by HG_ROOT.
* EnvVars normalized.
* Always use user-defined envvars.
+ Added support for different drives.
+ Added support for %9 parameter.
+ Added check for EXE running.
+ Added check for PRG existence.
* Changed path of temporary files to source's folder instead
of .\resources folder.
* source\h_editbox.prg
! Changed initial value of DATA nOnFocusPos to -4 so the
behaviour of TEdit() .and. TRichEdit() before
22013-07-29 22:28 UTC-0300 is restored.
* source\h_richeditbox.prg
* include\i_richeditbox.prg
+ Added support for FOCUSEDPOS at define time.
2013-08-09 17:27 UTC-0300 Fernando Yurisich <[email protected]>
+ doc\How_to_Configure_and_Use.txt
TODO: add configuration for new compilers and BuildApp.bat
2013-08-08 21:32 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
+ Added support for new parameter lNoModal in TGridControl*().
* Some comments changed.
2013-08-08 20:32 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
! TGridByCell():EditGrid() not working propery when the user
clicks outside the edition window.
2013-08-08 19:32 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
+ Added DATAs lNoModal and HeaderFontHandle to TGrid().
+ Added METHOD HeaderSetFont.
+ Added support for NOMODALEDIT clause to TGridByCell().
+ Added DATA lNoModal to TGridControl().
+ Added support for NOMODALEDIT clause to TGridControl
* include\i_grid.ch
* include\i_altsyntax.ch
+ Added NOMODALEDIT clause.
2013-08-07 22:57 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
2013-08-07 22:52 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
! TGridByCell():EditCell() with EDITLIKEEXCELL clause doesn't
act properly when edition is ended with a cursor key.
2013-08-07 22:32 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
! nOnFocusPos is not working.
! TGridControl():CreateWindow() cancels if no grid is associated.
* TGridControlTextBox():cEditKey defaults to F2 instead of NIL.
! TGridControlTextBox():New() cancels if no grid is associated.
! TGridControlTextBox():CreateWindow() steps over ::cEditKey
when it's diferent from F2.
! TGridControlTextBox():CreateWindow() cancels if no grid is
associated.
! TGridControlTextBox():CreateWindow() doesn't release ::cEditKey
when it's diferent from F2.
2013-08-06 21:05 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_browse.prg
+ Added DATA lUpdCols.
+ Added METHOD UpDateColors.
* include\i_browse.prg
* include\i_hmg_compat.prg
* include\i_altsyntax.prg
+ Added clause UPDATECOLOR to force a color update of the
displayed items on every change. This restores the behaviour
before 22013-06-24 20:17 UTC-0300.
2013-08-02 23:55 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
* source\h_grid.prg
* EDITLIKEEXCEL limited to INPLACE controls.
+ Added DATA bPosition to TGrid().
+ Added parameter nOnFocusPos to TGrid():EditCell(),
TGrid:EditCell2(), TGridByCell():EditCell() and
TGridByCell:EditCell2().
+ Added support EDITLIKEEXCEL to TGridByCell():EditGrid()
and TGridByCell():EditCell().
+ Added support for starting cell edition when user presses a
key in _OOHG_TGridByCell_Events2(). Applies to cells with a
ColumnControl that includes lLikeExcel == .T. and to cells
of a TGridByCell() with EDITLIKEEXCEL clause.
* Some comments updated.
+ Added DATAs lLikeExcel and nOnFocusPos to TGridControl().
- Deleted DATAs lLikeExcel and nOnFocusPos from
TGridControlTextBox().
! Fixed TGridControlTextBox:CreateWindow() is not working
properly when lLikeExcel == .T.
2013-08-02 00:08 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
* source\h_grid.prg
+ Added DATAs lButtons, AllowDelete, bDelWhen, DelMsg, onDelete,
lNoDelMsg, and AllowAppend.
- Deleted DATA Append.
+ Added method TGrid():Append().
+ Added support for DELETE, DELETEWHEN, DELETEMSG, NODELETEMSG,
ON DELETE, APPEND and ON APPEND clauses.
- Deleted TGridByCell():DeleteItem().
* After deleting an item in TGridByCell() the ::Value stays
unchanged except when there are no more items.
* Do not change received parameter in method TGridByCell():Value.
+ Added DATA oGrid to TGridControl().
+ Added support for Grid's lButtons property in TGridControl*().
- Deleted DATA oGrid from:
TGridControlTextBox()
TGridControlComboBox()
TGridControlComboText()
TGridControlImageList()
TGridControlImageData()
+ Added new parameter to TGridControl*():New() calls.
* Some comments updated.
* source\h_xbrowse.prg
- Deleted DATAs AllowDelete, bDelWhen, DelMsg, onDelete and
AllowAppend.
+ Added support for NODELETEMSG, EDITLIKEEXCEL and USEBUTTONS
clauses.
* Changed some hardwired constants by defined constants.
* source\h_browse.prg
- Deleted DATA lNoDelMsg.
+ Added support for EDITLIKEEXCEL and USEBUTTONS clauses.
* Changed some hardwired constants by defined constants.
* include\i_grid.ch
+ Added USEBUTTONS clause (indicates that TGridControls will
have buttons).
+ Added support for DELETE, DELETEWHEN, DELETEMSG, NODELETEMSG,
ON DELETE, APPEND and ON APPEND clauses.
* include\i_browse.ch
+ Added EDITLIKEEXCEL and USEBUTTONS clauses.
* include\i_hmg_compat.ch
+ Added EDITLIKEEXCEL and USEBUTTONS clauses.
* include\i_xbrowse.ch
+ Added NODELETEMSG, EDITLIKEEXCEL and USEBUTTONS clauses.
* include\i_altsyntax.ch
+ Added support for new clauses in Grid, XBrowse and Browse.
* source\h_init.prg
+ Added support for 'Delete Item' message.
TODO: Translate message into Croatian, Basque, French,
German, Italian, Polish, Portuguese, Russian, Finnish,
Dutch and Slovenian.
2013-08-01 21:45 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
! Fixed: grid is not painted correctly after resizing column.
* source\h_textbox.prg
! Value -3 of ::nOnFocusPos not working.
2013-07-31 22:53 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
+ Added new parameter lLikeExcel to TGrid():Define,
TGrid():Define2(), TGridMulti():Define and TGridByCell:Define().
* include\i_grid.ch
+ Added EDITLIKEEXCEL clause (forces all TGridControlTextboxes
to behave like Excel when editing).
* source\h_xbrowse.prg
+ Added new parameter to TGrid():Define2() call in method
TXBrowse:Define().
2013-07-31 22:33 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
2013-07-31 22:30 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
* Previous entry corrected.
* source\h_frame.prg
+ Added initialization for opaque parameter of TFrame:Define().
* source\h_tree.prg
+ Added initialization for lChkBox parameter of TTree:Define().
* source\h_form.prg
* source\h_windows.prg
! Calls to GetNextDlgTabItem() return wrong value due to usage of
0 and 1 constants instead of .F. and .T.
* source\h_progressbar.prg
+ Added initialization for smooth parameter of TProgressBar:Define().
* source\h_spinner.prg
+ Added initialization for invisible parameter of TSpinner:Define().
* Changed initialization of wrap and readonly parameters of
TSpinner:Define().
* source\h_toolbar.prg
+ Added initialization for flat, bottom, righttext and border
parameters of TToolBar:Define().
+ Added initialization for separator, autosize, check, group and
dropdown parameters of TToolButton:Define().
* source\h_grid.prg
+ Added DATAS lLikeExcel and cEditKey to TGrid().
+ Added initialization for ownerdata parameter of TGrid:Define2().
+ Added new parameters to TGridControlTextBox():New() call in
function GridControlObject().
+ Added new parameter oGrid to method GridControlObjectByType.
+ Added new parameter to TGridControlTextBox():New() calls in
function GridControlObjectByType().
+ Added DATAs oGrid, lLikeExcel and cEditKey to TGridControlTextBox().
+ Added new parameters oGrid, lLikeExcel and cEditKey to method
TGridControlTextBox:New().
+ Added support for new behaviour of TGridControlTextBox()
in TGridControlTextBox:CreateWindow() mimicking Excel.
* source\h_textbox.prg
! ON CLICK event is not fired.
* source\h_xbrowse.prg
+ Added new parameter to GridControlObjectByType() call in
method TXBrowse:GetCellType().
2013-07-30 21:15 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
+ Added new parameters to TGridControlTextBox():New() calls in
function GridControlObject().
+ Added DATAs lButtons, cImageOK and cImageCancel to TGridControl().
- Deleted DATAs lButtons, cImageOK and cImageCancel from
TGridControlTextBox().
* Changed TGridControlTextBox():CreateWindow().
+ Added lButtons and aImages parameters to:
TGridControlDatePicker:New()
TGridControlComboBox:New()
TGridControlComboBoxText:New()
TGridControlSpinner:New()
TGridControlCheckBox:New()
TGridControlImageList:New()
TGridControlImageData:New()
TGridControlLComboBox:New()
+ Added some comments on usage in COLUMNCONTROLS clause.
* Changed TGridControl:CreateWindow() to save accept/cancel blocks.
+ Added DATAs nOnFocusPos, lButtons, cImageOK and cImageCancel to
TGridControlTextBox().
+ Added new parameter nFocusPos to method TGridControlTextBox:New().
This parameter adds support for FOCUSEDPOS clause.
+ Added new parameter lButtons to method TGridControlTextBox:New().
When .T. two buttons are added to the control to accept/cancel
the edition.
+ Added new parameter aImages to method TGridControlTextBox:New().
This parameters specifies the images to use in the buttons.
2013-07-30 15:35 UTC-0400 MigSoft <[email protected]>
+ samples\autoadjust\demo.prg
+ samples\basegraph\demo.prg
+ samples\basegraph\saldomes.dbf
+ samples\basegraph\graph.ico
+ samples\fastfind\demo.prg
+ samples\fastfind\win_1.fmg
+ samples\fastfind\demo.rc
+ samples\fastfind\cuentas.dbf
+ samples\fastfind\find.ico
+ samples\histogram\demo.prg
+ samples\histogram\veamos.fmg
+ samples\histogram\veamos2.fmg
+ samples\histogram\grafico.fmg
+ samples\histogram\demo.rc
+ samples\histogram\graph.ico
+ samples\mybrowse\mybrowse.prg
+ samples\mybrowse\test.dbf
+ samples\mybrowse\mybrowse.rc
+ samples\mybrowse\agenda.ico
+ samples\mybrowse\br_ok.bmp
+ samples\mybrowse\br_no.bmp
+ samples\mybrowse\images\memo.bmp
+ samples\mybrowse\images\fech.bmp
+ samples\mybrowse\images\char.bmp
+ samples\mybrowse\images\num.bmp
+ samples\mybrowse\images\logic.bmp
+ samples\mybrowse\images\dele.bmp
+ Added as a samples.
2013-07-29 22:50 UTC-0300 Fernando Yurisich <[email protected]>
* resources\oohg_bcc.rc
* resources\oohg.res
* resources\oohg.o
* resources\oohg.rc
+ resources\edit_ok_16.bmp
+ resources\edit_cancel_16.bmp
+ Images for TGridControlTextBox().
* source\h_grid.prg
* Changed hardwired images by .rc defined ones.
2013-07-29 22:28 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
+ Previous entry corrected.
* .\compile_MINGW.bat
* Do not delete .\resources\_oohg_resconfig.h after building
because this file is part of the CVS.
* source\h_textbox.prg
* One comment moved to a better place.
+ Added new value -3 to ::nOnFocusPos so the control selectes
only the non-blank chars of the text.
* source\h_grid.prg
+ Added DATAs bOk and bCancel to TGridControl().
* Changed TGridControl:CreateWindow() to save accept/cancel blocks.
+ Added DATAs nOnFocusPos, lButtons, cImageOK and cImageCancel to
TGridControlTextBox().
+ Added new parameter nFocusPos to method TGridControlTextBox:New().
This parameter adds support for FOCUSEDPOS clause.
+ Added new parameter lButtons to method TGridControlTextBox:New().
When .T. two buttons are added to the control to accept/cancel
the edition.
+ Added new parameter aImages to method TGridControlTextBox:New().
This parameters specifies the images to use in the buttons.
Usage: in COLUMNCONTROLS clause specify
{'TEXTBOX', cType, cPicture, cFunction, nOnFocusPos, lButtons, aImages}
2013-07-26 23:08 UTC-0300 Fernando Yurisich <[email protected]>
* source\c_dialogs.c
! C_PUTFILE generates RTE when fifth parameter is not a string.
* Restored default behaviour: user input is returned as is,
without adding a default extension.
+ Added support for returning a default extension.
* source\h_dialogs.prg
+ Added parameter lForceExt to function PUTFILE. When .T. the
function will, always, return a filename with the first
extension specified in aFilter.
2013-07-26 14:03 UTC-0400 MigSoft <[email protected]>
* source\c_dialogs.c
* C_PUTFILE, Based upon a code borrowed from an HMG Ext.
2013-07-25 23:35 UTC-0300 Fernando Yurisich <[email protected]>
+ lib\hb
+ lib\hb\mingw
+ lib\xhb
+ lib\xhb\bcc
This folders will hold the libraries builded with
diferent compilers.
+ lib\hb\mingw\.cvsignore
+ lib\xhb\bcc\.cvsignore
* lib\.cvsignore
* Updated.
2013-07-25 23:20 UTC-0300 Fernando Yurisich <[email protected]>
* manual\HowToBuild.txt
* Updated.
+ manual\ooHG.h
+ manual\ooHG.hhc
+ manual\ooHG.hhk
+ manual\ooHG.hhp
+ manual\.cvsignore
2013-07-25 21:12 UTC-0300 Fernando Yurisich <[email protected]>
* .\Changelog
+ Added T O D O.
! Some entries corrected.
+ manual\images
+ Added folder to hold some images.
+ manual\images\bm0.gif
+ manual\images\harbour-logo.jpg
+ manual\HowToBuild.txt
+ manual\HYPERLINK.HTM
+ manual\IMAGE.HTM
+ manual\INTERNAL.HTM
+ manual\IPADDRESS.HTM
+ manual\LABEL.HTM
+ manual\LISTBOX.HTM
+ manual\MONTHCALENDAR.HTM
+ manual\OVERVIEW.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\TEXTARRAY.HTM
+ manual\TEXTBOX.HTM
+ manual\TIMEPICKER.HTM
+ manual\TIMER.HTM
+ manual\TOOLBAR.HTM
+ manual\TPRINT.HTM
+ manual\TREE.HTM
+ manual\UNCOMPRESS.HTM
+ manual\WAVE.HTM
+ manual\WINDOW.HTM
+ manual\XBROWSE.HTM
2013-07-25 20:40 UTC-0300 Fernando Yurisich <[email protected]>
* manual\ACTIVEX.HTM
* Changed case of referenced page name.
+ manual\ANIMATEBOX.HTM
+ manual\BROWSE.HTM
+ manual\BUTTON.HTM
+ manual\CHECKBOX.HTM
+ manual\CHECKBUTTON.HTM
+ manual\CHECKLIST.HTM
+ manual\CLASSES.HTM
+ manual\COMBOBOX.HTM
+ manual\DATEPICKER.HTM
+ manual\DO_REPORT.HTM
+ manual\DRAW_IN_WINDOW.HTM
+ manual\EDIT_EXTENDED.HTM
+ manual\EDIT_WORKAREA.HTM
+ manual\EDITBOX.HTM
+ manual\FRAME.HTM
+ manual\GRID.HTM
+ manual\HOTKEY.HTM
+ manual\HOTKEYBOX.HTM
2013-07-25 20:11 UTC-0300 Fernando Yurisich <[email protected]>
+ .\manual
+ Added folder to hold MigSoft's html manual.
+ manual\ACTIVEX.HTM
* manual\template4
+ Added folder to hold some images.
TODO: move images to manual\images and delete this folder.
+ manual\template4\btn_next_g.gif
+ manual\template4\btn_next_n.gif
+ manual\template4\btn_prev_g.gif
+ manual\template4\btn_prev_n.gif
2013-07-25 18:00 UTC-0300 Fernando Yurisich <[email protected]>
* source\c_winapimisc.c
* Added support for newer versions of Windows to WinVersion().
* Formatted.
2013-07-23 15:46 UTC-0400 MigSoft <[email protected]>
* source\makelib_mingw.bat
* Minor cleanup and control of paths.
2013-07-22 19:12 UTC-0300 Fernando Yurisich <[email protected]>
* doc\classes.txt
* Updated.
2013-07-22 19:00 UTC-0300 Fernando Yurisich <[email protected]>
* doc\classes.txt
* Updated.
2013-07-19 22:33 UTC-0400 MigSoft <[email protected]>
* source\makelib_mingw.bat
! Makelib.bat is not building the lib with current distro.
2013-07-18 17:28 UTC-0400 MigSoft <[email protected]>
* .\compile_MINGW.bat
* source\xml.bat
* source\common_make.bat
* source\makelib_mingw.bat
* Minor cleanup and control of paths.
2013-07-14 22:46 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_combo.prg
! Control with VALUESOURCE clause returns wrong value.
2013-07-14 22:46 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_textbox.prg
+ Added DATAs oButton1 and oButton2 to hold action buttons.
2013-07-14 19:46 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
! Left margin is not painted correctly.
* source\h_xbrowse.prg
* source\h_browse.prg
! ON CLICK event is not fired.
2013-07-12 23:52 UTC-0300 Fernando Yurisich <[email protected]>
* include\i_windefs.ch
+ Added defines for some constants.
* source\h_tab.prg
* source\h_radio.prg
* Changed hardwired constants by defined constants.
* source\h_scroll.prg
* Changed hardwired constants by defined constants.
* Minor formatting.
* source\h_combo.prg
+ Added DATA oListBox to store a reference to the listbox
asociated with the combobox.
! Search is not working properly when ::lIncremental == .F.
- Deleted some unnecessary code.
% Minor optimizations.
+ Added CLASS TListCombo to handle the scroll in the associated
listbox when INCREMENTAL clause is used.
! Scroll box and down scroll arrow don't load aditional items when
they hit bottom.
2013-07-11 23:37 UTC-0300 Fernando Yurisich <[email protected]>
* .\compile.bat