#include "window.h" #include "logging.h" Window::Window() : window_box_(Gtk::ORIENTATION_VERTICAL), main_config_(), keybindings_(main_config_.keybindings_cfg()), terminal_(main_config_.terminal_cfg()), notebook_(this,keybindings(), main_config_.source_cfg(), main_config_.dir_cfg()), menu_(keybindings()), api_(menu_, notebook_) { INFO("Create Window"); set_title("juCi++"); set_default_size(600, 400); add(window_box_); keybindings_.action_group_menu()->add(Gtk::Action::create("FileQuit", Gtk::Stock::QUIT), [this]() { OnWindowHide(); }); keybindings_.action_group_menu()->add(Gtk::Action::create("FileOpenFile", Gtk::Stock::OPEN), [this]() { OnOpenFile(); }); keybindings_.action_group_menu()->add(Gtk::Action::create("FileOpenFolder", "Open folder"), Gtk::AccelKey(keybindings_.config_ .key_map()["open_folder"]), [this]() { OnFileOpenFolder(); }); keybindings_. action_group_menu()-> add(Gtk::Action::create("FileSaveAs", "Save as"), Gtk::AccelKey(keybindings_.config_ .key_map()["save_as"]), [this]() { SaveFileAs(); }); keybindings_. action_group_menu()-> add(Gtk::Action::create("FileSave", "Save"), Gtk::AccelKey(keybindings_.config_ .key_map()["save"]), [this]() { SaveFile(); }); keybindings_. action_group_menu()-> add(Gtk::Action::create("ProjectCompileAndRun", "Compile And Run"), Gtk::AccelKey(keybindings_.config_ .key_map()["compile_and_run"]), [this]() { notebook_.OnSaveFile(); if (running.try_lock()) { std::thread execute([=]() { std::string path = notebook_.CurrentPagePath(); int pos = path.find_last_of("/\\"); if(pos != std::string::npos) { path.erase(path.begin()+pos,path.end()); terminal_.SetFolderCommand(path); } terminal_.Compile(); std::string executable = notebook_.directories(). GetCmakeVarValue(path,"add_executable"); terminal_.Run(executable); }); execute.detach(); running.unlock(); } }); keybindings_. action_group_menu()-> add(Gtk::Action::create("ProjectCompile", "Compile"), Gtk::AccelKey(keybindings_.config_ .key_map()["compile"]), [this]() { notebook_.OnSaveFile(); if (running.try_lock()) { std::thread execute([=]() { std::string path = notebook_.CurrentPagePath(); int pos = path.find_last_of("/\\"); if(pos != std::string::npos){ path.erase(path.begin()+pos,path.end()); terminal_.SetFolderCommand(path); } terminal_.Compile(); }); execute.detach(); running.unlock(); } }); this->signal_button_release_event(). connect(sigc::mem_fun(*this,&Window::OnMouseRelease),false); terminal_.Terminal().signal_button_release_event(). connect(sigc::mem_fun(*this,&Window::OnMouseRelease),false); add_accel_group(keybindings_.ui_manager_menu()->get_accel_group()); add_accel_group(keybindings_.ui_manager_hidden()->get_accel_group()); keybindings_.BuildMenu(); window_box_.pack_start(menu_.view(), Gtk::PACK_SHRINK); window_box_.pack_start(notebook_.entry_view(), Gtk::PACK_SHRINK); paned_.set_position(300); paned_.pack1(notebook_.view(), true, false); paned_.pack2(terminal_.view(), true, true); window_box_.pack_end(paned_); show_all_children(); INFO("Window created"); } // Window constructor void Window::OnWindowHide() { hide(); } void Window::OnFileOpenFolder() { Gtk::FileChooserDialog dialog("Please choose a folder", Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER); dialog.set_transient_for(*this); //Add response buttons the the dialog: dialog.add_button("_Cancel", Gtk::RESPONSE_CANCEL); dialog.add_button("Select", Gtk::RESPONSE_OK); int result = dialog.run(); //Handle the response: switch(result) { case(Gtk::RESPONSE_OK): { std::cout << "Folder selected: " << dialog.get_filename() << std::endl; notebook_.directories().open_folder(dialog.get_filename()); std::cout << dialog.get_filename()<< std::endl; break; } case(Gtk::RESPONSE_CANCEL): { std::cout << "Cancel clicked." << std::endl; break; } default: { std::cout << "Unexpected button clicked." << std::endl; break; } } } void Window::OnOpenFile() { Gtk::FileChooserDialog dialog("Please choose a file", Gtk::FILE_CHOOSER_ACTION_OPEN); dialog.set_transient_for(*this); dialog.set_position(Gtk::WindowPosition::WIN_POS_CENTER_ALWAYS); //Add response buttons the the dialog: dialog.add_button("_Cancel", Gtk::RESPONSE_CANCEL); dialog.add_button("_Open", Gtk::RESPONSE_OK); //Add filters, so that only certain file types can be selected: Glib::RefPtr filter_text = Gtk::FileFilter::create(); filter_text->set_name("Text files"); filter_text->add_mime_type("text/plain"); dialog.add_filter(filter_text); Glib::RefPtr filter_cpp = Gtk::FileFilter::create(); filter_cpp->set_name("C/C++ files"); filter_cpp->add_mime_type("text/x-c"); filter_cpp->add_mime_type("text/x-c++"); filter_cpp->add_mime_type("text/x-c-header"); dialog.add_filter(filter_cpp); Glib::RefPtr filter_any = Gtk::FileFilter::create(); filter_any->set_name("Any files"); filter_any->add_pattern("*"); dialog.add_filter(filter_any); int result = dialog.run(); switch (result) { case(Gtk::RESPONSE_OK): { std::cout << "Open clicked." << std::endl; std::string path = dialog.get_filename(); std::cout << "File selected: " << path << std::endl; notebook_.OnOpenFile(path); break; } case(Gtk::RESPONSE_CANCEL): { std::cout << "Cancel clicked." << std::endl; break; } default: { std::cout << "Unexpected button clicked." << std::endl; break; } } } bool Window::OnMouseRelease(GdkEventButton *button){ return notebook_.OnMouseRelease(button); } bool Window::SaveFile() { if(notebook_.OnSaveFile()) { terminal_.PrintMessage("File saved to: " + notebook_.CurrentPagePath()+"\n"); return true; } return false; } bool Window::SaveFileAs() { if(notebook_.OnSaveFile(notebook_.OnSaveFileAs())){ terminal_.PrintMessage("File saved to: " + notebook_.CurrentPagePath()+"\n"); return true; } return false; }