| [456] | 1 | unit fODText; | 
|---|
|  | 2 |  | 
|---|
|  | 3 | interface | 
|---|
|  | 4 |  | 
|---|
|  | 5 | uses | 
|---|
|  | 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, | 
|---|
| [829] | 7 | fODBase, StdCtrls, ORCtrls, ComCtrls, ExtCtrls, ORFn, uConst, ORDtTm, | 
|---|
|  | 8 | VA508AccessibilityManager; | 
|---|
| [456] | 9 |  | 
|---|
|  | 10 | type | 
|---|
|  | 11 | TfrmODText = class(TfrmODBase) | 
|---|
|  | 12 | memText: TMemo; | 
|---|
|  | 13 | lblText: TLabel; | 
|---|
|  | 14 | txtStart: TORDateBox; | 
|---|
|  | 15 | txtStop: TORDateBox; | 
|---|
|  | 16 | lblStart: TLabel; | 
|---|
|  | 17 | lblStop: TLabel; | 
|---|
|  | 18 | procedure FormCreate(Sender: TObject); | 
|---|
|  | 19 | procedure ControlChange(Sender: TObject); | 
|---|
| [829] | 20 | procedure cmdAcceptClick(Sender: TObject); | 
|---|
| [456] | 21 | public | 
|---|
|  | 22 | procedure InitDialog; override; | 
|---|
|  | 23 | procedure SetupDialog(OrderAction: Integer; const ID: string); override; | 
|---|
|  | 24 | procedure Validate(var AnErrMsg: string); override; | 
|---|
|  | 25 | end; | 
|---|
|  | 26 |  | 
|---|
|  | 27 | var | 
|---|
|  | 28 | frmODText: TfrmODText; | 
|---|
|  | 29 |  | 
|---|
|  | 30 | implementation | 
|---|
|  | 31 |  | 
|---|
|  | 32 | {$R *.DFM} | 
|---|
|  | 33 |  | 
|---|
|  | 34 | uses rCore; | 
|---|
|  | 35 |  | 
|---|
|  | 36 | const | 
|---|
|  | 37 | TX_NO_TEXT = 'Some text must be entered.'; | 
|---|
|  | 38 | TX_STARTDT = 'Unable to interpret start date.'; | 
|---|
|  | 39 | TX_STOPDT  = 'Unable to interpret stop date.'; | 
|---|
|  | 40 | TX_GREATER = 'Stop date must be greater than start date.'; | 
|---|
|  | 41 |  | 
|---|
|  | 42 | { TfrmODBase common methods } | 
|---|
|  | 43 |  | 
|---|
|  | 44 | procedure TfrmODText.FormCreate(Sender: TObject); | 
|---|
|  | 45 | begin | 
|---|
|  | 46 | inherited; | 
|---|
|  | 47 | FillerID := 'OR';                     // does 'on Display' order check **KCM** | 
|---|
|  | 48 | StatusText('Loading Dialog Definition'); | 
|---|
| [829] | 49 | Responses.Dialog := 'OR GXTEXT WORD PROCESSING ORDER';  // loads formatting info | 
|---|
| [456] | 50 | //StatusText('Loading Default Values');                // there are no defaults for text only | 
|---|
|  | 51 | //CtrlInits.LoadDefaults(ODForText); | 
|---|
|  | 52 | InitDialog; | 
|---|
|  | 53 | StatusText(''); | 
|---|
|  | 54 | end; | 
|---|
|  | 55 |  | 
|---|
|  | 56 | procedure TfrmODText.InitDialog; | 
|---|
|  | 57 | begin | 
|---|
|  | 58 | inherited;                             // inherited clears dialog controls and responses | 
|---|
|  | 59 | ActiveControl := memText;  //SetFocusedControl(memText); | 
|---|
|  | 60 | end; | 
|---|
|  | 61 |  | 
|---|
|  | 62 | procedure TfrmODText.SetupDialog(OrderAction: Integer; const ID: string); | 
|---|
|  | 63 | begin | 
|---|
|  | 64 | inherited; | 
|---|
|  | 65 | if OrderAction in [ORDER_COPY, ORDER_EDIT, ORDER_QUICK] then with Responses do | 
|---|
|  | 66 | begin | 
|---|
|  | 67 | SetControl(memText,  'COMMENT', 1); | 
|---|
|  | 68 | SetControl(txtStart, 'START',   1); | 
|---|
|  | 69 | SetControl(txtStop,  'STOP',    1); | 
|---|
|  | 70 | end | 
|---|
|  | 71 | else txtStart.Text := 'NOW'; | 
|---|
|  | 72 | end; | 
|---|
|  | 73 |  | 
|---|
|  | 74 | procedure TfrmODText.Validate(var AnErrMsg: string); | 
|---|
|  | 75 | const | 
|---|
|  | 76 | SPACE_CHAR = 32; | 
|---|
|  | 77 | var | 
|---|
|  | 78 | ContainsPrintable: Boolean; | 
|---|
|  | 79 | i: Integer; | 
|---|
|  | 80 | StartTime, StopTime: TFMDateTime; | 
|---|
|  | 81 |  | 
|---|
|  | 82 | procedure SetError(const x: string); | 
|---|
|  | 83 | begin | 
|---|
|  | 84 | if Length(AnErrMsg) > 0 then AnErrMsg := AnErrMsg + CRLF; | 
|---|
|  | 85 | AnErrMsg := AnErrMsg + x; | 
|---|
|  | 86 | end; | 
|---|
|  | 87 |  | 
|---|
|  | 88 | begin | 
|---|
|  | 89 | inherited; | 
|---|
|  | 90 | ContainsPrintable := False; | 
|---|
|  | 91 | for i := 1 to Length(memText.Text) do if Ord(memText.Text[i]) > SPACE_CHAR then | 
|---|
|  | 92 | begin | 
|---|
|  | 93 | ContainsPrintable := True; | 
|---|
|  | 94 | break; | 
|---|
|  | 95 | end; | 
|---|
|  | 96 | if not ContainsPrintable then SetError(TX_NO_TEXT); | 
|---|
|  | 97 | with txtStart do if Length(Text) > 0 | 
|---|
|  | 98 | then StartTime := StrToFMDateTime(Text) | 
|---|
|  | 99 | else StartTime := 0; | 
|---|
|  | 100 | with txtStop do if Length(Text) > 0 | 
|---|
|  | 101 | then StopTime := StrToFMDateTime(Text) | 
|---|
|  | 102 | else StopTime := 0; | 
|---|
|  | 103 | if StartTime = -1 then SetError(TX_STARTDT); | 
|---|
|  | 104 | if StopTime  = -1 then SetError(TX_STARTDT); | 
|---|
|  | 105 | if (StopTime > 0) and (StopTime < StartTime) then SetError(TX_GREATER); | 
|---|
|  | 106 | //the following is commented out because should be using relative times | 
|---|
|  | 107 | //if AnErrMsg = '' then | 
|---|
|  | 108 | //begin | 
|---|
|  | 109 | //  Responses.Update('START', 1, FloatToStr(StartTime), txtStart.Text); | 
|---|
|  | 110 | //  Responses.Update('STOP', 1, FloatToStr(StopTime), txtStop.Text); | 
|---|
|  | 111 | //end; | 
|---|
|  | 112 | end; | 
|---|
|  | 113 |  | 
|---|
| [829] | 114 | procedure TfrmODText.cmdAcceptClick(Sender: TObject); | 
|---|
|  | 115 | begin | 
|---|
|  | 116 | inherited; | 
|---|
|  | 117 | Application.ProcessMessages; //CQ 14670 | 
|---|
|  | 118 | memText.Lines.Text := Trim(memText.Lines.Text); //CQ 14670 | 
|---|
|  | 119 | end; | 
|---|
|  | 120 |  | 
|---|
| [456] | 121 | procedure TfrmODText.ControlChange(Sender: TObject); | 
|---|
|  | 122 | begin | 
|---|
|  | 123 | inherited; | 
|---|
|  | 124 | if Changing then Exit; | 
|---|
|  | 125 | with memText  do if GetTextLen > 0   then Responses.Update('COMMENT', 1, TX_WPTYPE, Text); | 
|---|
|  | 126 | with txtStart do if Length(Text) > 0 then Responses.Update('START', 1, Text, Text); | 
|---|
|  | 127 | with txtStop  do if Length(Text) > 0 then Responses.Update('STOP', 1, Text, Text); | 
|---|
|  | 128 | memOrder.Text := Responses.OrderText; | 
|---|
|  | 129 | end; | 
|---|
|  | 130 |  | 
|---|
|  | 131 | end. | 
|---|
|  | 132 |  | 
|---|
|  | 133 |  | 
|---|