--- a/client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs Thu Feb 04 16:38:04 2010 +0100
@@ -107,6 +107,13 @@
Pause = new Command("Pause");
LeftTrim = new Command("LeftTrim");
RightTrim = new Command("RightTrim");
+ NewAnnotationFinished = new Command("NewAnnotationFinished");
+ }
+
+ public static Command NewAnnotationFinished
+ {
+ get;
+ private set;
}
public static Command OkClick
{
@@ -297,9 +304,22 @@
PublishClick = new Command("PublishClick");
SaveClick = new Command("SaveClick");
+ EditFinishedOk = new Command("EditFinishedOk");
+ IndexFinishedOk = new Command("IndexFinishedOk");
+
}
-
+ public static Command EditFinishedOk
+ {
+ get;
+ private set;
+ }
+ public static Command IndexFinishedOk
+ {
+ get;
+ private set;
+ }
+
public static Command PublishClick
{
get;
@@ -412,10 +432,17 @@
GoToTime = new Command("GoToTime");
ActivePart = new Command("ActivePart");
EscapeKeyPressed = new Command("EscapeKeyPressed");
+ HttpSenderResponse = new Command("HttpSenderResponse");
// VideoPositionTimer.Tick += new EventHandler(Each_Tick);
}
+
+ public static Command HttpSenderResponse
+ {
+ get;
+ private set;
+ }
public static Command EscapeKeyPressed
{
get;
@@ -519,6 +546,26 @@
{
}
}
+
+ public static class BookTimeLine
+ {
+
+ static BookTimeLine()
+ {
+ SaveAnnotations = new Command("SaveAnnotations");
+
+ }
+ public static Command SaveAnnotations
+ {
+ get;
+ private set;
+ }
+
+ public static void Initialize()
+ {
+ }
+ }
+
/// <summary>
/// Ensure static fields are initialized
/// </summary>
@@ -536,6 +583,7 @@
VideoViewer.Initialize();
ProductionView.Initialize();
Commands.WebCamControl.Initialize();
+ BookTimeLine.Initialize();
}
}