gecko-dev/camino/PreferencePanes/Privacy/PrivacyPane.h
pinkerton%netscape.com 43ca5b70d1 Updated nibs for new classnames. Made Privacy pane set prefs as soon
as you click the control, not only when the panel goes away.
2002-05-30 19:12:35 +00:00

26 lines
612 B
Objective-C

#import <Cocoa/Cocoa.h>
#import <PreferencePanes/NSPreferencePane.h>
class nsIPref;
@interface OrgMozillaChimeraPreferencePrivacy : NSPreferencePane
{
IBOutlet id mCookies;
IBOutlet NSButton* mPromptForCookie;
IBOutlet NSButton* mEnableJS;
IBOutlet NSButton* mEnableJava;
nsIPref* mPrefService; // strong ref, but can't use comPtr here
}
-(IBAction) clearCookies:(id)aSender;
-(IBAction) clearDiskCache:(id)aSender;
-(IBAction) clickPromptForCookie:(id)sender;
-(IBAction) clickEnableCookies:(id)sender;
-(IBAction) clickEnableJS:(id)sender;
-(IBAction) clickEnableJava:(id)sender;
@end