143 lines
2.4 KiB
C
143 lines
2.4 KiB
C
//
|
|
// mxToolKit (c) 1999 by Mete Ciragan
|
|
//
|
|
// file: mx.h
|
|
// implementation: all
|
|
// last modified: Apr 28 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 <mx/mxButton.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXCHECKBOX
|
|
#include <mx/mxCheckBox.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXCHOICE
|
|
#include <mx/mxChoice.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXCHOOSECOLOR
|
|
#include <mx/mxChooseColor.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXEVENT
|
|
#include <mx/mxEvent.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXFILEDIALOG
|
|
#include <mx/mxFileDialog.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXGLWINDOW
|
|
#include <mx/mxGlWindow.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXGROUPBOX
|
|
#include <mx/mxGroupBox.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXINIT
|
|
#include <mx/mxInit.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXLABEL
|
|
#include <mx/mxLabel.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXLINEEDIT
|
|
#include <mx/mxLineEdit.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXLINKEDLIST
|
|
#include <mx/mxLinkedList.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXLISTBOX
|
|
#include <mx/mxListBox.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXMENU
|
|
#include <mx/mxMenu.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXMENUBAR
|
|
#include <mx/mxMenuBar.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXMESSAGEBOX
|
|
#include <mx/mxMessageBox.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXPOPUPMENU
|
|
#include <mx/mxPopupMenu.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXPROGRESSBAR
|
|
#include <mx/mxProgressBar.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXRADIOBUTTON
|
|
#include <mx/mxRadioButton.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXSLIDER
|
|
#include <mx/mxSlider.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXSCROLLBAR
|
|
#include <mx/mxScrollbar.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXTAB
|
|
#include <mx/mxTab.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXTOGGLEBUTTON
|
|
#include <mx/mxToggleButton.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXTOOLTIP
|
|
#include <mx/mxToolTip.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXTREEVIEW
|
|
#include <mx/mxTreeView.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXWIDGET
|
|
#include <mx/mxWidget.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXWINDOW
|
|
#include <mx/mxWindow.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXPATH
|
|
#include <mx/mxpath.h>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_MXSTRING
|
|
#include <mx/mxstring.h>
|
|
#endif
|
|
|
|
|
|
|
|
#endif // INCLUDED_MX
|