diff options
| author | Simeon Simeonov | 2020-03-12 12:30:51 +0100 |
|---|---|---|
| committer | Simeon Simeonov | 2020-03-12 12:30:51 +0100 |
| commit | 69a05d516bd0c7e369a0ba1fb78aac57a5ea26f2 (patch) | |
| tree | 87e37110ea0e328533a41c3b16b64036ff132641 /dpi.h | |
Initial commit for the last i3lock commit at this time f3b061233e28ad0cf920c9421adc2459b6920812
Diffstat (limited to 'dpi.h')
| -rw-r--r-- | dpi.h | 22 |
1 files changed, 22 insertions, 0 deletions
| @@ -0,0 +1,22 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | /** | ||
| 4 | * Initialize the DPI setting. | ||
| 5 | * This will use the 'Xft.dpi' X resource if available and fall back to | ||
| 6 | * guessing the correct value otherwise. | ||
| 7 | */ | ||
| 8 | void init_dpi(void); | ||
| 9 | |||
| 10 | /** | ||
| 11 | * This function returns the value of the DPI setting. | ||
| 12 | * | ||
| 13 | */ | ||
| 14 | long get_dpi_value(void); | ||
| 15 | |||
| 16 | /** | ||
| 17 | * Convert a logical amount of pixels (e.g. 2 pixels on a “standard” 96 DPI | ||
| 18 | * screen) to a corresponding amount of physical pixels on a standard or retina | ||
| 19 | * screen, e.g. 5 pixels on a 227 DPI MacBook Pro 13" Retina screen. | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | int logical_px(const int logical); | ||
