2016-07-20 Fred Gleason <fredg@paravelsystems.com>

* Added a 'settime' command to rdclilogedit(1) in
	'utils/rdclilogedit/rdclilogedit.cpp' and
	'utils/rdclilogedit/rdclilogedit.h'.
This commit is contained in:
Fred Gleason
2016-07-20 19:29:23 -04:00
parent 42d9286fd8
commit 27e674544c
4 changed files with 75 additions and 1 deletions

View File

@@ -28,7 +28,7 @@ void MainObject::Help(const QStringList &cmds) const
printf("\n");
printf("The following commands are available:\n");
printf("?, addcart, bye, exit, help, list, listlogs, load, quit, remove,\n");
printf("save, saveas, setcart, unload\n");
printf("save, saveas, setcart, settime, settrans, unload\n");
printf("\n");
printf("Enter \"? <cmd-name>\" for specific help.\n");
printf("\n");
@@ -108,6 +108,16 @@ void MainObject::Help(const QStringList &cmds) const
printf("\n");
processed=true;
}
if(verb=="settime") {
printf("\n");
printf(" settime <line> hard|none <time>\n");
printf("\n");
printf("Set the start time type and value of the event at line <line>.\n");
printf("The <time> parameter is in format \"HH:MM:SS\", and is optional when\n");
printf("when setting \"none\".\n");
printf("\n");
processed=true;
}
if(verb=="settrans") {
printf("\n");
printf(" settrans <line> play|segue|stop\n");