mirror of
https://github.com/NohamR/Reclass.git
synced 2026-05-10 19:59:21 +00:00
13 lines
279 B
C++
13 lines
279 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
namespace rcx {
|
|
|
|
struct Theme;
|
|
|
|
// Apply macOS native title bar color to match the theme.
|
|
// No-op on non-macOS platforms (implementation is platform-specific).
|
|
void applyMacTitleBarTheme(QWidget* window, const Theme& theme);
|
|
|
|
} // namespace rcx
|