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