Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RetinaHelperImpl.hmm « Utils « slic3r « src - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0edde2990a75364819e1aa2364ef4ffb7799fc85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import <Cocoa/Cocoa.h>

class wxEvtHandler;

@interface RetinaHelperImpl : NSObject
{
	NSView *view;
	wxEvtHandler* handler;
}

-(id)initWithView:(NSView *)view handler:(wxEvtHandler *)handler;
-(void)setViewWantsBestResolutionOpenGLSurface:(BOOL)value;
-(BOOL)getViewWantsBestResolutionOpenGLSurface;
-(float)getBackingScaleFactor;
@end