Tyro/src/widgets/widget.h

36 lines
602 B
C
Raw Normal View History

/**
* Common header for widgets
*/
#ifndef TYRO_WIDGET_H
#define TYRO_WIDGET_H
2015-05-08 16:01:36 -04:00
// Common wxWidgets stuff
#include "../wx_common.h"
2015-05-08 16:01:36 -04:00
// Base widgets
#include <wx/aboutdlg.h>
#include <wx/fdrepdlg.h>
#include <wx/aui/aui.h>
#include <wx/stc/stc.h>
#include <wx/treectrl.h>
#include <wx/dir.h>
#include <wx/dirctrl.h>
#include <wx/fontpicker.h>
2015-05-08 16:01:36 -04:00
#ifndef TRAVIS
#include <wx/preferences.h>
#endif
2015-05-08 16:01:36 -04:00
// Tyro includes
#include "TyroMenu.h"
#include "EditPane.h"
#include "TabContainer.h"
#include "MainFrame.h"
#ifndef TRAVIS
#include "PrefPane.h"
#endif
#include "FilePane.h"
#endif /* TYRO_WIDGET_H */