2008-04-19 15:31:50 +00:00
|
|
|
/* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2008-04-19 15:31:50 +00:00
|
|
|
|
|
|
|
#ifndef nsAppShell_h__
|
|
|
|
#define nsAppShell_h__
|
|
|
|
|
2010-03-04 21:51:42 +00:00
|
|
|
#include <qsocketnotifier.h>
|
2008-04-19 15:31:50 +00:00
|
|
|
#include "nsBaseAppShell.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Native QT Application shell wrapper
|
|
|
|
*/
|
|
|
|
|
2008-04-19 15:35:04 +00:00
|
|
|
class nsAppShell : public QObject,
|
|
|
|
public nsBaseAppShell
|
2008-04-19 15:31:50 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2008-04-19 15:35:04 +00:00
|
|
|
|
2008-04-19 15:31:50 +00:00
|
|
|
public:
|
2008-04-22 11:12:52 +00:00
|
|
|
nsAppShell() { };
|
2008-04-19 15:31:50 +00:00
|
|
|
|
|
|
|
nsresult Init();
|
|
|
|
|
2008-04-22 12:20:42 +00:00
|
|
|
virtual bool event (QEvent *e);
|
2008-04-19 15:31:50 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void ScheduleNativeEventCallback();
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool ProcessNextNativeEvent(bool mayWait);
|
2008-04-19 15:31:50 +00:00
|
|
|
virtual ~nsAppShell();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // nsAppShell_h__
|
|
|
|
|