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.

29 lines
438 B

#ifndef JUCI_NOTEBOOK_H_
#define JUCI_NOTEBOOK_H_
#include <iostream>
#include "gtkmm.h"
namespace Terminal {
class View {
public:
View();
Gtk::HBox& view() {return view_;}
private:
Gtk::HBox view_;
Glib::RefPtr<Gtk::TextBuffer> buffer_;
Gtk::TextView textview_;
}; // class view
class Controller {
public:
}; // class controller
} // namespace Terminal
#endif // JUCI_NOTEBOOK_H_