You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
556 B

  1. #pragma once
  2. /**
  3. * Initialize the DPI setting.
  4. * This will use the 'Xft.dpi' X resource if available and fall back to
  5. * guessing the correct value otherwise.
  6. */
  7. void init_dpi(void);
  8. /**
  9. * This function returns the value of the DPI setting.
  10. *
  11. */
  12. long get_dpi_value(void);
  13. /**
  14. * Convert a logical amount of pixels (e.g. 2 pixels on a standard 96 DPI
  15. * screen) to a corresponding amount of physical pixels on a standard or retina
  16. * screen, e.g. 5 pixels on a 227 DPI MacBook Pro 13" Retina screen.
  17. *
  18. */
  19. int logical_px(const int logical);