File: ULDatabaseManager.h

package info (click to toggle)
adun.app 0.81-15
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,384 kB
  • sloc: objc: 70,952; ansic: 6,668; yacc: 394; python: 75; cpp: 36; makefile: 33; xml: 15; awk: 3
file content (41 lines) | stat: -rw-r--r-- 766 bytes parent folder | download | duplicates (8)
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