You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
459 B
24 lines
459 B
//juCi++ main header file |
|
#ifndef JUCI_JUCI_H_ |
|
#define JUCI_JUCI_H_ |
|
|
|
#include <iostream> |
|
#include "gtkmm.h" |
|
#include "menu.h" |
|
#include "source.h" |
|
|
|
class Window : public Gtk::Window { |
|
public: |
|
Window(); |
|
virtual ~Window() {} |
|
Gtk::Box window_box_; |
|
Source::Controller& source(); |
|
private: |
|
Keybindings::Controller keybindings_; |
|
Menu::Controller menu_; |
|
Source::Controller source_; |
|
/*signal handler*/ |
|
void onSystemQuit(); |
|
}; |
|
|
|
#endif // JUCI_JUCI_H_
|
|
|