Tyro/src/widgets/widget.h

31 lines
510 B
C
Raw Normal View History

/*
* File: widget.h
* Author: twarren
*
* Created on May 7, 2015, 2:35 PM
*/
#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/cmdline.h>
#include <wx/config.h>
#include <wx/filename.h>
#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 */