|
Last change
on this file was 24, checked in by chronos, 13 years ago |
- Opraveno: Ladění komunikačního protokolu s terminálem BF-630.
|
|
File size:
326 bytes
|
| Line | |
|---|
| 1 | unit UMenu;
|
|---|
| 2 |
|
|---|
| 3 | {$mode delphi}
|
|---|
| 4 |
|
|---|
| 5 | interface
|
|---|
| 6 |
|
|---|
| 7 | uses
|
|---|
| 8 | Classes, SysUtils;
|
|---|
| 9 |
|
|---|
| 10 | type
|
|---|
| 11 | TChronis = class
|
|---|
| 12 | type
|
|---|
| 13 | TAction = class
|
|---|
| 14 | OnExecute: TNotifyEvent;
|
|---|
| 15 | end;
|
|---|
| 16 |
|
|---|
| 17 | TMenu = class
|
|---|
| 18 | end;
|
|---|
| 19 |
|
|---|
| 20 | TMenuItem = class
|
|---|
| 21 | Name: string;
|
|---|
| 22 | Action: TAction;
|
|---|
| 23 | end;
|
|---|
| 24 |
|
|---|
| 25 | end;
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 | implementation
|
|---|
| 30 |
|
|---|
| 31 | end.
|
|---|
| 32 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.