Skip to content

Commit

Permalink
Add Qt nsNativeBasicThemeQt class
Browse files Browse the repository at this point in the history
Adds a Qt version of the nsNativeBasicThemeQt class, which is now needed
due to upstream changes.

This reflects similar changes applied upstream for other toolkits (e.g.
Gtk, Android).
  • Loading branch information
llewelld committed Sep 23, 2023
1 parent b806977 commit 3733c96
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions widget/qt/moz.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ SOURCES += [
'nsAppShell.cpp',
'nsBidiKeyboard.cpp',
'nsLookAndFeel.cpp',
'nsNativeBasicThemeQt.cpp',
'nsNativeThemeQt.cpp',
'nsScreenManagerQt.cpp',
'nsScreenQt.cpp',
Expand Down
17 changes: 17 additions & 0 deletions widget/qt/nsNativeBasicThemeQt.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* -*- Mode: C++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "nsNativeBasicThemeQt.h"

#include "mozilla/ClearOnShutdown.h"

already_AddRefed<nsITheme> do_GetBasicNativeThemeDoNotUseDirectly() {
static mozilla::StaticRefPtr<nsITheme> gInstance;
if (MOZ_UNLIKELY(!gInstance)) {
gInstance = new nsNativeBasicThemeQt();
ClearOnShutdown(&gInstance);
}
return do_AddRef(gInstance);
}
20 changes: 20 additions & 0 deletions widget/qt/nsNativeBasicThemeQt.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef nsNativeBasicThemeQt_h
#define nsNativeBasicThemeQt_h

#include "nsNativeBasicTheme.h"

class nsNativeBasicThemeQt : public nsNativeBasicTheme {
public:
nsNativeBasicThemeQt() = default;

protected:
virtual ~nsNativeBasicThemeQt() = default;
};

#endif

0 comments on commit 3733c96

Please sign in to comment.