Last change
on this file since 1542 was 459, checked in by Kevin Toppenberg, 16 years ago |
Adding foia-cprs branch
|
File size:
1.0 KB
|
Rev | Line | |
---|
[459] | 1 | unit fOMProgress;
|
---|
| 2 |
|
---|
| 3 | interface
|
---|
| 4 |
|
---|
| 5 | uses
|
---|
| 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
| 7 | fAutoSz, StdCtrls, ORCtrls, CheckLst, ORFn;
|
---|
| 8 |
|
---|
| 9 | type
|
---|
| 10 | TfrmOMProgress = class(TfrmAutoSz)
|
---|
| 11 | lstItems: TCheckListBox;
|
---|
| 12 | cmdStop: TORAlignButton;
|
---|
| 13 | procedure FormCreate(Sender: TObject);
|
---|
| 14 | private
|
---|
| 15 | { Private declarations }
|
---|
| 16 | public
|
---|
| 17 | { Public declarations }
|
---|
| 18 | end;
|
---|
| 19 |
|
---|
| 20 | var
|
---|
| 21 | frmOMProgress: TfrmOMProgress;
|
---|
| 22 |
|
---|
| 23 | procedure OrderSetStart(AnItemList: TStringList);
|
---|
| 24 | procedure OrderSetItemStart(AnItem: Integer; ADialog: TForm);
|
---|
| 25 | procedure OrderSetItemDone(AnItem: Integer);
|
---|
| 26 | procedure OrderSetDone;
|
---|
| 27 |
|
---|
| 28 | implementation
|
---|
| 29 |
|
---|
| 30 | {$R *.DFM}
|
---|
| 31 |
|
---|
| 32 | procedure OrderSetStart(AnItemList: TStringList);
|
---|
| 33 | begin
|
---|
| 34 | end;
|
---|
| 35 |
|
---|
| 36 | procedure OrderSetItemStart(AnItem: Integer; ADialog: TForm);
|
---|
| 37 | begin
|
---|
| 38 | end;
|
---|
| 39 |
|
---|
| 40 | procedure OrderSetItemDone(AnItem: Integer);
|
---|
| 41 | begin
|
---|
| 42 | end;
|
---|
| 43 |
|
---|
| 44 | procedure OrderSetDone;
|
---|
| 45 | begin
|
---|
| 46 | end;
|
---|
| 47 |
|
---|
| 48 | procedure TfrmOMProgress.FormCreate(Sender: TObject);
|
---|
| 49 | begin
|
---|
| 50 | inherited;
|
---|
| 51 | lstItems.Color := ReadOnlyColor;
|
---|
| 52 | end;
|
---|
| 53 |
|
---|
| 54 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.