Files
archived-Reclass/src/macos_titlebar.h
2026-03-02 11:34:22 -08:00

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