summaryrefslogtreecommitdiffstats
path: root/Liaison/GroupTableDelegate.h
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-14 21:45:08 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-04-14 21:45:08 -0400
commit17349a5e426dc7acf1216a3767a22f69974cbca0 (patch)
tree20029d02f07ab6257cccec36d34fb312f796e1d1 /Liaison/GroupTableDelegate.h
downloadliaison-17349a5e426dc7acf1216a3767a22f69974cbca0.tar.gz
liaison-17349a5e426dc7acf1216a3767a22f69974cbca0.zip
Initial commit.
Diffstat (limited to 'Liaison/GroupTableDelegate.h')
-rw-r--r--Liaison/GroupTableDelegate.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/Liaison/GroupTableDelegate.h b/Liaison/GroupTableDelegate.h
new file mode 100644
index 0000000..d31ef42
--- /dev/null
+++ b/Liaison/GroupTableDelegate.h
@@ -0,0 +1,43 @@
+/* GroupTableDelegate */
+
+@class Group;
+@class FileTableDelegate;
+@class WindowController;
+
+@interface GroupTableDelegate : NSObject
+{
+ IBOutlet NSOutlineView *outlineView;
+ IBOutlet NSTextField *statusLine;
+ IBOutlet WindowController *theWindow;
+ IBOutlet FileTableDelegate *theFileDelegate;
+ IBOutlet NSMenu *theContextMenu;
+
+ Group *theGroup;
+ Group *theSelectedGroup;
+
+ NSEvent *theMouseDownEvent;
+}
+- (IBAction)addGroup:(id)sender;
+
+- (NSSize)minSize;
+- (void)respondToFileStoreChanged: (NSNotification *)aNotification;
+
+- (BOOL)validateAction: (SEL)anAction;
+
+- (void)highlightDefaultGroup;
+@property (retain,getter=group) Group *theGroup;
+@property (retain) NSEvent *theMouseDownEvent;
+@property (retain) NSTextField *statusLine;
+@property (retain) FileTableDelegate *theFileDelegate;
+@property (retain) NSMenu *theContextMenu;
+@property (retain,getter=selectedGroup) Group *theSelectedGroup;
+@property (retain) NSOutlineView *outlineView;
+@property (retain) WindowController *theWindow;
+@end
+
+@interface GroupTableDelegate (Accessors)
+- (Group *)group;
+- (void)setGroup: (Group *)aGroup;
+- (Group *)selectedGroup;
+- (void)setSelectedGroup: (Group *)aGroup;
+@end \ No newline at end of file