Files
firefox/widget/RemoteLookAndFeel.h
Emilio Cobos Álvarez 2861287f6d Bug 2054311 - Sort headers in widget/. r=stransky,win-reviewers,geckoview-reviewers,gstoll,owlish
Autogenerated with:

    cp dom/.clang-format widget/ && mach format widget/**.{cpp,h,mm}

Manual changes:

 * Had to add a manual override in nsWaylandDisplay.h /
   DMABufFormats.cpp to include mozwayland before protocols.
 * Missing includes in nsWindowWayland/X11.h / nsDragService.
 * nsFilePicker missed an nsWindow forward declaration.
 * Various overrides in widget/windows because windows headers are order
   dependent.

Differential Revision: https://phabricator.services.mozilla.com/D311688
2026-07-14 16:17:37 +00:00

61 lines
2.0 KiB
C++

/* 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 mozilla_widget_RemoteLookAndFeel_h_
#define mozilla_widget_RemoteLookAndFeel_h_
#include "mozilla/widget/LookAndFeelTypes.h"
#include "mozilla/widget/nsXPLookAndFeel.h"
namespace mozilla::widget {
/**
* A LookAndFeel implementation whose native values are provided by the
* parent process.
*/
class RemoteLookAndFeel final : public nsXPLookAndFeel {
public:
explicit RemoteLookAndFeel(FullLookAndFeel&& aTables);
virtual ~RemoteLookAndFeel();
void NativeInit() override {}
nsresult NativeGetInt(IntID, int32_t& aResult) override;
nsresult NativeGetFloat(FloatID, float& aResult) override;
nsresult NativeGetColor(ColorID, ColorScheme, nscolor& aResult) override;
bool NativeGetFont(FontID aID, nsString& aFontName,
gfxFontStyle& aFontStyle) override;
char16_t GetPasswordCharacterImpl() override;
bool GetEchoPasswordImpl() override;
// Sets the LookAndFeel data to be used by this content process' singleton
// RemoteLookAndFeel object.
void SetDataImpl(FullLookAndFeel&& aTables) override;
// Extracts the data from the platform's default LookAndFeel implementation.
//
// This is called in the parent process to obtain the data to send down to
// content processes when they are created (and when the OS theme changes).
//
// Note that the pointer returned from here is only valid until the next time
// ClearCachedData is called.
static const FullLookAndFeel* ExtractData();
// Clears any cached extracted data from the platform's default LookAndFeel
// implementation.
//
// This is called in the parent process when the default LookAndFeel is
// refreshed, to invalidate sCachedLookAndFeelData.
static void ClearCachedData();
private:
LookAndFeelTables mTables;
};
} // namespace mozilla::widget
#endif // mozilla_widget_RemoteLookAndFeel_h_