/*@DISCLAIMER@*/ // $Id$ #ifndef __ConnectionController_h_INCLUDE #define __ConnectionController_h_INCLUDE #import @interface ConnectionController : NSObject { IBOutlet NSWindow *window; IBOutlet NSComboBox *urlComboBox; IBOutlet NSPanel *configurePropertiesPanel; IBOutlet NSTableView *propertiesTableView; IBOutlet NSButton *removePropertyButton; IBOutlet NSTableView *contentTableView; NSMutableArray *content; NSMutableArray *urls; NSMutableArray *properties; } + (id)controller; - (void)showWindow; - (IBAction)connectToURL:(id)sender; - (IBAction)configureProperties:(id)sender; - (IBAction)addProperty:(id)sender; - (IBAction)removeProperty:(id)sender; - (IBAction)endConfigurePropertiesPanel:(id)sender; @end #endif /* __ConnectionController_h_INCLUDE */