Files
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

70 lines
1.8 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 nsAppShell_h_
#define nsAppShell_h_
#include <windows.h>
#include <vector>
#include "mozilla/Mutex.h"
#include "mozilla/TimeStamp.h"
#include "nsBaseAppShell.h"
// The maximum time we allow before forcing a native event callback.
// In seconds.
#define NATIVE_EVENT_STARVATION_LIMIT 1
/**
* Native Win32 Application shell wrapper
*/
class nsAppShell final : public nsBaseAppShell {
public:
nsAppShell()
: mEventWnd(nullptr),
mNativeCallbackPending(false),
mLastNativeEventScheduledMutex(
"nsAppShell::mLastNativeEventScheduledMutex") {}
typedef mozilla::TimeStamp TimeStamp;
typedef mozilla::Mutex Mutex;
static bool PrecacheEventWindow();
nsresult Init();
void DoProcessMoreGeckoEvents();
static UINT GetTaskbarButtonCreatedMessage();
NS_IMETHOD AfterProcessNextEvent(nsIThreadInternal* thread,
bool eventWasProcessed) final;
protected:
NS_IMETHOD Run() override;
NS_IMETHOD Observe(nsISupports* aSubject, const char* aTopic,
const char16_t* aData) override;
virtual void ScheduleNativeEventCallback();
virtual bool ProcessNextNativeEvent(bool mayWait);
virtual ~nsAppShell();
static LRESULT CALLBACK EventWindowProc(HWND, UINT, WPARAM, LPARAM);
protected:
static HWND StaticCreateEventWindow();
static HWND sPrecachedEventWnd;
nsresult InitEventWindow();
HWND mEventWnd;
bool mNativeCallbackPending;
Mutex mLastNativeEventScheduledMutex MOZ_UNANNOTATED;
TimeStamp mLastNativeEventScheduled;
std::vector<MSG> mMsgsToRepost;
private:
wchar_t mTimezoneName[128];
};
#endif // nsAppShell_h_