24 lines
389 B
C
24 lines
389 B
C
/**
|
|
* Common header for widgets
|
|
*/
|
|
#ifndef TYRO_WIDGET_H
|
|
#define TYRO_WIDGET_H
|
|
|
|
// Common wxWidgets stuff
|
|
#include "../wx_common.h"
|
|
|
|
// Base widgets
|
|
#include <wx/aboutdlg.h>
|
|
#include <wx/fdrepdlg.h>
|
|
#include <wx/aui/aui.h>
|
|
#include <wx/stc/stc.h>
|
|
|
|
// Tyro includes
|
|
#include "TyroMenu.h"
|
|
#include "EditPane.h"
|
|
#include "TabContainer.h"
|
|
#include "MainFrame.h"
|
|
|
|
#endif /* TYRO_WIDGET_H */
|
|
|