1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx.h
|
|
|
|
// Purpose: wxWindows main include file
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c)
|
1999-10-04 20:15:38 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_WXH__
|
|
|
|
#define _WX_WXH__
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#include "wx/defs.h"
|
1999-10-04 20:15:38 +00:00
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/dynarray.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/hash.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/string.h"
|
1999-10-04 20:15:38 +00:00
|
|
|
#include "wx/intl.h"
|
1998-11-22 22:32:53 +00:00
|
|
|
#include "wx/log.h"
|
1999-10-04 20:15:38 +00:00
|
|
|
#include "wx/event.h"
|
|
|
|
#include "wx/app.h"
|
|
|
|
#include "wx/utils.h"
|
|
|
|
|
|
|
|
#if wxUSE_GUI
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/window.h"
|
|
|
|
#include "wx/panel.h"
|
|
|
|
#include "wx/frame.h"
|
|
|
|
#include "wx/dc.h"
|
|
|
|
#include "wx/dcclient.h"
|
|
|
|
#include "wx/dcmemory.h"
|
|
|
|
#include "wx/dcprint.h"
|
|
|
|
#include "wx/dcscreen.h"
|
|
|
|
#include "wx/button.h"
|
1999-06-01 15:32:12 +00:00
|
|
|
#include "wx/menu.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/pen.h"
|
|
|
|
#include "wx/brush.h"
|
|
|
|
#include "wx/palette.h"
|
|
|
|
#include "wx/icon.h"
|
|
|
|
#include "wx/cursor.h"
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
#include "wx/timer.h"
|
|
|
|
#include "wx/settings.h"
|
|
|
|
#include "wx/msgdlg.h"
|
|
|
|
#include "wx/cmndata.h"
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/bmpbuttn.h"
|
|
|
|
#include "wx/checkbox.h"
|
|
|
|
#include "wx/choice.h"
|
|
|
|
#include "wx/scrolbar.h"
|
|
|
|
#include "wx/stattext.h"
|
|
|
|
#include "wx/statbmp.h"
|
|
|
|
#include "wx/statbox.h"
|
|
|
|
#include "wx/listbox.h"
|
|
|
|
#include "wx/radiobox.h"
|
|
|
|
#include "wx/radiobut.h"
|
|
|
|
#include "wx/textctrl.h"
|
|
|
|
#include "wx/slider.h"
|
|
|
|
#include "wx/gauge.h"
|
|
|
|
#include "wx/combobox.h"
|
|
|
|
#include "wx/layout.h"
|
1999-08-09 17:00:51 +00:00
|
|
|
#include "wx/sizer.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/memory.h"
|
|
|
|
#include "wx/mdi.h"
|
|
|
|
#include "wx/scrolwin.h"
|
|
|
|
#include "wx/statusbr.h"
|
|
|
|
#include "wx/scrolbar.h"
|
|
|
|
#include "wx/choicdlg.h"
|
|
|
|
#include "wx/textdlg.h"
|
|
|
|
#include "wx/filedlg.h"
|
|
|
|
#include "wx/dirdlg.h"
|
1999-06-01 15:32:12 +00:00
|
|
|
|
|
|
|
#if wxUSE_VALIDATORS
|
|
|
|
#include "wx/valtext.h"
|
|
|
|
#endif // wxUSE_VALIDATORS
|
|
|
|
|
1999-01-24 14:57:09 +00:00
|
|
|
#if wxUSE_SERIAL
|
1999-06-01 15:32:12 +00:00
|
|
|
#include "wx/objstrm.h"
|
|
|
|
#include "wx/serbase.h"
|
|
|
|
#endif // wxUSE_SERIAL
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
#endif // wxUSE_GUI
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_WXH__
|