mirror of https://gitlab.com/cppit/jucipp
6 changed files with 40 additions and 4 deletions
@ -0,0 +1,27 @@
|
||||
|
||||
#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_; |
||||
Gtk::TextBuffer buffer_; |
||||
Gtk::TextView textview_; |
||||
}; // class view
|
||||
|
||||
class Controller { |
||||
public: |
||||
|
||||
|
||||
}; // class controller
|
||||
} // namespace Terminal
|
||||
|
||||
#endif // JUCI_NOTEBOOK_H_
|
||||
Loading…
Reference in new issue