mirror of https://gitlab.com/cppit/jucipp
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.
29 lines
484 B
29 lines
484 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() { |
|
} |
|
|
|
std::shared_ptr<Source::Controller> source(); |
|
|
|
private: |
|
Keybindings::Controller keybindings_; |
|
Menu::Controller menu_; |
|
Source::Controller source_; |
|
Gtk::Box window_box_; |
|
|
|
/*signal handler*/ |
|
void OnSystemQuit(); |
|
}; |
|
|
|
#endif // JUCI_JUCI_H_
|
|
|