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.
|
|
|
|
//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() {}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Keybindings::Controller keybindings_;
|
|
|
|
|
Menu::Controller menu_;
|
|
|
|
|
Source::Controller& source();
|
|
|
|
|
Source::Controller source_;
|
|
|
|
|
Gtk::Box window_box_;
|
|
|
|
|
|
|
|
|
|
/*signal handler*/
|
|
|
|
|
void OnSystemQuit();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // JUCI_JUCI_H_
|