Browse Source

wrong branch, nothing worng tho

merge-requests/365/head
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" #include "terminal.h"
Terminal::View::View(){
textview_.add(buffer_);
view_.add(textview_);
}

5
juci/terminal.h

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

Loading…
Cancel
Save