Codebase list agenda.app / upstream/0.41 TaskEditor.h
upstream/0.41

Tree @upstream/0.41 (Download .tar.gz)

TaskEditor.h @upstream/0.41raw · history · blame

/* emacs buffer mode hint -*- objc -*- */

#import <Foundation/Foundation.h>

@class Task;

@interface TaskEditor : NSObject
{
  id window;
  id description;
  id summary;
  id store;
  id state;
  id ok;
  Task *_task;
}

+ (TaskEditor *)editorForTask:(Task *)task;
- (void)validate:(id)sender;
- (void)cancel:(id)sender;
@end