Tyro/src/widgets/widget.h

26 lines
426 B
C

/**
* Common header for widgets
*/
#ifndef TYRO_WIDGET_H
#define TYRO_WIDGET_H
// Common wxWidgets stuff
#include "src/wx_common.h"
// Base widgets
#include <wx/aboutdlg.h>
#include <wx/fdrepdlg.h>
#include <wx/aui/aui.h>
#include <wx/stc/stc.h>
#include <wx/dir.h>
#include <wx/dirctrl.h>
#include <wx/fontpicker.h>
#include <wx/treelist.h>
#ifndef TRAVIS
#include <wx/preferences.h>
#endif
#endif /* TYRO_WIDGET_H */