mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 02:00:43 +00:00
27 lines
640 B
C++
27 lines
640 B
C++
/* Overview GUI Headers
|
|
*
|
|
* Copyright (c) 2023-2024 The OSCAR Team
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of the source code
|
|
* for more details. */
|
|
|
|
#ifndef HIGHRESOLUTION_H
|
|
#define HIGHRESOLUTION_H
|
|
|
|
namespace HighResolution {
|
|
|
|
// used by main.cpp
|
|
enum HiResolutionMode {HRM_INVALID = 0 , HRM_DISABLED = 1, HRM_ENABLED = 2} ;
|
|
void init();
|
|
void init(HiResolutionMode);
|
|
bool isEnabled();
|
|
void display(bool);
|
|
|
|
// used by preferences
|
|
bool checkBox(bool set,QCheckBox* button);
|
|
}
|
|
|
|
#endif // HIGHRESOLUTION_H
|
|
|