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.

36 lines
610 B

#ifndef JUCI_WINDOW_H_
#define JUCI_WINDOW_H_
11 years ago
#include "api.h"
#include "config.h"
11 years ago
#include <cstddef>
#include "directories.h"
class Window : public Gtk::Window {
public:
Window();
MainConfig& main_config() { return main_config_; }
Gtk::Box window_box_;
11 years ago
//private:
MainConfig main_config_;
Keybindings::Controller keybindings_;
Menu::Controller menu_;
Notebook::Controller notebook_;
Keybindings::Controller& keybindings() { return keybindings_; }
private:
//signal handlers
void OnWindowHide();
void OnOpenFile();
void OnFileOpenFolder();
};
11 years ago
#endif // JUCI_WINDOW_H