forked from dessibelle/Blue-Screen-Saver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BSODSaverView.h
37 lines (30 loc) · 1.14 KB
/
BSODSaverView.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
//
// SCView.h
// SC
//
// Created by Simon Fransson on 2010-05-03.
// Copyright (c) 2010, Hobo Code. All rights reserved.
//
#import <ScreenSaver/ScreenSaver.h>
@interface BSODSaverView : ScreenSaverView
{}
@property (strong) NSColor *backgroundColor;
@property (strong) NSColor *captionBackgroundColor;
@property (strong) NSFont *font;
@property (strong) NSDictionary *drawingAttributes;
@property (strong) NSDictionary *captionDrawingAttributes;
@property (copy) NSString *captionString;
@property (copy) NSString *contentString;
@property (strong) ScreenSaverDefaults *defaults;
@property (assign) BOOL hasUnderscoreSuffix;
@property (assign) BOOL xp;
@property (assign) BOOL fatal;
@property (strong) IBOutlet NSWindow *configSheet;
@property (strong) IBOutlet NSSlider *typeSlider;
@property (strong) IBOutlet NSSlider *fatalitySlider;
@property (strong) IBOutlet NSSlider *fontSizeSlider;
- (IBAction)configSheetCancelAction:(id)sender;
- (IBAction)configSheetOKAction:(id)sender;
- (IBAction)URLTextFieldClicked:(id)sender;
- (IBAction)resetDefaultSettingsClicked:(id)sender;
@end