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() {}
|
|
|
|
|
Gtk::Box window_box_;
|
|
|
|
|
std::shared_ptr<Source::Controller> source();
|
|
|
|
|
private:
|
|
|
|
|
Menu::Controller menu;
|
|
|
|
|
Source::Controller source_;
|
|
|
|
|
/*signal handler*/
|
|
|
|
|
void onSystemQuit();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // JUCI_JUCI_H_
|