#include <command.h>
Inheritance diagram for CommandPrint:


Public Member Functions | |
| CommandPrint (std::string, int horig, int vorig, int hoff, int voff, double duration) | |
| void | process (ExecutionEnvironment &) |
Private Attributes | |
| double | duration |
| int | hOffset |
| int | hOrigin |
| std::string | text |
| int | vOffset |
| int | vOrigin |
|
||||||||||||||||||||||||||||
|
Definition at line 284 of file command.cpp. 00287 : text(_text), 00288 hOrigin(horig), vOrigin(vorig), 00289 hOffset(hoff), vOffset(voff), 00290 duration(_duration) 00291 { 00292 }
|
|
|
Implements InstantaneousCommand. Definition at line 294 of file command.cpp. References duration, hOffset, hOrigin, text, vOffset, and vOrigin. 00295 {
00296 env.showText(text, hOrigin, vOrigin, hOffset, vOffset, duration);
00297 }
|
|
|
Definition at line 265 of file command.h. Referenced by process(). |
|
|
Definition at line 263 of file command.h. Referenced by process(). |
|
|
Definition at line 261 of file command.h. Referenced by process(). |
|
|
Definition at line 260 of file command.h. Referenced by process(). |
|
|
Definition at line 264 of file command.h. Referenced by process(). |
|
|
Definition at line 262 of file command.h. Referenced by process(). |
1.4.1