2015-05-12 16:30:22 -04:00
|
|
|
/**
|
|
|
|
* Common header for widgets
|
2015-05-07 17:05:27 -04:00
|
|
|
*/
|
|
|
|
#ifndef TYRO_WIDGET_H
|
|
|
|
#define TYRO_WIDGET_H
|
|
|
|
|
2015-05-08 16:01:36 -04:00
|
|
|
// Common wxWidgets stuff
|
2015-05-07 17:05:27 -04:00
|
|
|
#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>
|
2015-05-26 15:46:55 -04:00
|
|
|
#include <wx/preferences.h>
|
2015-05-08 16:01:36 -04:00
|
|
|
|
|
|
|
// Tyro includes
|
2015-05-07 17:05:27 -04:00
|
|
|
#include "TyroMenu.h"
|
|
|
|
#include "EditPane.h"
|
|
|
|
#include "TabContainer.h"
|
|
|
|
#include "MainFrame.h"
|
2015-05-26 15:46:55 -04:00
|
|
|
#include "PrefPane.h"
|
2015-05-07 17:05:27 -04:00
|
|
|
|
|
|
|
#endif /* TYRO_WIDGET_H */
|
|
|
|
|