37 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// This file is part of Desktop App Toolkit,
 | 
						|
// a set of libraries for developing nice desktop applications.
 | 
						|
//
 | 
						|
// For license and copyright information please follow this link:
 | 
						|
// https://github.com/desktop-app/legal/blob/master/LEGAL
 | 
						|
//
 | 
						|
#include "ui/style/style_core_scale.h"
 | 
						|
 | 
						|
#include "base/assertion.h"
 | 
						|
 | 
						|
namespace style {
 | 
						|
namespace {
 | 
						|
 | 
						|
int DevicePixelRatioValue = 1;
 | 
						|
int ScaleValue = kScaleDefault;
 | 
						|
 | 
						|
} // namespace
 | 
						|
 | 
						|
int DevicePixelRatio() {
 | 
						|
	return DevicePixelRatioValue;
 | 
						|
}
 | 
						|
 | 
						|
void SetDevicePixelRatio(int ratio) {
 | 
						|
	DevicePixelRatioValue = ratio;
 | 
						|
}
 | 
						|
 | 
						|
int Scale() {
 | 
						|
	return ScaleValue;
 | 
						|
}
 | 
						|
 | 
						|
void SetScale(int scale) {
 | 
						|
	Expects(scale != 0);
 | 
						|
 | 
						|
	ScaleValue = scale;
 | 
						|
}
 | 
						|
 | 
						|
} // namespace style
 |