8fc5475e15
Commit history was lost in the git to svn merge for trunk, so this reflect work done in two GSOC projects and/or by several authors. Lines changed by each user was the main metric used to ack major contributions. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
31 lines
722 B
C++
31 lines
722 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: app.h
|
|
// Purpose: wxApp class
|
|
// Author: Peter Most, Mariano Reingart
|
|
// Copyright: (c) 2009 wxWidgets dev team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_QT_APP_H_
|
|
#define _WX_QT_APP_H_
|
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
class WXDLLIMPEXP_CORE wxApp : public wxAppBase
|
|
{
|
|
public:
|
|
wxApp();
|
|
~wxApp();
|
|
|
|
virtual bool Initialize(int& argc, wxChar **argv);
|
|
|
|
private:
|
|
QApplication *m_qtApplication;
|
|
int m_qtArgc;
|
|
char **m_qtArgv;
|
|
|
|
wxDECLARE_DYNAMIC_CLASS_NO_COPY( wxApp );
|
|
};
|
|
|
|
#endif // _WX_QT_APP_H_
|