1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dialog.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-11-15 17:57:55 +00:00
|
|
|
// Created:
|
1998-10-29 18:03:18 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKDIALOGH__
|
|
|
|
#define __GTKDIALOGH__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-05-20 14:01:55 +00:00
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxDialog;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// global data
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-04-14 21:52:38 +00:00
|
|
|
extern const wxChar *wxDialogNameStr;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxDialog
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-06-28 21:39:49 +00:00
|
|
|
class wxDialog: public wxDialogBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-11-15 17:57:55 +00:00
|
|
|
public:
|
1999-02-24 13:15:42 +00:00
|
|
|
wxDialog() { Init(); }
|
1999-02-22 11:01:13 +00:00
|
|
|
wxDialog( wxWindow *parent, wxWindowID id,
|
1998-11-15 17:57:55 +00:00
|
|
|
const wxString &title,
|
1999-02-05 14:26:48 +00:00
|
|
|
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
|
|
|
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 );
|
2001-09-15 22:13:08 +00:00
|
|
|
~wxDialog() {}
|
1999-02-22 11:01:13 +00:00
|
|
|
|
|
|
|
void OnApply( wxCommandEvent &event );
|
|
|
|
void OnCancel( wxCommandEvent &event );
|
|
|
|
void OnOK( wxCommandEvent &event );
|
|
|
|
void OnPaint( wxPaintEvent& event );
|
|
|
|
void OnCloseWindow( wxCloseEvent& event );
|
|
|
|
/*
|
|
|
|
void OnCharHook( wxKeyEvent& event );
|
|
|
|
*/
|
|
|
|
|
2001-08-01 14:55:03 +00:00
|
|
|
virtual bool Show( bool show = TRUE );
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual int ShowModal();
|
|
|
|
virtual void EndModal( int retCode );
|
|
|
|
virtual bool IsModal() const;
|
|
|
|
void SetModal( bool modal );
|
|
|
|
|
|
|
|
// implementation
|
1999-12-29 11:52:51 +00:00
|
|
|
// --------------
|
1999-02-22 11:01:13 +00:00
|
|
|
|
|
|
|
bool m_modalShowing;
|
|
|
|
|
|
|
|
protected:
|
1999-02-24 13:15:42 +00:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
1999-11-22 19:44:25 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxDialog)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKDIALOGH__
|