-
Notifications
You must be signed in to change notification settings - Fork 0
/
WMPrefPaneController.h
38 lines (32 loc) · 974 Bytes
/
WMPrefPaneController.h
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
//
// WMPrefPaneController.h
// Widget Manager
//
// Created by Marc Charbonneau on 3/14/06.
// Copyright 2006 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <PreferencePanes/PreferencePanes.h>
@interface WMPrefPaneController : NSPreferencePane
{
IBOutlet NSTableView *tableView;
IBOutlet NSTextField *widgetCount;
IBOutlet NSPopUpButton *actionButton;
IBOutlet NSButton *disableButton;
IBOutlet NSButton *removeButton;
IBOutlet NSImageView *iconView;
IBOutlet NSTextField *nameField;
IBOutlet NSTextField *pathField;
IBOutlet NSTextField *websiteField;
}
- (void)reloadMainView;
- (IBAction)search:(id)sender;
- (IBAction)openSelected:(id)sender;
- (IBAction)revealSelected:(id)sender;
- (IBAction)disableOrEnableSelected:(id)sender;
- (IBAction)removeSelected:(id)sender;
- (IBAction)reloadDashboard:(id)sender;
- (IBAction)openWebsite:(id)sender;
- (IBAction)getSupport:(id)sender;
- (IBAction)sendFeedback:(id)sender;
@end