summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/QtUtils/SetWindowDecorations.h
blob: 370c57336922e9b7f7aec49b83350caa5b7ec8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2023 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#if defined(_WIN32)

class QApplication;

namespace QtUtils
{
// Changes the window decorations (title bar) for Windows "Dark" mode or "Dark" Dolphin Style.
void InstallWindowDecorationFilter(QApplication*);
}  // namespace QtUtils

#endif