35bc8f449b
There are no longer any qt headers included in wx/qt headers. Applications do not need to link with qt librarys anymore, only wxqt libraries. wxWindow and derived widgets only contain one pointer to their qtwidget, no longer carrying both base and derived pointers in parallel as was before.
29 lines
879 B
C++
29 lines
879 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/qt/msgdlg.h
|
|
// Author: Peter Most, Javier Torres
|
|
// Copyright: (c) Peter Most, Javier Torres
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_QT_MSGDLG_H_
|
|
#define _WX_QT_MSGDLG_H_
|
|
|
|
#include "wx/msgdlg.h"
|
|
|
|
class QMessageBox;
|
|
|
|
class WXDLLIMPEXP_CORE wxMessageDialog : public wxMessageDialogBase
|
|
{
|
|
public:
|
|
wxMessageDialog(wxWindow *parent, const wxString& message,
|
|
const wxString& caption = wxMessageBoxCaptionStr,
|
|
long style = wxOK|wxCENTRE,
|
|
const wxPoint& pos = wxDefaultPosition);
|
|
virtual ~wxMessageDialog();
|
|
|
|
// Reimplemented to translate return codes from Qt to wx
|
|
virtual int ShowModal();
|
|
};
|
|
|
|
#endif // _WX_QT_MSGDLG_H_
|