-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathChangeLog_002.txt
2991 lines (2561 loc) · 99.2 KB
/
ChangeLog_002.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_002.txt $
*/
2011-08-09 01:26 UTC+000 Cayetano Gomez <[email protected]>
* source\h_controlmisc.prg
* source\h_window.prg
* source\h_textbox.prg
+ added suppor for font and control color changed on focus
2011-08-05 16:43 UTC-0300 Fernando Yurisich <[email protected]>
+ resources\*
+ Added missing resources.
* resources\oohg.rc
+ Added edit_undo.bmp
* resources\CompileRes.bat
* Changed to use an input file suitable for BCC (oohg_bcc.rc).
+ Added resource file compilation with MinGW.
+ resources\oohg_bcc.rc
+ Added resource file suitable for BCC.
* resources\oohg.res
* Updated.
+ resources\oohg.o
+ Added missing file.
2011-08-04 16:35 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_combo.prg
! Fixed images shown without transparency.
+ Added support for BACKCOLOR and FONTCOLOR clauses at control definition.
* include\i_combobox.ch
+ Added BACKCOLOR and FONTCOLOR clauses.
* doc\classes.txt
+ Added DATA ImageListColor and DATA ImageListFlags in TCOMBO class.
2011-08-04 15:55 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_listbox.prg
! Fixed images shown without transparency.
* doc\classes.txt
+ Added DATA ImageListColor and DATA ImageListFlags in TLIST class.
2011-08-04 10:30 UTC-0300 Fernando Yurisich <[email protected]>
* include\i_listbox.ch
* include\i_combobox.ch
* Changed ADJUST was substituted by FIT to avoid confusion with AUTOADJUST.
2011-08-03 22:20 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_listbox.prg
* source\h_combo.prg
* include\i_listbox.ch
* include\i_combobox.ch
* include\oohg.h
* source\c_controlmisc.c
* doc\classes.txt
! Fixed images not being placed correctly.
+ Added ADJUST clause to clip down images bigger than TEXTHEIGHT (by default
a bigger image overlaps the next item´s image).
* Changed if TEXTHEIGHT is not enough to display the text, the height
defaults to the text height plus 2 pixels.
2011-07-30 17:30 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_listbox.prg
* include\i_listbox.ch
+ Added IMAGE and TEXTHEIGHT clauses to LISTBOX control so
TList and TListMulti classes can display images.
2011-07-28 23:16 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_combo.prg
! Fixed not displaying images in combobox.
2011-07-23 12:20 UTC-0300 Fernando Yurisich <[email protected]>
* include\i_menu.ch
* include\i_window.ch
* source\h_menu.prg
* source\c_image.c
+ Added method Stretch to TMenuItem class: by default XP clips big images
while Vista and Win7 show them at their real size, use STRETCH to scale down.
+ Added checked state bitmap to TMenuItem class.
* Changed parameter of Picture method in TMenuItem class: instead of just
receiving the unchecked state image's name, now can also receive a two
element array with the name of the unchecked state image in position 1
and the name of the checked state image in position 2.
* Changed return value of Picture method in TMenuItem class: instead of
returning the unchecked state image's name, now returns a two
element array with the name of the unchecked state image in position 1
and the name of the checked state image in position 2.
+ Added releasing of old images whenever changed and on item release.
! Fixed wrong images colors on Win7.
2011-07-17 09:39 UTC-0500 Vicente Guerra <[email protected]>
+ doc\Stream.txt
+ samples\oohg\chat.prg
+ samples\oohg\stream\TStream.prg
+ samples\oohg\stream\TStreamSerial.prg
+ samples\oohg\stream\TStreamSocket.prg
+ samples\oohg\stream\TStreamSSL.prg
+ samples\oohg\stream\TStreamZip.prg
+ TStream class added.
2011-07-16 16:20 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_controlmisc.prg
* include\i_window.ch
+ Added support for ColumnBetterAutofit and ColumnsBetterAutofit
methods in non-oop syntax.
2011-07-15 11:40 UTC-0300 Fernando Yurisich <[email protected]>
* source\c_winapimisc.c
+ Added MAKELPARAM function.
* source\c_image.c
* source\h_windows.prg
! Fixed some compiler warnings.
* include\i_windefs.ch
* include\i_window.ch
* source\h_combo.prg
+ Added CaretPos, SetEditSel and GetEditSel methods to TCombo class.
* include\i_windefs.ch
* include\i_window.ch
* include\i_datepicker.ch
* source\h_datepicker.prg
* source\h_controlmisc.prg
+ Added support for SetRange method of TDatePick class in non-oop syntax.
2011-07-13 18:25 UTC-0300 Fernando Yurisich <[email protected]>
* source\c_image.c
* source\h_button.prg
! Fixed ICON images not correctly displayed in menu items under Win7.
2011-07-12 17:10 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
! fixed problem in fillrect of hbprinter printer mode
2011-07-11 23:15 UTC-0300 Fernando Yurisich <[email protected]>
* source\c_image.c
! Fixed ICON images always loaded as 32x32, now they are loaded
with their real size.
! Fixed ICON images not being show in menu items.
2011-07-11 16:06 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_status.prg
! Fixed image not shown in statusbar.
2011-07-10 23:37 UTC-0300 Fernando Yurisich <[email protected]>
* source\c_image.c
! Fixed loading ICON images.
2011-07-10 17:10 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_textbox.prg
* added a call to scrollcaret in caretpos method
2011-07-10 12:15 UTC-0300 Fernando Yurisich <[email protected]>
* doc\classes.txt
* source\h_textbox.txt
* include\i_windefs.ch
* include\i_this.ch
* include\i_window.ch
+ Added ScrollCaret method to TText class.
Contributed by Sergio Castellari.
2011-07-08 10:34 UTC-0300 Fernando Yurisich <[email protected]>
* compile_mingw.bat
! Fixed _oohg_resconfig.h not being deleted after compiling.
2011-07-06 23:24 UTC-0300 Fernando Yurisich <[email protected]>
* compile_mingw.bat
! Fixed ooHg.res not being compiled when application rc is present.
2011-07-06 18:59 UTC-0500 Vicente Guerra <[email protected]>
* source\h_controlmisc.prg
* source\h_tab.prg
+ TControlGroup class added. It allows to manage multiple
controls at once.
2011-07-06 18:59 UTC-0500 Vicente Guerra <[email protected]>
* source\h_controlmisc.prg
! Fixed _OOHG_UnTransform() when there's no mask.
2011-07-06 10:49 UTC-0300 Fernando Yurisich <[email protected]>
* source\miniprint.prg
+ Added localized title to GetFolder window in procedure _HMG_printer_savepages.
* Replaced english message in GetPrinter function with localized message.
* Messages not found in original HBPRINTER module are placed above position
100 in array to avoid posible conflicts.
! Fixed preview window does not get the focus when first displayed.
! Fixed some compiler warnings.
2011-07-06 09:21 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_msgbox.prg
+ Added posibility of changing default message and title in message functions.
! Fixed MsgInfoExt to avoid translating chr(13)+chr(10) into chr(13)+chr(10)+chr(10).
! Fixed some compiler warnings.
* Changed static function autotype to public.
2011-07-05 23:16 UTC-0500 Vicente Guerra <[email protected]>
* source\h_print.prg
! Removed unused variables.
2011-07-05 21:41 UTC-0500 Vicente Guerra <[email protected]>
* source\miniprint.prg
! Fixed crash when system doesn't have any printer on
GetPrinter() function. Reported and fixed by
Fernando Yurisich.
2011-07-05 08:10 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_error.prg
* updated version number
2011-07-04 20:50 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_tree.prg
! fixed nodeimages not shown.
2011-07-02 20:10 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
! fixed problem in vertical barcodes.
2011-07-02 16:26 UTC-0300 Fernando Yurisich <[email protected]>
* samples\oohg\browsecolumncontrols.dbf
* samples\oohg\browsecolumncontrols.prg
* Modified to show how to edit date fields in a browse using
TGridControlDatePicker class.
2011-07-02 16:24 UTC-0300 Fernando Yurisich <[email protected]>
* doc\classes.txt
+ Added data LSHOWNONE to TGridControlDatePicker class.
2011-07-02 16:23 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_grid.prg
+ Added SHOWNONE style to TGridControlDatePicker class.
2011-07-01 19:20 UTC-0300 Fernando Yurisich <[email protected]>
* source\makelib_mingw.bat
! fixed check for already defined environment variables.
2011-07-01 16:41 UTC-0300 Fernando Yurisich <[email protected]>
* source\h_browse.prg
! Fixed crash when repainting a minimized browse.
2011-07-01 15:56 UTC-0300 Fernando Yurisich <[email protected]>
* source\makelib_mingw.bat
+ Added check for already defined environment variables.
2011-06-29 21:12 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
! fixed barcode parameters nlin , ncol, cbarcode , ctipo, , acolor , lhori , nwidth, nheight
line , column , barcode , barcode type , color , .f. = vertical , bar width , bar heihgt
2011-06-29 17:58 UTC-0500 Vicente Guerra <[email protected]>
* source\h_toolbar.prg
! Added missing dynamic tooltip functionality.
* source\h_form.prg
* source\h_tooltip.prg
+ TForm:ToolTipWidth and TForm:ToolTipMultiline methods added.
2011-06-27 22:15 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
* improving PDFPRINT barcode
2011-06-27 20:45 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
* barcode printing without fonts (second approach)
+ added barcode printing to PDFPRINT (I don't know if it's ok)
! fixed call to FILLRECT in order to print barcodes in hbprinter.
2011-06-24 20:30 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
+ added barcode printing without fonts (first approach)
* source\winprint.prg
! fixed problm saving documents in hbprint preview
2011-06-15 14:38 UTC-0500 Vicente Guerra <[email protected]>
* source\h_form.prg
* source\h_windows.prg
! Terminates last popup menu before execute it's action.
2011-06-01 20:37 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
! fixed open calc print mode, with or without preview.
2011-05-31 11:05 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
* now the preview only will be showed if the preview option is true.
inluding excell, rtf, html, csv, open calc and pdf formats.
If the preview is false, the document will be saved with a default name and nothing will be displayed.
* if a name was added then... this documents will be named as is (with or without path)
* the pdf format are better now more closer to a normal printing viewing.
2011-05-20 16:23 UTC-0500 Vicente Guerra <[email protected]>
* source\h_form.prg
! Terminates last popup menu before activate a modal
window.
* source\h_windows.prg
* Removed duplicated GETDC() and RELEASEDC() C wrappers.
* source\winprint.prg
* Changed RGB() calls to RR_SETRGB().
* include\i_windefs.ch
* Removed (commented) TRANSPARENT definition.
It clashes with TRANSPARENT clause.
* source\h_controlmisc.prg
* Control's ID assignment will be smaller than 0xF000.
2011-05-09 11:44 UTC-0500 Vicente Guerra <[email protected]>
* source\h_combo.prg
+ ::GetDropDownWidth(), ::SetDropDownWidth(),
::AutosizeDropDown() and ::Autosize methods added.
Contributed by Fernando Yurisich.
2011-05-09 11:31 UTC-0500 Vicente Guerra <[email protected]>
* source\h_browse.prg
! Fixed non-unlocking record when it's deleted()
2011-05-08 19:17 UTC-0500 Ciro Vargas C. <[email protected]>
* include\i_textbox.ch
+ new syntax when clause.
2011-05-08 00:05 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_splitbox.prg
! fixed problem in clientheightused method.
2011-05-06 23:00:40 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_grid.prg
! fix problem autoadjusting first column.
2011-05-06 18:40 UTC-0500 Ciro Vargas C. <[email protected]>
* source\winprint.prg
! fixed no printing problem reported by Bruno.
* source\h_print.prg
* source\h_pdf.prg
! fixed problem in line spacing and improvement of PDF print.
* source\h_textbox.prg
+ added When clause.
2011-04-21 10:59 UTC-0600 Vicente Guerra <[email protected]>
* source\h_form.prg
! Fixed AUTOADJUST when window is minimized.
* source\h_windows.prg
* source\miniprint.prg
* Fixed unused variables.
2011-04-20 18:40 UTC-0500 Ciro Vargas C. <[email protected]>
* source\miniprint.prg
* include\miniprint.ch
+ changed preview (better look) added more drawing options.
contributed by Cayetano fixed little problems by ciro.
* source\h_windows.prg
* source\h_form.prg
* source\h_controlmisc.prg
+ added drawing methods by Cayetano Gomez.
2011-04-14 19:41 UTC-0600 Vicente Guerra <[email protected]>
* source\winprint.prg
+ Added ::InMemory property. It allows to determine if
preview images are stored on temporal files or into
memory buffers.
; Contributed by Cayetano Gomez.
2011-03-30 16:12 UTC-0600 Vicente Guerra <[email protected]>
* source\winprint.prg
+ ::NoButtonSave property added. For not show SAVE button in
preview window.
+ ::NoButtonOptions property added. For not show OPTIONS button
in preview window.
+ ::BeforePrint property added. Executed when PRINT button is
pressed in preview window. It must returns .T. for allow print.
+ ::AfterPrint property added. Executed after printing in preview
window.
+ ::BeforePrintCopy property added. Executed previous each
document's copy is printed in preview window. It must returns
.T. for allow print. Otherwise, printing is stopped.
; Contributed by Johan.
2011-03-30 16:12 UTC-0600 Vicente Guerra <[email protected]>
* source\h_datepicker.prg
* Fixed ::Value return value.
2011-03-21 00:36 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_msgbox.prg
! supressing required #include "oohg.ch" changing normal syntax to pure oop.
2011-03-16 17:59 UTC-0600 Vicente Guerra <[email protected]>
* source\h_toolbar.prg
! Fixed non-BMP image reading.
2011-03-08 11:39 UTC-0600 Vicente Guerra <[email protected]>
* include\i_windefs.ch
* source\h_monthcal.prg
* source\h_datepicker.prg
+ ::SetRange() property added. Borrowed from a
HMG Exp contribution.
* Minor optimization.
* source\h_grid.prg
* Casting.
* source\h_print.prg
* Added missing check for Excel is available on xHarbour.
2011-03-04 22:00 UTC-0600 Vicente Guerra <[email protected]>
* source\h_grid.prg
* source\h_print.prg
! Fixed xHarbour compilation (xHarbour doesn't have Win_Ole*()
functions).
* source\h_combo.prg
! Fixed ON CHANGE after ::DeleteAllItems() call.
* source\h_toolbar.prg
+ Added ::Picture functionality at runtime.
2011-03-02 13:42 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_grid
+ ::ColumnHide( ncol ) , ::ColumnShow( ncol ), ::Columnbetterautofit( ncol), ::ColumnsBetterautoFit() Methods added
! updated toexcel()
* source\h_print
! updated excel printing.
2011-02-28 17:45 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_msgbox.prg
+ Added functions MsgInfoExt() and AutoMsgInfoExt() based upon a contribution of Lucho Miranda.
2011-01-25 18:15 UTC-0600 Vicente Guerra <[email protected]>
* source\winprint.prg
* Added JPG, JPEG and GIF types to images read from resource.
* source\h_form.prg
* Moved ON MOUSECLICK event to WM_LBUTTONDOWN instead of
WM_LBUTTONUP.
2011-01-25 13:21 UTC-0600 Vicente Guerra <[email protected]>
* source\h_edit.prg
! Fixed unused HBPRN variable (not used but declared at
winprint.ch ).
2011-01-24 13:39 UTC-0600 Vicente Guerra <[email protected]>
* samples\oohg\oohgrecord\xbrowsearray.prg
! Fixed wrong ::Skip() movement.
* source\h_windows.prg
* Now ::ClientWidth and ::ClientHeight can be assigned.
2011-01-23 17:36 UTC-0600 Vicente Guerra <[email protected]>
* source\h_xbrowse.prg
+ ::AddColumn() and ::DeleteColumn() methods added.
2011-01-16 17:43 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_msgbox.prg
* make better the autotype function and auto message boxes. Now support display arrays
2011-01-07 13:37 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_error.prg
* version updated
2011-01-06 17:14 UTC-0600 Vicente Guerra <[email protected]>
* source\h_print.prg
* source\h_windows.prg
* Changed RANDOM() to HB_RANDOM() .
2011-01-04 11:16 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_controlmisc.prg
-supressed random() function
* include\i_hmg_compat.ch
+ added random() redirected to hb_random().
2010-12-01 12:57 UTC-0600 Vicente Guerra <[email protected]>
* samples\oohg\oohgrecord\brw_odbc.prg
* Prevents "sample PRG code" compilation when NO_SAMPLE
macro is defined. Useful for #include .PRG file without
sample code.
* samples\oohg\oohgrecord\textfile.prg
! Fixed field reading for fixed-width columns.
* samples\oohg\oohgrecord\xbrowsearray.prg
* Added ::EOF() functionality.
2010-11-29 20:21 UTC-0600 Vicente Guerra <[email protected]>
* source\h_error.prg
* Added user name and computer name in ErrorLog.htm header.
* samples\oohg\oohgrecord\px.prg
* samples\oohg\oohgrecord\recordmerge.prg
* samples\oohg\oohgrecord\xbrowsearray.prg
* Prevents "sample PRG code" compilation when NO_SAMPLE
macro is defined. Useful for #include .PRG file without
sample code.
+ samples\oohg\oohgrecord\textfile.prg
+ Textfile-as-database class.
NOTE: This class can't be used on XBROWSE control.
This allows to read a sequentual text file (delimited or
fixed width) as a ooHGRecord class. Since it doesn't have
random access, it only supports forward SKIPs (and
::GoTop(), too), but it's an easy way to read these files.
2010-11-06 00:47 UTC-0600 Vicente Guerra <[email protected]>
- source\c_grid.c
* source\h_grid.prg
* source\common_make.bat
* source\makelib_mingw.bat
* Moved C code from c_grid.c to h_grid.prg file.
- c_grid.c removed.
* source\h_grid.prg
! VALID messages can be codeblocks. As suggested by Johan.
2010-10-18 11:41 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
* added Raw print.
* source\h_report.prg
* added raw print mode to report
2010-09-02 17:14 UTC-0500 Vicente Guerra <[email protected]>
* source\h_grid.prg
! Fixed column alignment change when header is changed.
2010-08-27 16:30 UTC-0500 Vicente Guerra <[email protected]>
* include\i_menu.ch
* source\h_menu.prg
+ NAME clause added to MENU definitions.
2010-08-26 15:03 UTC-0500 Vicente Guerra <[email protected]>
* source\h_controlmisc.prg
* source\h_form.prg
* source\h_radio.prg
* source\h_tab.prg
* source\h_textbox.prg
* source\h_windows.prg
* source\h_xbrowse.prg
+ ::ADJUST functionality added. By Cayetano Gomez.
+ ::ANCHOR functionality added
* Attached controls adjusted by ANCHOR functionality.
* ::ForceHide() moved to TControl level.
* source\h_combo.prg
! ::nHeight value can't be changed after control was created
(it's used for dropdown list instead of the visible textbox).
* source\h_picture.prg
! ::Redraw() paints image instead of invalidate area (when
IMAGE is inside a TAB, TAB is repainted too, so TAB covers
IMAGE).
2010-08-15 18:47 UTC-0500 Vicente Guerra <[email protected]>
* source\h_controlmisc.prg
* source\h_tooltip.prg
* Moved TTN_GETDISPINFO processing from TControl to TToolTip.
! Fixed dynamic tooltip's buffer.
* Added This.* support for tooltip's codeblock.
2010-08-13 18:46 UTC-0500 Vicente Guerra <[email protected]>
* include\i_windefs.ch
* source\h_controlmisc.prg
* source\h_tooltip.prg
+ Added dynamic tooltips.
2010-08-12 18:10 UTC-0500 Vicente Guerra <[email protected]>
* source\h_grid.prg
! Fixed ITEM value for items out of range.
* image\c_image.c
! Some type casting.
* source\makelib_vc.bat
! Sets warning 3 for C compilation.
2010-07-25 16:37 UTC-0500 Vicente Guerra <[email protected]>
* source\h_scroll.prg
! Fixed SCROLLBAR painting update for MinGW.
By Fernando Yurisich.
2010-07-19 19:38 UTC-0500 Vicente Guerra <[email protected]>
* source\c_dialogs.c
* source\h_dialogs.h
+ Added 6th parameter to GETFILE(), for select default file name.
2010-07-06 22:28 UTC-0500 Vicente Guerra <[email protected]>
* source\h_form.prg
* source\h_tab.prg
* source\h_windows.prg
! Fixed ::RefreshData() execution for controls inside any
container.
* source\h_grid.prg
! Fixed COLUMNWHEN default value.
2010-07-06 16:32 UTC-0500 Vicente Guerra <[email protected]>
* source\h_combo.prg
* If VALUESOURCE is array, it's used as "value source" for
each value.
* source\h_grid.prg
* Use VALUESOURCE clause.
* include\oohg.h
! Added "ltoa" to patched MSVC warnings.
* source\c_dialogs.c
* source\h_dialogs.h
+ Added 5th parameter to PUTFILE(), for select default file name.
2010-06-24 19:46 UTC-0500 Vicente Guerra <[email protected]>
* source\h_grid.prg
* Added optional second array to COMBOBOX COLUMNCONTROL type.
It can contain a referenced value corresponding to each
item.
* source\h_combo.prg
* Formatting.
* source\h_progressmeter.prg
! Type cast.
* source\c_activex.c
! Operator priority check.
2010-06-19 18:49 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print.prg
! trying to fix issue with 2 dialogs when print preview.
* source\winprint.prg
! fixed problem in draw text borrowed from HMG extended.
2010-06-16 21:00 UTC-0500 Vicente Guerra <[email protected]>
* source\h_grid.prg
! Deletes new row when edition is cancelled and it's
the first editable column (first grid column can
be readonly).
+ Added ( nColumn, aItems ) parameters to evaluate
WHEN column.
+ Added ( xValue, nColumn, aItems ) parameters to
evaluate VALID column.
+ Added ::OnAppend event.
! ::OnAppend calls are now using ::DoEvent().
* source\h_xbrowse.prg
- ::OnAppend property is now defined at TGrid.
! ::OnAppend calls are now using ::DoEvent().
* source\c_controlmisc.c
! Fixed type cast warning.
* include\oohg.h
! Patched MSVC warnings for deprecated functions.
* source\h_error.prg
* _OOHG_ErrorMessage() function is now public.
2010-05-23 17:06 UTC-0500 Vicente Guerra <[email protected]>
* source\h_form.prg
! Checks DEFINE WINDOW structure is closed when window
is activated, regardless other DEFINE WINDOW structure.
2010-05-21 20:31 UTC-0500 Vicente Guerra <[email protected]>
* source\h_textbox.prg
! Fixed sign lost when decimal character is pressed and
number is zero.
2010-05-15 16:03 UTC-0500 Vicente Guerra <[email protected]>
* include\oohg.h
* source\c_controlmisc.c
* source\c_dialogs.c
* source\c_graph.c
* source\c_grid.c
* source\c_winapimisc.c
* source\c_windows.c
* source\h_hotkeybox.prg
* source\h_ipaddress.prg
* source\h_listbox.prg
* source\h_status.prg
* source\h_tab.prg
* source\miniprint.prg
* source\winprint.prg
* Moved HB_* compatibility commands to oohg.h .
* include\i_altsyntax.ch
* include\i_monthcal.ch
* source\h_monthcal.prg
+ FONTCOLOR, BACKCOLOR, TITLEFONTCOLOR, TITLEBACKCOLOR,
TRAILINGFONTCOLOR and BACKGROUNDCOLOR properties added.
2010-05-14 12:13 UTC-0500 Vicente Guerra <[email protected]>
* source\h_form.prg
! Fixed to execute ON RELEASE event when a child window
is closed due parent window's release.
2010-05-01 20:33 UTC-0500 Vicente Guerra <[email protected]>
* source\h_textarray.prg
+ ::CLS() method added.
* include\i_button.ch
* include\i_picture.ch
+ ICON clause added (same to PICTURE).
* include\i_windefs.ch
+ GW_* constants added.
2010-04-21 09:29 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_error.prg
* change version
2010-03-29 09:54 UTC-0500 Ciro Vargas C. <[email protected]>
* include\i_hmg_compat.ch
! remove duplicate header and optimazing definition
2010-03-28 23:30 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_button.prg
* include\i_hmg_compat.ch
+ add support for BUTTONEX syntax
2010-03-09 12:36 UTC-0600 Vicente Guerra <[email protected]>
* source\h_splitbox.prg
! Forces to compile with _WIN32_WINNT == 0x0400
(fixed previous implementation).
! Removed unused function.
2010-03-08 22:06 UTC-0600 Vicente Guerra <[email protected]>
* source\h_splitbox.prg
! Forces to compile with _WIN32_WINNT == 0x0400
(prevents REBARBANDINFO structure size to be higher than
expected).
2010-03-07 21:38 UTC-0600 Vicente Guerra <[email protected]>
* source\c_image.c
! Fixed loading ICON images.
2010-03-05 21:02 UTC-0600 Vicente Guerra <[email protected]>
* source\h_browse.prg
! Fixed table cleanup when table reachs EOF in DESCENDING mode.
2010-03-04 21:46 UTC-0600 Vicente Guerra <[email protected]>
* source\h_grid.prg
! Fixed ::AppendItem() for prevent recursive calls.
2010-02-21 23:10 UTC-0600 Vicente Guerra <[email protected]>
* source\winprint.prg
* Changed LINESKIP factor.
* source\h_form.prg
* Prevents a double ::Release() call to MODAL windows.
2010-02-19 22:05 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_activex.prg
* finally fixed problem with activex (thanks again to Oskar Lira)
2010-01-21 03:10 UTC-0600 Vicente Guerra <[email protected]>
* source\c_font.c
* source\c_grid.c
* source\c_image.c
* source\c_winapimisc.c
* source\c_windows.c
* source\h_activex.prg
* source\h_comm.prg
* source\h_crypt.prg
* source\h_dll.prg
* source\h_edit.prg
* source\h_grid.prg
* source\h_hotkey.prg
* source\h_hotkeybox.prg
* source\h_hyperlink.prg
* source\h_ini.prg
* source\h_listbox.prg
* source\h_menu.prg
* source\h_pdf.prg
* source\h_report.prg
* source\h_richeditbox.prg
* source\h_scrollbutton.prg
* source\h_scrsaver.prg
* source\h_splitbox.prg
* source\h_tab.prg
* source\h_tooltip.prg
* source\miniprint.prg
* source\winprint.prg
! Casting const char * parameters.
! Fixed unused _OOHG_AllVars warning.
2010-01-08 21:24 UTC-0600 Vicente Guerra <[email protected]>
* source\h_windows.prg
+ _SetPrevFocus() function added.
* source\c_controlmisc.c
* Minor formatting.
2009-12-23 18:05 UTC-0600 Vicente Guerra <[email protected]>
+ samples\incremental.prg
+ Incremental search sample.
* source\h_media.prg
* source\h_progressbar.prg
* source\h_timer.prg
! Fixed unused _OOHG_AllVars warning.
* source\h_dll.prg
! Fixed arg unused variable.
* source\h_toolbar.prg
* source\makelib_vc.bat
! Fixed warnings.
2009-12-22 14:05 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_print
* added the option to select another port. (by default prn)
2009-12-22 10:35 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_dll.prg
* new try for Dlls made by VIC from scratch.
2009-12-13 21:23 UTC-0600 Vicente Guerra <[email protected]>
* source\h_dll.prg
* Removed unused parameters.
* Minor formatting.
* Added $Id header.
2009-12-13 15:54 UTC-0500 Ciro Vargas C. <[email protected]>
* source\c_activex.c
* source\h_activex.prg
! optimizations in activex in order to compile with harbour 2.0
* source\h_browse.prg
* minor formatting
+ h_dll.prg
* resources\oohg.rc
* resources\makeres_mingw.bat
* compile_mingw.bat
to manage resources in a better way.
2009-11-23 20:47 UTC-0600 Vicente Guerra <[email protected]>
+ .\compile_vc.bat
+ source\makelib_vc.bat
+ MSVC 9 compilation added.
* .\compile_bcc.bat
! Fixed environment variables checkup.
* source\h_button.prg
! Fixed BUTTON_IMAGELIST structure definition.
* source\miniprint.prg
! Fixed uninitialized variables.
* source\h_picture.prg
* Removed unused iPage variable.
* source\h_editbox.prg
! Fixed unused _OOHG_AllVars warning.
2009-11-22 11:45 UTC-0500 Ciro Vargas C. <[email protected]>
* source\h_scroll.prg
! fixed problem in scroll only in harbour and mingw
2009-11-21 17:48 UTC-0600 Vicente Guerra <[email protected]>
* source\c_winapimisc.c
* Changed ( BYTE * ) to ( char * ) for filename.
* source\h_picture.prg
! Fixed to send WM_NOTIFY when image uses scrollbars.
* source\h_dialogs.prg
! Fixed unused _OOHG_AllVars warning.
2009-11-11 01:17 UTC-0600 Vicente Guerra <[email protected]>
* source\h_picture.prg
+ ::Rotate() method added.
2009-10-31 12:18 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_error.prg
* changed version
2009-10-31 09:50 UTC-0400 Ciro Vargas C. <[email protected]>
* include\oohg.ch
! fixed problem when no windows are defined and the program has an msgbox only.
2009-10-30 13:58 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_radio.prg
! 2 problems fixed when use radiogroup in oop mode.
2009-10-07 14:57 UTC-0500 Vicente Guerra <[email protected]>
* source\h_textbox.prg
! Fixed blank space inside numeric picture.
2009-10-06 23:21 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_print.prg
! fixed excel print with mm
2009-10-06 08:11 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_print.prg
* optimization of PDF print in mm and rowcol.
2009-09-29 16:30 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_print.prg
! fixed to run excelprint with new harbour.
2009-09-28 15:49 UTC-0400 Ciro Vargas C. <[email protected]>
* source\winprint.prg
* source\miniprint.prg
! forgeted upload to CVS
2009-09-28 13:55 UTC-0400 Ciro Vargas C. <[email protected]>
* source\c_graph.c
! forgeted upload to CVS
2009-09-23 14:43 UTC-0400 Ciro Vargas C. <[email protected]>
* source\makelib.bat
* source\makelib_mingw.bat
* compile.bat
* compile_mingw.bat
* updated in order to use mingw by default.
2009-09-19 14:18 UTC-0500 Vicente Guerra <[email protected]>
* include\i_splitbox.ch
! Included HORIZONTAL like VERTICAL one.
Note: Both works in the same way.
2009-09-14 22:29 UTC-0500 Vicente Guerra <[email protected]>
* source\c_windows.c
* source\h_form.prg
! Fixed MDI accelerator keys.
2009-09-13 22:59 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_activex.prg
* source\c_activex.c
! fixed problem to run in new harbour.
2009-09-12 15:16 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_init.prg
* include\oohg.ch
* more testing gui mode init
2009-09-11 19:31 UTC-0500 Vicente Guerra <[email protected]>
* source\h_grid.prg
! Prevents nested edition activated by ENTER key.
2009-09-10 21:47 UTC-0500 Vicente Guerra <[email protected]>
* source\h_controlmisc.prg
* source\h_monthcal.prg
* source\h_toolbar.prg
* source\h_tree.prg
! Few cast added.
2009-09-09 15:16 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_report.prg
! removed double #include oohg.ch
* source\h_init.prg
* testing gui mode init
* source\h_error.prg
* updated version
* include\oohg.ch
* testing gui mode init
2009-08-25 19:56 UTC-0500 Vicente Guerra <[email protected]>
* source\c_windows.c
! Fixed duplicated functions.
* source\h_hotkeybox.prg
! Added missing definitions.
2009-08-23 21:33 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_ipaddress.prg
* source\c_grid.c
* source\h_listbox.prg
* source\h_tab.prg
* source\h_status.prg
* source\c_winapimisc.c
* source\c_windows.c
* source\c_dialogs.c
* source\c_controlmisc.c
* source\h_hotkeybox.prg
! in order to Run with Harbour 2.0.
2009-08-23 12:06 UTC-0500 Vicente Guerra <[email protected]>
* source\h_tab.prg
! Fixed shown page when current page is hidden.
2009-08-14 19:44 UTC-0500 Vicente Guerra <[email protected]>
* source\h_browse.prg
- Removed horizontal scroll when record changes.
* Changed SCROLL resolution from 100 to 1000.
! Fixed ::EOF value when DBSKIP at empty tables (fixed "blank
row" painting).
* include\i_radiogroup.ch
! Defined OPTIONS clause as optional, for a more flexible
declaration in source code.
NOTE: This clause is NOT optional!
2009-08-01 08:38 UTC-0500 Vicente Guerra <[email protected]>
* source\c_windows.c
* source\h_form.prg
! Fixed MDI client area at MDI client creation.
2009-07-30 23:03 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_print.prg
+ added bin selection.
2009-07-26 14:09 UTC-0500 Vicente Guerra <[email protected]>
* source\h_form.prg
* source\h_tab.prg
* source\h_textbox.prg
* source\h_windows.prg
+ Added ::AdjustResize() method for control-specific
behaviour.
2009-07-25 23:09 UTC-0500 Vicente Guerra <[email protected]>
* include\i_textbox.ch
* source\h_textbox.prg
- Removed BTNTEXTBOX code from HMG Experimental.
+ Implemented embedded buttons for textbox controls using
ooHG style.
2009-07-24 19:04 UTC-0500 Vicente Guerra <[email protected]>
* source\c_windows.c
! Workaround for system lock under Windows Vista.
2009-07-18 21:53 UTC-0500 Vicente Guerra <[email protected]>
* source\h_form.prg
! Fixed DRAW commands repainting.
2009-07-18 20:50 UTC-0500 Vicente Guerra <[email protected]>
* source\h_menu.prg
! Fixed main menu refresh when any item is changed.
* TMenu:EndMenu() and TMenuItem():EndPopUp() methods redefined.
2009-06-23 11:35 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_label.prg
! fixed autosize little bug when are changed font, size or atributes in runtime.
2009-06-19 10:51 UTC-0400 Ciro Vargas C. <[email protected]>
* source\h_msgbox.prg
* changed static function autotype to public function because may be usefull
2009-06-18 17:24 UTC-0400 Ciro Vargas C. <[email protected]>
* source\miniprint.prg
!fixed problem with zoom (exploted with new (on change) changes)
2009-06-12 20:50 UTC-0500 Vicente Guerra <[email protected]>
* .\compile_bcc.bat
* Reverted path's change.
* source\h_button.prg
! Fixed ON CHANGE processing when it's made programatically.
* source\common_make.bat
- source\c_spinner.c
* source\h_spinner.prg
* source\makelib_mingw.bat
! Fixed ::RangeMin and ::RangeMax methods.
* Moved C code from c_spinner.c to h_spinner.prg file.
- c_spinner.c removed.
* source\h_error.prg