mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-01 00:11:57 +08:00
21 lines
436 B
C++
21 lines
436 B
C++
///|/ Copyright (c) Prusa Research 2019 Vojtěch Bubník @bubnikv, Vojtěch Král @vojtechkral
|
|
///|/
|
|
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
|
|
///|/
|
|
#ifndef slic3r_MacDarkMode_hpp_
|
|
#define slic3r_MacDarkMode_hpp_
|
|
|
|
namespace Slic3r {
|
|
namespace GUI {
|
|
|
|
#if __APPLE__
|
|
extern bool mac_dark_mode();
|
|
extern double mac_max_scaling_factor();
|
|
#endif
|
|
|
|
|
|
} // namespace GUI
|
|
} // namespace Slic3r
|
|
|
|
#endif // MacDarkMode_h
|