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
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
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
|
|
|
|
2004-04-13 08:22:34 -04:00
|
|
|
#define wxDIALOG_NO_PARENT 0x0001 // Don't make owned by apps top window
|
|
|
|
|
2004-04-18 06:32:20 -04:00
|
|
|
#ifdef __WXWINCE__
|
|
|
|
#define wxDEFAULT_DIALOG_STYLE (0)
|
|
|
|
#else // !__WXWINCE__
|
|
|
|
#define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX)
|
|
|
|
#endif
|
2004-04-13 08:22:34 -04:00
|
|
|
|
2003-05-12 15:52:43 -04:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxDialogNameStr;
|
|
|
|
|
2001-09-15 18:13:08 -04:00
|
|
|
class WXDLLEXPORT wxDialogBase : public wxTopLevelWindow
|
1999-06-28 17:39:49 -04:00
|
|
|
{
|
1999-06-29 08:34:18 -04:00
|
|
|
public:
|
2004-01-15 08:49:22 -05: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; }
|
|
|
|
|
2003-05-23 14:59:07 -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 );
|
2003-05-23 14:59:07 -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
|
|
|
|
2003-07-21 20:24:07 -04:00
|
|
|
DECLARE_NO_COPY_CLASS(wxDialogBase)
|
2001-09-15 18:13:08 -04:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
WX_DECLARE_CONTROL_CONTAINER();
|
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"
|
2003-03-22 01:18:36 -05:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/dialog.h"
|
2001-09-18 18:33:38 -04:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#include "wx/os2/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_
|