1999-06-29 08:34:18 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/dialog.h
|
|
|
|
// Purpose: wxDialogBase class
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 29.06.99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Vadim Zeitlin
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_DIALOG_H_BASE_
|
|
|
|
#define _WX_DIALOG_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2002-08-31 07:29:13 -04:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
1999-10-12 17:52:17 -04:00
|
|
|
#pragma interface "dialogbase.h"
|
|
|
|
#endif
|
|
|
|
|
1999-06-28 18:04:40 -04:00
|
|
|
#include "wx/defs.h"
|
2001-09-15 18:13:08 -04:00
|
|
|
#include "wx/containr.h"
|
|
|
|
#include "wx/toplevel.h"
|
1999-06-28 18:04:40 -04:00
|
|
|
|
2001-09-15 18:13:08 -04:00
|
|
|
// FIXME - temporary hack in absence of wxTLW !!
|
|
|
|
#ifndef wxTopLevelWindowNative
|
|
|
|
#include "wx/panel.h"
|
1999-06-28 17:39:49 -04:00
|
|
|
class WXDLLEXPORT wxDialogBase : public wxPanel
|
2001-09-15 18:13:08 -04:00
|
|
|
#else
|
|
|
|
class WXDLLEXPORT wxDialogBase : public wxTopLevelWindow
|
|
|
|
#endif
|
1999-06-28 17:39:49 -04:00
|
|
|
{
|
1999-06-29 08:34:18 -04:00
|
|
|
public:
|
2001-09-15 18:13:08 -04:00
|
|
|
wxDialogBase() { Init(); }
|
2001-09-23 20:34:14 -04:00
|
|
|
virtual ~wxDialogBase() { }
|
|
|
|
|
2001-09-15 18:13:08 -04:00
|
|
|
void Init();
|
2001-09-23 20:34:14 -04:00
|
|
|
|
1999-06-29 08:34:18 -04:00
|
|
|
// the modal dialogs have a return code - usually the id of the last
|
|
|
|
// pressed button
|
|
|
|
void SetReturnCode(int returnCode) { m_returnCode = returnCode; }
|
|
|
|
int GetReturnCode() const { return m_returnCode; }
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#if wxUSE_STATTEXT && wxUSE_TEXTCTRL
|
1999-08-11 07:53:40 -04:00
|
|
|
// splits text up at newlines and places the
|
|
|
|
// lines into a vertical wxBoxSizer
|
|
|
|
wxSizer *CreateTextSizer( const wxString &message );
|
2001-06-26 16:59:19 -04:00
|
|
|
#endif // wxUSE_STATTEXT && wxUSE_TEXTCTRL
|
2001-09-23 20:34:14 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#if wxUSE_BUTTON
|
1999-08-11 07:53:40 -04:00
|
|
|
// places buttons into a horizontal wxBoxSizer
|
|
|
|
wxSizer *CreateButtonSizer( long flags );
|
2001-06-26 16:59:19 -04:00
|
|
|
#endif // wxUSE_BUTTON
|
1999-06-29 08:34:18 -04:00
|
|
|
|
2000-07-15 15:51:35 -04:00
|
|
|
protected:
|
1999-06-29 08:34:18 -04:00
|
|
|
// the return code from modal dialog
|
|
|
|
int m_returnCode;
|
2001-09-15 18:13:08 -04:00
|
|
|
|
|
|
|
// FIXME - temporary hack in absence of wxTLW !!
|
2001-09-23 20:34:14 -04:00
|
|
|
#ifdef wxTopLevelWindowNative
|
2001-09-15 18:13:08 -04:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
WX_DECLARE_CONTROL_CONTAINER();
|
2001-09-23 20:34:14 -04:00
|
|
|
#endif
|
1999-06-28 17:39:49 -04:00
|
|
|
};
|
|
|
|
|
2001-09-15 18:13:08 -04:00
|
|
|
|
2001-11-28 13:22:16 -05:00
|
|
|
#if defined(__WXUNIVERSAL__) && !defined(__WXMICROWIN__)
|
2001-09-18 18:33:38 -04:00
|
|
|
#include "wx/univ/dialog.h"
|
|
|
|
#else
|
|
|
|
#if defined(__WXMSW__)
|
|
|
|
#include "wx/msw/dialog.h"
|
|
|
|
#elif defined(__WXMOTIF__)
|
|
|
|
#include "wx/motif/dialog.h"
|
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk/dialog.h"
|
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
#include "wx/mac/dialog.h"
|
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#include "wx/os2/dialog.h"
|
|
|
|
#elif defined(__WXSTUBS__)
|
|
|
|
#include "wx/stubs/dialog.h"
|
|
|
|
#endif
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
1998-08-14 20:23:28 -04:00
|
|
|
// _WX_DIALOG_H_BASE_
|