diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /public/mxtk/mx.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'public/mxtk/mx.h')
| -rw-r--r-- | public/mxtk/mx.h | 143 |
1 files changed, 143 insertions, 0 deletions
diff --git a/public/mxtk/mx.h b/public/mxtk/mx.h new file mode 100644 index 0000000..7ef026d --- /dev/null +++ b/public/mxtk/mx.h @@ -0,0 +1,143 @@ +// +// 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 + +#include "tier0/platform.h" + +#ifdef WIN32 +#include <windows.h> +#endif + + + +#ifndef INCLUDED_MXBUTTON +#include "mxtk/mxButton.h" +#endif + +#ifndef INCLUDED_MXCHECKBOX +#include "mxtk/mxCheckBox.h" +#endif + +#ifndef INCLUDED_MXCHOICE +#include "mxtk/mxChoice.h" +#endif + +#ifndef INCLUDED_MXCHOOSECOLOR +#include "mxtk/mxChooseColor.h" +#endif + +#ifndef INCLUDED_MXEVENT +#include "mxtk/mxEvent.h" +#endif + +#ifndef INCLUDED_MXFILEDIALOG +#include "mxtk/mxFileDialog.h" +#endif + +#ifndef INCLUDED_MXGLWINDOW +#include "mxtk/mxGlWindow.h" +#endif + +#ifndef INCLUDED_MXGROUPBOX +#include "mxtk/mxGroupBox.h" +#endif + +#ifndef INCLUDED_MXINIT +#include "mxtk/mxInit.h" +#endif + +#ifndef INCLUDED_MXLABEL +#include "mxtk/mxLabel.h" +#endif + +#ifndef INCLUDED_MXLINEEDIT +#include "mxtk/mxLineEdit.h" +#endif + +#ifndef INCLUDED_MXLINKEDLIST +#include "mxtk/mxLinkedList.h" +#endif + +#ifndef INCLUDED_MXLISTBOX +#include "mxtk/mxListBox.h" +#endif + +#ifndef INCLUDED_MXMENU +#include "mxtk/mxMenu.h" +#endif + +#ifndef INCLUDED_MXMENUBAR +#include "mxtk/mxMenuBar.h" +#endif + +#ifndef INCLUDED_MXMESSAGEBOX +#include "mxtk/mxMessageBox.h" +#endif + +#ifndef INCLUDED_MXPOPUPMENU +#include "mxtk/mxPopupMenu.h" +#endif + +#ifndef INCLUDED_MXPROGRESSBAR +#include "mxtk/mxProgressBar.h" +#endif + +#ifndef INCLUDED_MXRADIOBUTTON +#include "mxtk/mxRadioButton.h" +#endif + +#ifndef INCLUDED_MXSLIDER +#include "mxtk/mxSlider.h" +#endif + +#ifndef INCLUDED_MXSCROLLBAR +#include "mxtk/mxScrollbar.h" +#endif + +#ifndef INCLUDED_MXTAB +#include "mxtk/mxTab.h" +#endif + +#ifndef INCLUDED_MXTOGGLEBUTTON +#include "mxtk/mxToggleButton.h" +#endif + +#ifndef INCLUDED_MXTOOLTIP +#include "mxtk/mxToolTip.h" +#endif + +#ifndef INCLUDED_MXTREEVIEW +#include "mxtk/mxTreeView.h" +#endif + +#ifndef INCLUDED_MXWIDGET +#include "mxtk/mxWidget.h" +#endif + +#ifndef INCLUDED_MXWINDOW +#include "mxtk/mxWindow.h" +#endif + +#ifndef INCLUDED_MXPATH +#include "mxtk/mxpath.h" +#endif + +#ifndef INCLUDED_MXSTRING +#include "mxtk/mxstring.h" +#endif + + + +#endif // INCLUDED_MX |