Browse Source

wrong branch, nothing worng tho

master
oyvang 11 years ago
parent
commit
dcc31583ea
  1. 1
      juci/.#notebook.h
  2. 5
      juci/terminal.cc
  3. 5
      juci/terminal.h

1
juci/.#notebook.h

@ -1 +0,0 @@
forgie@surface.6435:1428916838

5
juci/terminal.cc

@ -1,6 +1,9 @@
#include "terminal.h"
Terminal::View::View(){
textview_.add(buffer_);
view_.add(textview_);
}

5
juci/terminal.h

@ -10,15 +10,16 @@ namespace Terminal {
class View {
public:
View();
//Gtk::HBox view() {return view_;}
Gtk::HBox& view() {return view_;}
private:
Gtk::HBox view_;
Gtk::TextBuffer buffer_;
Glib::RefPtr<Gtk::TextBuffer> buffer_;
Gtk::TextView textview_;
}; // class view
class Controller {
public:
}; // class controller

Loading…
Cancel
Save