2014-08-23 21:50:11 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/qt/dialog.h
|
2014-08-28 23:37:46 -04:00
|
|
|
// Author: Peter Most, Javier Torres, Mariano Reingart, Sean D'Epagnier
|
|
|
|
// Copyright: (c) 2010 wxWidgets dev team
|
2014-08-23 21:50:11 -04:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_QT_DIALOG_H_
|
|
|
|
#define _WX_QT_DIALOG_H_
|
|
|
|
|
|
|
|
#include "wx/dialog.h"
|
2016-08-25 11:56:00 -04:00
|
|
|
class QDialog;
|
2014-08-23 21:50:11 -04:00
|
|
|
|
|
|
|
class WXDLLIMPEXP_CORE wxDialog : public wxDialogBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDialog();
|
|
|
|
wxDialog( wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString &title,
|
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize &size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_DIALOG_STYLE,
|
|
|
|
const wxString &name = wxDialogNameStr );
|
|
|
|
|
|
|
|
virtual ~wxDialog();
|
|
|
|
|
|
|
|
bool Create( wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString &title,
|
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize &size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_DIALOG_STYLE,
|
|
|
|
const wxString &name = wxDialogNameStr );
|
|
|
|
|
2019-01-21 07:49:06 -05:00
|
|
|
virtual int ShowModal() wxOVERRIDE;
|
|
|
|
virtual void EndModal(int retCode) wxOVERRIDE;
|
|
|
|
virtual bool IsModal() const wxOVERRIDE;
|
2019-01-22 06:06:30 -05:00
|
|
|
virtual bool Show(bool show = true) wxOVERRIDE;
|
2014-08-23 21:50:11 -04:00
|
|
|
|
2016-08-25 11:56:00 -04:00
|
|
|
QDialog *GetDialogHandle() const;
|
2014-08-23 21:50:11 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
wxDECLARE_DYNAMIC_CLASS( wxDialog );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _WX_QT_DIALOG_H_
|