forked from a1batross/Paranoia2_original
142 lines
2.5 KiB
C
142 lines
2.5 KiB
C
//
|
|
// mxToolKit (c) 1999 by Mete Ciragan
|
|
//
|
|
// file: mx.h
|
|
// implementation: all
|
|
// last modified: Jun 13 1999, Mete Ciragan
|
|
// copyright: The programs and associated files contained in this
|
|
// distribution were developed by Mete Ciragan. The programs
|
|
// are not in the public domain, but they are freely
|
|
// distributable without licensing fees. These programs are
|
|
// provided without guarantee or warrantee expressed or
|
|
// implied.
|
|
//
|
|
#ifndef INCLUDED_MX
|
|
#define INCLUDED_MX
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXBUTTON
|
|
#include <mxButton.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXCHECKBOX
|
|
#include <mxCheckBox.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXCHOICE
|
|
#include <mxChoice.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXCHOOSECOLOR
|
|
#include <mxChooseColor.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXEVENT
|
|
#include <mxEvent.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXFILEDIALOG
|
|
#include <mxFileDialog.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXGLWINDOW
|
|
#include <mxGlWindow.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXGROUPBOX
|
|
#include <mxGroupBox.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXINIT
|
|
#include <mxInit.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXLABEL
|
|
#include <mxLabel.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXLINEEDIT
|
|
#include <mxLineEdit.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXLINKEDLIST
|
|
#include <mxLinkedList.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXLISTBOX
|
|
#include <mxListBox.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXMENU
|
|
#include <mxMenu.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXMENUBAR
|
|
#include <mxMenuBar.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXMESSAGEBOX
|
|
#include <mxMessageBox.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXMULTILINEEDIT
|
|
#include <mxMultiLineEdit.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXPOPUPMENU
|
|
#include <mxPopupMenu.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXPROGRESSBAR
|
|
#include <mxProgressBar.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXRADIOBUTTON
|
|
#include <mxRadioButton.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXSLIDER
|
|
#include <mxSlider.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXTAB
|
|
#include <mxTab.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXTOGGLEBUTTON
|
|
#include <mxToggleButton.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXTOOLTIP
|
|
#include <mxToolTip.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXTREEVIEW
|
|
#include <mxTreeView.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXWIDGET
|
|
#include <mxWidget.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXWINDOW
|
|
#include <mxWindow.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXPATH
|
|
#include <mxpath.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXSTRING
|
|
#include <mxstring.h>
|
|
#endif
|
|
|
|
|
|
|
|
#endif // INCLUDED_MX
|