gecko-dev/camino/PreferencePanes/Privacy/PrivacyPane.h

32 lines
788 B
C
Raw Normal View History

2002-05-23 00:24:08 +00:00
#import <Cocoa/Cocoa.h>
#import <PreferencePanes/NSPreferencePane.h>
#import "PreferencePaneBase.h"
2002-05-23 00:24:08 +00:00
class nsIPref;
@interface OrgMozillaChimeraPreferencePrivacy : PreferencePaneBase
2002-05-23 00:24:08 +00:00
{
IBOutlet id mCookies;
IBOutlet NSButton* mPromptForCookie;
IBOutlet NSButton* mEnableJS;
IBOutlet NSButton* mEnableJava;
IBOutlet NSButton* mLeaveEncrypted;
IBOutlet NSButton* mLoadLowGrade;
IBOutlet NSButton* mViewMixed;
2002-05-23 00:24:08 +00:00
}
-(IBAction) clearCookies:(id)aSender;
-(IBAction) clickPromptForCookie:(id)sender;
-(IBAction) clickEnableCookies:(id)sender;
-(IBAction) clickEnableJS:(id)sender;
-(IBAction) clickEnableJava:(id)sender;
-(IBAction) clickEnableLeaveEncrypted:(id)sender;
-(IBAction) clickEnableLoadLowGrade:(id)sender;
-(IBAction) clickEnableViewMixed:(id)sender;
2002-05-23 00:24:08 +00:00
@end