1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
/* All Rights reserved */
#include <AppKit/AppKit.h>
#include "ULFramework/ULFramework.h"
/**
Controls interface elements which allow the user
to maintain the different databases.
\ingroup interfaces
*/
@interface ULDatabaseManager : NSObject
{
ULDatabaseInterface* databaseInterface;
id addClientField;
id removeClientField;
id databaseLocation;
id databasePanel;
id tabView;
id actionButton;
}
/**
Description forthcoming
*/
- (void) closeDatabasePanel: (id)sender;
/**
Description forthcoming
*/
- (void) addDatabase: (id)sender;
/**
Description forthcoming
*/
- (void) removeDatabase: (id)sender;
/**
Description forthcoming
*/
- (void) showAddDatabasePanel: (id)sender;
/**
Description forthcoming
*/
- (void) showRemoveDatabasePanel: (id)sender;
@end
|