2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2011-11-04 00:39:07 +04:00
|
|
|
#ifndef nsToolkit_h__
|
|
|
|
#define nsToolkit_h__
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
#include "nsdefs.h"
|
|
|
|
|
2005-02-27 20:52:44 +03:00
|
|
|
#include "nsITimer.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2011-12-15 01:22:46 +04:00
|
|
|
#include <windows.h>
|
2006-04-06 03:21:57 +04:00
|
|
|
|
2008-12-30 08:39:24 +03:00
|
|
|
// Avoid including windowsx.h to prevent macro pollution
|
|
|
|
#ifndef GET_X_LPARAM
|
|
|
|
#define GET_X_LPARAM(pt) (short(LOWORD(pt)))
|
|
|
|
#endif
|
|
|
|
#ifndef GET_Y_LPARAM
|
|
|
|
#define GET_Y_LPARAM(pt) (short(HIWORD(pt)))
|
|
|
|
#endif
|
|
|
|
|
2011-11-04 00:39:07 +04:00
|
|
|
/**
|
|
|
|
* Wrapper around the thread running the message pump.
|
|
|
|
* The toolkit abstraction is necessary because the message pump must
|
|
|
|
* execute within the same thread that created the widget under Win32.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsToolkit
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsToolkit();
|
|
|
|
|
|
|
|
private:
|
|
|
|
~nsToolkit();
|
|
|
|
|
|
|
|
public:
|
|
|
|
static nsToolkit* GetToolkit();
|
|
|
|
|
|
|
|
static HINSTANCE mDllInstance;
|
|
|
|
|
|
|
|
static void Startup(HMODULE hModule);
|
|
|
|
static void Shutdown();
|
|
|
|
static void StartAllowingD3D9();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static nsToolkit* gToolkit;
|
|
|
|
|
|
|
|
nsCOMPtr<nsITimer> mD3D9Timer;
|
|
|
|
};
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#endif // TOOLKIT_H
|