Implemented group preferences.
[pithos-macos] / pithos-macos / PithosPreferencesController.h
index 091c4e9..cdb35c4 100644 (file)
 // or implied, of GRNET S.A.
 
 #import <Cocoa/Cocoa.h>
+@class PithosBrowserController;
 
 @interface PithosPreferencesController : NSWindowController <NSWindowDelegate> {
     NSUserDefaultsController *userDefaultsController;
+    PithosBrowserController *pithosBrowserController;
     
     NSTextField *authenticationUserTextField;
     NSTextField *authenticationTokenTextField;
     NSButton *authenticationRenewCheckBox;
+    
+    NSDictionaryController *groupsDictionaryController;
+    NSDictionaryController *selectedGroupMembersDictionaryController;
 }
 
 @property (nonatomic, assign) IBOutlet NSUserDefaultsController *userDefaultsController;
+@property (nonatomic, assign) IBOutlet PithosBrowserController *pithosBrowserController;
 
 @property (nonatomic, assign) IBOutlet NSTextField *authenticationUserTextField;
 @property (nonatomic, assign) IBOutlet NSTextField *authenticationTokenTextField;
 @property (nonatomic, assign) IBOutlet NSButton *authenticationRenewCheckBox;
 
+@property (nonatomic, assign) IBOutlet NSDictionaryController *groupsDictionaryController;
+@property (nonatomic, assign) IBOutlet NSDictionaryController *selectedGroupMembersDictionaryController;
+
+
 - (IBAction)toolbarItemSelected:(id)sender;
 
 - (IBAction)authenticationLogin:(id)sender;