Review task/event viewer/editor

Components will now appear in dialogs instead of a right sidenav.

This commit also introduces read-only viewers for tasks and events.
This commit is contained in:
Francis Lachapelle
2015-07-21 08:26:50 -04:00
parent 5eeb473fe8
commit a75524af9f
15 changed files with 530 additions and 251 deletions
+22
View File
@@ -329,6 +329,24 @@
@end
/* Appointment Viewer */
@interface UIxAppointmentViewTemplate : UIxComponent
@end
@implementation UIxAppointmentViewTemplate
@end
/* Task Viewer */
@interface UIxTaskViewTemplate : UIxComponent
@end
@implementation UIxTaskViewTemplate
@end
/* Component Editor, parent class of Appointment Editor and Task Editor */
@interface UIxComponentEditorTemplate : UIxComponent
{
id item;
@@ -388,12 +406,16 @@
@end
/* Appointment Editor */
@interface UIxAppointmentEditorTemplate : UIxComponentEditorTemplate
@end
@implementation UIxAppointmentEditorTemplate
@end
/* Task Editor */
@interface UIxTaskEditorTemplate : UIxComponentEditorTemplate
@end