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.
23 lines
411 B
23 lines
411 B
#ifndef JUCI_WINDOW_H_ |
|
#define JUCI_WINDOW_H_ |
|
|
|
#include <iostream> |
|
#include "gtkmm.h" |
|
#include "menu.h" |
|
#include "notebook.h" |
|
|
|
class Window : public Gtk::Window { |
|
public: |
|
Window(); |
|
Gtk::Box window_box_; |
|
private: |
|
Keybindings::Controller keybindings_; |
|
Menu::Controller menu_; |
|
Notebook::Controller notebook_; |
|
|
|
//signal handlers |
|
void OnWindowHide(); |
|
void OnOpenFile(); |
|
}; |
|
|
|
#endif // JUCI_WINDOW_H_
|
|
|