|
From: Jens F. <jfu...@us...> - 2005-10-04 00:59:11
|
Update of /cvsroot/jvcl/dev/JVCL3/examples/JvThread In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9126/examples/JvThread Modified Files: fThread.dfm fThread.pas Log Message: Redesign of TJvThreadDialog Index: fThread.dfm =================================================================== RCS file: /cvsroot/jvcl/dev/JVCL3/examples/JvThread/fThread.dfm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** fThread.dfm 13 Apr 2005 19:54:08 -0000 1.5 --- fThread.dfm 4 Oct 2005 00:59:03 -0000 1.6 *************** *** 1,10 **** object Form1: TForm1 ! Left = 270 ! Top = 215 BorderIcons = [biSystemMenu, biMinimize] BorderStyle = bsSingle Caption = 'JvThread Demo' ! ClientHeight = 452 ! ClientWidth = 719 Color = clBtnFace DefaultMonitor = dmDesktop --- 1,10 ---- object Form1: TForm1 ! Left = 887 ! Top = 407 BorderIcons = [biSystemMenu, biMinimize] BorderStyle = bsSingle Caption = 'JvThread Demo' ! ClientHeight = 143 ! ClientWidth = 364 Color = clBtnFace DefaultMonitor = dmDesktop *************** *** 15,19 **** Font.Style = [] OldCreateOrder = False - Position = poDesktopCenter Scaled = False OnDestroy = FormDestroy --- 15,18 ---- *************** *** 101,120 **** end object JvThreadSimpleDialog1: TJvThreadSimpleDialog DialogOptions.ShowDialog = True DialogOptions.ShowModal = False - DialogOptions.InfoText = 'Infotext' - DialogOptions.Caption = '23423423423432' DialogOptions.CancelButtonCaption = 'Cancel' Left = 260 Top = 20 end object JvThreadAnimateDialog1: TJvThreadAnimateDialog DialogOptions.ShowDialog = True - DialogOptions.InfoText = 'Info' - DialogOptions.Caption = 'Execute Thread' DialogOptions.CancelButtonCaption = 'Cancel' DialogOptions.CommonAVI = aviCopyFiles ! Left = 255 ! Top = 70 end end --- 100,122 ---- end object JvThreadSimpleDialog1: TJvThreadSimpleDialog + DialogOptions.FormStyle = fsNormal DialogOptions.ShowDialog = True DialogOptions.ShowModal = False DialogOptions.CancelButtonCaption = 'Cancel' + DialogOptions.Caption = '23423423423432' + DialogOptions.InfoText = 'Infotext'#13#10'Multiline'#13#10'Third Line' + DialogOptions.InfoTextAlignment = taCenter Left = 260 Top = 20 end object JvThreadAnimateDialog1: TJvThreadAnimateDialog + DialogOptions.FormStyle = fsNormal DialogOptions.ShowDialog = True DialogOptions.CancelButtonCaption = 'Cancel' + DialogOptions.Caption = 'Execute Thread' + DialogOptions.InfoText = 'Infotext'#13#10'<yx<yx'#13#10'<y'#13#10'x' DialogOptions.CommonAVI = aviCopyFiles ! Left = 260 ! Top = 80 end end Index: fThread.pas =================================================================== RCS file: /cvsroot/jvcl/dev/JVCL3/examples/JvThread/fThread.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** fThread.pas 13 Apr 2005 19:54:17 -0000 1.6 --- fThread.pas 4 Oct 2005 00:59:03 -0000 1.7 *************** *** 31,35 **** uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ! StdCtrls, JvThread, JvComponent, JvThreadDialog, ComCtrls; type --- 31,37 ---- uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ! StdCtrls, JvThread, JvComponent, JvThreadDialog, ComCtrls, //JvThreadGifDialog, ! JvExControls, JvAnimatedImage, JvGIFCtrl, JvProgressBar, JvExComCtrls, ! JvComponentBase, ActnList, JvDBActions, ExtCtrls; type |