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.
26 lines
434 B
26 lines
434 B
|
11 years ago
|
#ifndef JUCI_JUCI_H_
|
||
|
|
#define JUCI_JUCI_H_
|
||
|
11 years ago
|
|
||
|
|
#include <iostream>
|
||
|
|
#include "gtkmm.h"
|
||
|
11 years ago
|
#include "menu.h"
|
||
|
11 years ago
|
#include "source.h"
|
||
|
11 years ago
|
|
||
|
|
class Window : public Gtk::Window {
|
||
|
|
public:
|
||
|
11 years ago
|
Window();
|
||
|
11 years ago
|
virtual ~Window() {}
|
||
|
11 years ago
|
|
||
|
11 years ago
|
private:
|
||
|
11 years ago
|
Keybindings::Controller keybindings_;
|
||
|
|
Menu::Controller menu_;
|
||
|
11 years ago
|
Source::Controller& source();
|
||
|
11 years ago
|
Source::Controller source_;
|
||
|
11 years ago
|
Gtk::Box window_box_;
|
||
|
|
|
||
|
11 years ago
|
//signal handlers
|
||
|
11 years ago
|
void OnSystemQuit();
|
||
|
11 years ago
|
};
|
||
|
|
|
||
|
11 years ago
|
#endif // JUCI_JUCI_H_
|