1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-03-31 13:07:22 -05:00
|
|
|
// Name: wx/motif/dialog.h
|
1998-09-18 06:19:10 -04:00
|
|
|
// Purpose: wxDialog class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DIALOG_H_
|
|
|
|
#define _WX_DIALOG_H_
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxEventLoop;
|
2003-02-02 10:48:50 -05:00
|
|
|
|
1998-09-18 06:19:10 -04:00
|
|
|
// Dialog boxes
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxDialog : public wxDialogBase
|
1998-09-18 06:19:10 -04:00
|
|
|
{
|
|
|
|
public:
|
1999-02-22 06:01:13 -05:00
|
|
|
wxDialog();
|
2003-01-06 11:36:23 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
wxDialog(wxWindow *parent, wxWindowID id,
|
2002-02-05 11:34:33 -05:00
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_DIALOG_STYLE,
|
2019-10-22 06:34:29 -04:00
|
|
|
const wxString& name = wxASCII_STR(wxDialogNameStr))
|
1999-02-22 06:01:13 -05:00
|
|
|
{
|
|
|
|
Create(parent, id, title, pos, size, style, name);
|
|
|
|
}
|
2003-01-12 17:20:46 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
2005-02-06 12:38:33 -05:00
|
|
|
const wxString& title,
|
2002-02-05 11:34:33 -05:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_DIALOG_STYLE,
|
2019-10-22 06:34:29 -04:00
|
|
|
const wxString& name = wxASCII_STR(wxDialogNameStr));
|
2003-01-12 17:20:46 -05:00
|
|
|
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxDialog();
|
2003-01-12 17:20:46 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual bool Destroy();
|
2003-01-06 11:36:23 -05:00
|
|
|
|
2005-02-06 12:38:33 -05:00
|
|
|
virtual bool Show(bool show = true);
|
2003-01-06 11:36:23 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
void SetTitle(const wxString& title);
|
2003-01-12 17:20:46 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
void SetModal(bool flag);
|
2003-01-12 17:20:46 -05:00
|
|
|
|
1999-06-29 08:34:18 -04:00
|
|
|
virtual bool IsModal() const
|
2006-03-31 13:07:22 -05:00
|
|
|
{ return m_modalShowing; }
|
2003-01-12 17:20:46 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual int ShowModal();
|
|
|
|
virtual void EndModal(int retCode);
|
2003-01-12 17:20:46 -05:00
|
|
|
|
1999-06-29 08:34:18 -04:00
|
|
|
// Implementation
|
2005-02-06 12:38:33 -05:00
|
|
|
virtual void ChangeFont(bool keepOriginalSize = true);
|
1999-06-29 08:34:18 -04:00
|
|
|
virtual void ChangeBackgroundColour();
|
|
|
|
virtual void ChangeForegroundColour();
|
2006-08-19 18:56:11 -04:00
|
|
|
WXWidget GetTopWidget() const { return m_mainWidget; }
|
|
|
|
WXWidget GetClientWidget() const { return m_mainWidget; }
|
2003-01-12 17:20:46 -05:00
|
|
|
|
2003-01-06 11:36:23 -05:00
|
|
|
private:
|
2005-09-25 16:29:58 -04:00
|
|
|
virtual bool XmDoCreateTLW(wxWindow* parent,
|
2005-09-14 10:36:02 -04:00
|
|
|
wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
long style,
|
|
|
|
const wxString& name);
|
|
|
|
|
2003-01-06 11:36:23 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
//// Motif-specific
|
|
|
|
bool m_modalShowing;
|
2003-02-02 10:48:50 -05:00
|
|
|
wxEventLoop* m_eventLoop;
|
2003-01-06 11:36:23 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
protected:
|
|
|
|
virtual void DoSetSize(int x, int y,
|
2006-08-19 18:56:11 -04:00
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
2003-01-12 17:20:46 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void DoSetClientSize(int width, int height);
|
2003-01-12 17:20:46 -05:00
|
|
|
|
2005-09-20 16:33:47 -04:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
private:
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxDialog);
|
1998-09-18 06:19:10 -04:00
|
|
|
};
|
|
|
|
|
2006-08-19 18:36:10 -04:00
|
|
|
#endif // _WX_DIALOG_H_
|