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