#include "window.h" #include "config.h" #include "menu.h" #include "directories.h" //#include "api.h" #include "dialogs.h" #include "filesystem.h" #include "project.h" #include "entrybox.h" #include "info.h" namespace sigc { #ifndef SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE template struct functor_trait { typedef decltype (::sigc::mem_fun(std::declval(), &Functor::operator())) _intermediate; typedef typename _intermediate::result_type result_type; typedef Functor functor_type; }; #else SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE #endif } Window::Window() : notebook(Notebook::get()) { set_title("juCi++"); set_events(Gdk::POINTER_MOTION_MASK|Gdk::FOCUS_CHANGE_MASK|Gdk::SCROLL_MASK|Gdk::LEAVE_NOTIFY_MASK); set_menu_actions(); configure(); set_default_size(Config::get().window.default_size.first, Config::get().window.default_size.second); directories_scrolled_window.add(Directories::get()); directory_and_notebook_panes.pack1(directories_scrolled_window, Gtk::SHRINK); notebook_vbox.pack_start(notebook); notebook_vbox.pack_end(EntryBox::get(), Gtk::PACK_SHRINK); directory_and_notebook_panes.pack2(notebook_vbox, Gtk::SHRINK); directory_and_notebook_panes.set_position(static_cast(0.2*Config::get().window.default_size.first)); vpaned.set_position(static_cast(0.75*Config::get().window.default_size.second)); vpaned.pack1(directory_and_notebook_panes, true, false); terminal_scrolled_window.add(Terminal::get()); terminal_vbox.pack_start(terminal_scrolled_window); info_and_status_hbox.pack_start(notebook.info, Gtk::PACK_SHRINK); #if GTK_VERSION_GE(3, 12) info_and_status_hbox.set_center_widget(Project::debug_status_label()); #else Project::debug_status_label().set_halign(Gtk::Align::ALIGN_CENTER); info_and_status_hbox.pack_start(Project::debug_status_label()); #endif info_and_status_hbox.pack_end(notebook.status, Gtk::PACK_SHRINK); terminal_vbox.pack_end(info_and_status_hbox, Gtk::PACK_SHRINK); vpaned.pack2(terminal_vbox, true, true); #if GTKMM_MAJOR_VERSION>3 || (GTKMM_MAJOR_VERSION>=3 && GTKMM_MINOR_VERSION>=18) overlay_vbox.pack_start(Info::get(), Gtk::PACK_SHRINK, 20); overlay_hbox.pack_end(overlay_vbox, Gtk::PACK_SHRINK, 20); overlay.add(vpaned); overlay.add_overlay(overlay_hbox); overlay.set_overlay_pass_through(overlay_hbox, true); add(overlay); #else add(vpaned); #endif show_all_children(); Info::get().hide(); Directories::get().on_row_activated=[this](const boost::filesystem::path &path) { notebook.open(path); }; //Scroll to end of terminal whenever info is printed Terminal::get().signal_size_allocate().connect([this](Gtk::Allocation& allocation){ auto adjustment=terminal_scrolled_window.get_vadjustment(); adjustment->set_value(adjustment->get_upper()-adjustment->get_page_size()); Terminal::get().queue_draw(); }); EntryBox::get().signal_show().connect([this](){ vpaned.set_focus_chain({&directory_and_notebook_panes}); directory_and_notebook_panes.set_focus_chain({¬ebook_vbox}); notebook_vbox.set_focus_chain({&EntryBox::get()}); }); EntryBox::get().signal_hide().connect([this](){ vpaned.unset_focus_chain(); directory_and_notebook_panes.unset_focus_chain(); notebook_vbox.unset_focus_chain(); }); EntryBox::get().signal_hide().connect([this]() { if(notebook.get_current_page()!=-1) { notebook.get_current_view()->grab_focus(); } }); notebook.signal_switch_page().connect([this](Gtk::Widget* page, guint page_num) { if(notebook.get_current_page()!=-1) { auto view=notebook.get_current_view(); if(search_entry_shown && EntryBox::get().labels.size()>0) { view->update_search_occurrences=[this](int number){ EntryBox::get().labels.begin()->update(0, std::to_string(number)); }; view->search_highlight(last_search, case_sensitive_search, regex_search); } activate_menu_items(); Directories::get().select(view->file_path); if(view->full_reparse_needed) { if(!view->full_reparse()) Terminal::get().async_print("Error: failed to reparse "+view->file_path.string()+". Please reopen the file manually.\n", true); } else if(view->soft_reparse_needed) view->soft_reparse(); view->set_status(view->status); view->set_info(view->info); } }); notebook.signal_page_removed().connect([this](Gtk::Widget* page, guint page_num) { EntryBox::get().hide(); }); about.signal_response().connect([this](int d){ about.hide(); }); about.set_version(Config::get().window.version); about.set_authors({"(in order of appearance)", "Ted Johan Kristoffersen", "Jørgen Lien Sellæg", "Geir Morten Larsen", "Ole Christian Eidheim"}); about.set_name("About juCi++"); about.set_program_name("juCi++"); about.set_comments("This is an open source IDE with high-end features to make your programming experience juicy"); about.set_license_type(Gtk::License::LICENSE_MIT_X11); about.set_transient_for(*this); } // Window constructor void Window::configure() { Config::get().load(); auto screen = Gdk::Screen::get_default(); if(css_provider) Gtk::StyleContext::remove_provider_for_screen(screen, css_provider); if(Config::get().window.theme_name.empty()) { css_provider=Gtk::CssProvider::create(); Gtk::Settings::get_default()->property_gtk_application_prefer_dark_theme()=(Config::get().window.theme_variant=="dark"); } else css_provider=Gtk::CssProvider::get_named(Config::get().window.theme_name, Config::get().window.theme_variant); //TODO: add check if theme exists, or else write error to terminal Gtk::StyleContext::add_provider_for_screen(screen, css_provider, GTK_STYLE_PROVIDER_PRIORITY_SETTINGS); Directories::get().update(); Menu::get().set_keys(); Terminal::get().configure(); } void Window::set_menu_actions() { auto &menu = Menu::get(); menu.add_action("about", [this]() { about.show(); about.present(); }); menu.add_action("preferences", [this]() { notebook.open(Config::get().juci_home_path()/"config"/"config.json"); }); menu.add_action("quit", [this]() { close(); }); menu.add_action("new_file", [this]() { boost::filesystem::path path = Dialog::new_file(notebook.get_current_folder()); if(path!="") { if(boost::filesystem::exists(path)) { Terminal::get().print("Error: "+path.string()+" already exists.\n", true); } else { if(filesystem::write(path)) { if(Directories::get().path!="") Directories::get().update(); notebook.open(path); Terminal::get().print("New file "+path.string()+" created.\n"); } else Terminal::get().print("Error: could not create new file "+path.string()+".\n", true); } } }); menu.add_action("new_folder", [this]() { auto time_now=std::chrono::system_clock::to_time_t(std::chrono::system_clock::now()); boost::filesystem::path path = Dialog::new_folder(notebook.get_current_folder()); if(path!="" && boost::filesystem::exists(path)) { boost::system::error_code ec; auto last_write_time=boost::filesystem::last_write_time(path, ec); if(!ec && last_write_time>=time_now) { if(Directories::get().path!="") Directories::get().update(); Terminal::get().print("New folder "+path.string()+" created.\n"); } else Terminal::get().print("Error: "+path.string()+" already exists.\n", true); Directories::get().select(path); } }); menu.add_action("new_project_cpp", [this]() { boost::filesystem::path project_path = Dialog::new_folder(notebook.get_current_folder()); if(project_path!="") { auto project_name=project_path.filename().string(); for(size_t c=0;cfile_path==Config::get().juci_home_path()/"config"/"config.json") { configure(); for(int c=0;cconfigure(); notebook.configure(c); } } } } } }); menu.add_action("save_as", [this]() { if(notebook.get_current_page()!=-1) { auto path = Dialog::save_file_as(notebook.get_current_view()->file_path); if(path!="") { std::ofstream file(path); if(file) { file << notebook.get_current_view()->get_buffer()->get_text(); file.close(); if(Directories::get().path!="") Directories::get().update(); notebook.open(path); Terminal::get().print("File saved to: " + notebook.get_current_view()->file_path.string()+"\n"); } else Terminal::get().print("Error saving file\n"); } } }); menu.add_action("print", [this]() { if(notebook.get_current_page()!=-1) { auto view=notebook.get_current_view(); auto print_operation=Gtk::PrintOperation::create(); auto print_compositor=Gsv::PrintCompositor::create(*view); print_operation->set_job_name(view->file_path.filename().string()); print_compositor->set_wrap_mode(Gtk::WrapMode::WRAP_WORD_CHAR); print_operation->signal_begin_print().connect([print_operation, print_compositor](const Glib::RefPtr& print_context) { while(!print_compositor->paginate(print_context)); print_operation->set_n_pages(print_compositor->get_n_pages()); }); print_operation->signal_draw_page().connect([print_compositor](const Glib::RefPtr& print_context, int page_nr) { print_compositor->draw_page(print_context, page_nr); }); print_operation->run(Gtk::PRINT_OPERATION_ACTION_PRINT_DIALOG, *this); } }); menu.add_action("edit_undo", [this]() { if(notebook.get_current_page()!=-1) { auto undo_manager = notebook.get_current_view()->get_source_buffer()->get_undo_manager(); if (undo_manager->can_undo()) { undo_manager->undo(); notebook.get_current_view()->scroll_to(notebook.get_current_view()->get_buffer()->get_insert()); } } }); menu.add_action("edit_redo", [this]() { if(notebook.get_current_page()!=-1) { auto undo_manager = notebook.get_current_view()->get_source_buffer()->get_undo_manager(); if(undo_manager->can_redo()) { undo_manager->redo(); notebook.get_current_view()->scroll_to(notebook.get_current_view()->get_buffer()->get_insert()); } } }); menu.add_action("edit_cut", [this]() { auto widget=get_focus(); if(auto entry=dynamic_cast(widget)) entry->cut_clipboard(); else if(notebook.get_current_page()!=-1) notebook.get_current_view()->get_buffer()->cut_clipboard(Gtk::Clipboard::get()); }); menu.add_action("edit_copy", [this]() { auto widget=get_focus(); if(auto entry=dynamic_cast(widget)) entry->copy_clipboard(); else if(auto text_view=dynamic_cast(widget)) text_view->get_buffer()->copy_clipboard(Gtk::Clipboard::get()); }); menu.add_action("edit_paste", [this]() { auto widget=get_focus(); if(auto entry=dynamic_cast(widget)) entry->paste_clipboard(); else if(notebook.get_current_page()!=-1) notebook.get_current_view()->paste(); }); menu.add_action("edit_find", [this]() { search_and_replace_entry(); }); menu.add_action("source_spellcheck", [this]() { if(notebook.get_current_page()!=-1) notebook.get_current_view()->spellcheck(); }); menu.add_action("source_spellcheck_clear", [this]() { if(notebook.get_current_page()!=-1) notebook.get_current_view()->remove_spellcheck_errors(); }); menu.add_action("source_spellcheck_next_error", [this]() { if(notebook.get_current_page()!=-1) notebook.get_current_view()->goto_next_spellcheck_error(); }); menu.add_action("source_indentation_set_buffer_tab", [this]() { set_tab_entry(); }); menu.add_action("source_indentation_auto_indent_buffer", [this]() { if(notebook.get_current_page()!=-1 && notebook.get_current_view()->auto_indent) notebook.get_current_view()->auto_indent(); }); menu.add_action("source_goto_line", [this]() { goto_line_entry(); }); menu.add_action("source_center_cursor", [this]() { if(notebook.get_current_page()!=-1) { auto view=notebook.get_current_view(); view->scroll_to_cursor_delayed(view, true, false); } }); menu.add_action("source_find_documentation", [this]() { if(notebook.get_current_page()!=-1) { if(notebook.get_current_view()->get_token_data) { auto data=notebook.get_current_view()->get_token_data(); if(data.size()>0) { auto documentation_search=Config::get().source.documentation_searches.find(data[0]); if(documentation_search!=Config::get().source.documentation_searches.end()) { std::string token_query; for(size_t c=1;c0) { if(token_query.size()>0) token_query+=documentation_search->second.separator; token_query+=data[c]; } } if(token_query.size()>0) { std::unordered_map::iterator query; if(data[1].size()>0) query=documentation_search->second.queries.find(data[1]); else query=documentation_search->second.queries.find("@empty"); if(query==documentation_search->second.queries.end()) query=documentation_search->second.queries.find("@any"); if(query!=documentation_search->second.queries.end()) { std::string uri=query->second+token_query; #ifdef __APPLE__ Terminal::get().process("open \""+uri+"\""); #else GError* error=NULL; gtk_show_uri(NULL, uri.c_str(), GDK_CURRENT_TIME, &error); g_clear_error(&error); #endif } } } } } } }); menu.add_action("source_goto_declaration", [this]() { if(notebook.get_current_page()!=-1) { if(notebook.get_current_view()->get_declaration_location) { auto location=notebook.get_current_view()->get_declaration_location(); if(!location.file_path.empty()) { boost::filesystem::path declaration_file; boost::system::error_code ec; declaration_file=boost::filesystem::canonical(location.file_path, ec); if(ec) return; notebook.open(declaration_file); auto line=static_cast(location.line)-1; auto index=static_cast(location.index)-1; auto view=notebook.get_current_view(); line=std::min(line, view->get_buffer()->get_line_count()-1); if(line>=0) { auto iter=view->get_buffer()->get_iter_at_line(line); while(!iter.ends_line()) iter.forward_char(); auto end_line_index=iter.get_line_index(); index=std::min(index, end_line_index); view->get_buffer()->place_cursor(view->get_buffer()->get_iter_at_line_index(line, index)); view->scroll_to_cursor_delayed(view, true, false); } } } } }); menu.add_action("source_goto_implementation", [this]() { if(notebook.get_current_page()!=-1) { auto current_view=notebook.get_current_view(); if(current_view->get_token) { auto token=current_view->get_token(); if(token) { for(int page=0;pageget_implementation_location) { auto location=view->get_implementation_location(token); if(!location.file_path.empty()) { boost::filesystem::path implementation_path; boost::system::error_code ec; implementation_path=boost::filesystem::canonical(location.file_path, ec); if(ec) return; notebook.open(implementation_path); auto line=static_cast(location.line)-1; auto index=static_cast(location.index)-1; auto view=notebook.get_current_view(); line=std::min(line, view->get_buffer()->get_line_count()-1); if(line>=0) { auto iter=view->get_buffer()->get_iter_at_line(line); while(!iter.ends_line()) iter.forward_char(); auto end_line_index=iter.get_line_index(); index=std::min(index, end_line_index); view->get_buffer()->place_cursor(view->get_buffer()->get_iter_at_line_index(line, index)); view->scroll_to_cursor_delayed(view, true, false); } return; } } } Info::get().print("Could not find implementation"); } } } }); menu.add_action("source_goto_usage", [this]() { if(notebook.get_current_page()!=-1) { auto current_view=notebook.get_current_view(); if(current_view->get_token && current_view->get_usages) { auto token=current_view->get_token(); if(token) { auto iter=current_view->get_iter_for_dialog(); current_view->selection_dialog=std::unique_ptr(new SelectionDialog(*current_view, current_view->get_buffer()->create_mark(iter), true, true)); auto rows=std::make_shared >(); //First add usages in current file auto usages=current_view->get_usages(token); for(auto &usage: usages) { auto iter=current_view->get_buffer()->get_iter_at_line_index(usage.first.line, usage.first.index); auto row=std::to_string(iter.get_line()+1)+':'+std::to_string(iter.get_line_offset()+1)+' '+usage.second; (*rows)[row]=usage.first; current_view->selection_dialog->add_row(row); } //Then the remaining opened files for(int page=0;pageget_usages) { auto usages=view->get_usages(token); for(auto &usage: usages) { auto iter=view->get_buffer()->get_iter_at_line_index(usage.first.line, usage.first.index); auto row=usage.first.file_path.filename().string()+":"+std::to_string(iter.get_line()+1)+':'+std::to_string(iter.get_line_offset()+1)+' '+usage.second; (*rows)[row]=usage.first; current_view->selection_dialog->add_row(row); } } } } if(rows->size()==0) return; current_view->selection_dialog->on_select=[this, rows](const std::string& selected, bool hide_window) { auto offset=rows->at(selected); boost::filesystem::path declaration_file; boost::system::error_code ec; declaration_file=boost::filesystem::canonical(offset.file_path, ec); if(ec) return; notebook.open(declaration_file); auto view=notebook.get_current_view(); view->get_buffer()->place_cursor(view->get_buffer()->get_iter_at_line_index(offset.line, offset.index)); view->scroll_to(view->get_buffer()->get_insert(), 0.0, 1.0, 0.5); view->delayed_tooltips_connection.disconnect(); }; current_view->selection_dialog->show(); } } } }); menu.add_action("source_goto_method", [this]() { if(notebook.get_current_page()!=-1) { if(notebook.get_current_view()->goto_method) { notebook.get_current_view()->goto_method(); } } }); menu.add_action("source_rename", [this]() { rename_token_entry(); }); menu.add_action("source_goto_next_diagnostic", [this]() { if(notebook.get_current_page()!=-1) { if(notebook.get_current_view()->goto_next_diagnostic) { notebook.get_current_view()->goto_next_diagnostic(); } } }); menu.add_action("source_apply_fix_its", [this]() { if(notebook.get_current_page()!=-1) { if(notebook.get_current_view()->apply_fix_its) { notebook.get_current_view()->apply_fix_its(); } } }); menu.add_action("project_set_run_arguments", [this]() { auto project_language=Project::get_language(); auto run_arguments=std::make_shared >(project_language->get_run_arguments()); if(run_arguments->second.empty()) return; EntryBox::get().clear(); EntryBox::get().labels.emplace_back(); auto label_it=EntryBox::get().labels.begin(); label_it->update=[label_it](int state, const std::string& message){ label_it->set_text("Set empty to let juCi++ deduce executable"); }; label_it->update(0, ""); EntryBox::get().entries.emplace_back(run_arguments->second, [this, run_arguments](const std::string& content){ Project::run_arguments[run_arguments->first]=content; EntryBox::get().hide(); }, 50); auto entry_it=EntryBox::get().entries.begin(); entry_it->set_placeholder_text("Project: Set Run Arguments"); EntryBox::get().buttons.emplace_back("Project: set run arguments", [this, entry_it](){ entry_it->activate(); }); EntryBox::get().show(); }); menu.add_action("compile_and_run", [this]() { if(Project::compiling || Project::debugging) return; Project::current_language=Project::get_language(); if(Config::get().project.save_on_compile_or_run) Project::save_files(Project::current_language->build->project_path); Project::current_language->compile_and_run(); }); menu.add_action("compile", [this]() { if(Project::compiling || Project::debugging) return; Project::current_language=Project::get_language(); if(Config::get().project.save_on_compile_or_run) Project::save_files(Project::current_language->build->project_path); Project::current_language->compile(); }); menu.add_action("run_command", [this]() { EntryBox::get().clear(); EntryBox::get().labels.emplace_back(); auto label_it=EntryBox::get().labels.begin(); label_it->update=[label_it](int state, const std::string& message){ label_it->set_text("Run Command directory order: opened directory, file path, current directory"); }; label_it->update(0, ""); EntryBox::get().entries.emplace_back(last_run_command, [this](const std::string& content){ if(content!="") { last_run_command=content; auto run_path=notebook.get_current_folder(); Terminal::get().async_print("Running: "+content+'\n'); Terminal::get().async_process(content, run_path, [this, content](int exit_status){ Terminal::get().async_print(content+" returned: "+std::to_string(exit_status)+'\n'); }); } EntryBox::get().hide(); }, 30); auto entry_it=EntryBox::get().entries.begin(); entry_it->set_placeholder_text("Command"); EntryBox::get().buttons.emplace_back("Run command", [this, entry_it](){ entry_it->activate(); }); EntryBox::get().show(); }); menu.add_action("kill_last_running", [this]() { Terminal::get().kill_last_async_process(); }); menu.add_action("force_kill_last_running", [this]() { Terminal::get().kill_last_async_process(true); }); #ifdef JUCI_ENABLE_DEBUG menu.add_action("debug_set_run_arguments", [this]() { auto project_language=Project::get_language(); auto run_arguments=std::make_shared >(project_language->debug_get_run_arguments()); if(run_arguments->second.empty()) return; EntryBox::get().clear(); EntryBox::get().labels.emplace_back(); auto label_it=EntryBox::get().labels.begin(); label_it->update=[label_it](int state, const std::string& message){ label_it->set_text("Set empty to let juCi++ deduce executable"); }; label_it->update(0, ""); EntryBox::get().entries.emplace_back(run_arguments->second, [this, run_arguments](const std::string& content){ Project::debug_run_arguments[run_arguments->first]=content; EntryBox::get().hide(); }, 50); auto entry_it=EntryBox::get().entries.begin(); entry_it->set_placeholder_text("Debug: Set Run Arguments"); EntryBox::get().buttons.emplace_back("Debug: set run arguments", [this, entry_it](){ entry_it->activate(); }); EntryBox::get().show(); }); menu.add_action("debug_start_continue", [this](){ if(Project::compiling) return; else if(Project::debugging) { Project::current_language->debug_continue(); return; } Project::current_language=Project::get_language(); if(Config::get().project.save_on_compile_or_run) Project::save_files(Project::current_language->build->project_path); Project::current_language->debug_start(); }); menu.add_action("debug_stop", [this]() { if(Project::current_language) Project::current_language->debug_stop(); }); menu.add_action("debug_kill", [this]() { if(Project::current_language) Project::current_language->debug_kill(); }); menu.add_action("debug_step_over", [this]() { if(Project::current_language) Project::current_language->debug_step_over(); }); menu.add_action("debug_step_into", [this]() { if(Project::current_language) Project::current_language->debug_step_into(); }); menu.add_action("debug_step_out", [this]() { if(Project::current_language) Project::current_language->debug_step_out(); }); menu.add_action("debug_backtrace", [this]() { if(Project::current_language) Project::current_language->debug_backtrace(); }); menu.add_action("debug_show_variables", [this]() { if(Project::current_language) Project::current_language->debug_show_variables(); }); menu.add_action("debug_run_command", [this]() { EntryBox::get().clear(); EntryBox::get().entries.emplace_back(last_run_debug_command, [this](const std::string& content){ if(content!="") { if(Project::current_language) Project::current_language->debug_run_command(content); last_run_debug_command=content; } EntryBox::get().hide(); }, 30); auto entry_it=EntryBox::get().entries.begin(); entry_it->set_placeholder_text("Debug Command"); EntryBox::get().buttons.emplace_back("Run debug command", [this, entry_it](){ entry_it->activate(); }); EntryBox::get().show(); }); menu.add_action("debug_toggle_breakpoint", [this](){ if(notebook.get_current_page()!=-1) { auto view=notebook.get_current_view(); auto line_nr=view->get_buffer()->get_insert()->get_iter().get_line(); if(view->get_source_buffer()->get_source_marks_at_line(line_nr, "debug_breakpoint").size()>0) { auto start_iter=view->get_buffer()->get_iter_at_line(line_nr); auto end_iter=start_iter; while(!end_iter.ends_line() && end_iter.forward_char()) {} view->get_source_buffer()->remove_source_marks(start_iter, end_iter, "debug_breakpoint"); if(Project::current_language && Project::debugging) Project::current_language->debug_remove_breakpoint(view->file_path, line_nr+1, view->get_buffer()->get_line_count()+1); } else { view->get_source_buffer()->create_source_mark("debug_breakpoint", view->get_buffer()->get_insert()->get_iter()); if(Project::current_language && Project::debugging) Project::current_language->debug_add_breakpoint(view->file_path, line_nr+1); } } }); menu.add_action("debug_goto_stop", [this](){ if(Project::debugging) { if(!Project::debug_stop.first.empty()) { notebook.open(Project::debug_stop.first); if(notebook.get_current_page()!=-1) { auto view=notebook.get_current_view(); int line_nr=Project::debug_stop.second.first-1; int line_index=Project::debug_stop.second.second-1; if(line_nrget_buffer()->get_line_count()) { auto iter=view->get_buffer()->get_iter_at_line(line_nr); auto end_line_iter=iter; while(!iter.ends_line() && iter.forward_char()) {} auto line=view->get_buffer()->get_text(iter, end_line_iter); if(static_cast(line_index)>=line.bytes()) line_index=0; view->get_buffer()->place_cursor(view->get_buffer()->get_iter_at_line_index(line_nr, line_index)); view->scroll_to_cursor_delayed(view, true, true); } Project::debug_update_stop(); } } } }); Project::debug_update_status(""); #endif menu.add_action("next_tab", [this]() { if(notebook.get_current_page()!=-1) { notebook.open(notebook.get_view((notebook.get_current_page()+1)%notebook.size())->file_path); } }); menu.add_action("previous_tab", [this]() { if(notebook.get_current_page()!=-1) { int previous_page=notebook.get_current_page()-1; if(previous_page<0) previous_page=notebook.size()-1; notebook.open(notebook.get_view(previous_page)->file_path); } }); menu.add_action("close_tab", [this]() { notebook.close_current_page(); if(notebook.get_current_page()!=-1) { notebook.get_current_view()->set_status(notebook.get_current_view()->status); notebook.get_current_view()->set_info(notebook.get_current_view()->info); } else { notebook.status.set_text(""); notebook.info.set_text(""); activate_menu_items(false); } }); activate_menu_items(false); } void Window::activate_menu_items(bool activate) { auto &menu = Menu::get(); menu.actions["source_indentation_auto_indent_buffer"]->set_enabled(activate ? static_cast(notebook.get_current_view()->auto_indent) : false); menu.actions["source_find_documentation"]->set_enabled(activate ? static_cast(notebook.get_current_view()->get_token_data) : false); menu.actions["source_goto_declaration"]->set_enabled(activate ? static_cast(notebook.get_current_view()->get_declaration_location) : false); menu.actions["source_goto_implementation"]->set_enabled(activate ? static_cast(notebook.get_current_view()->get_implementation_location) : false); menu.actions["source_goto_usage"]->set_enabled(activate ? static_cast(notebook.get_current_view()->get_usages) : false); menu.actions["source_goto_method"]->set_enabled(activate ? static_cast(notebook.get_current_view()->goto_method) : false); menu.actions["source_rename"]->set_enabled(activate ? static_cast(notebook.get_current_view()->rename_similar_tokens) : false); menu.actions["source_goto_next_diagnostic"]->set_enabled(activate ? static_cast(notebook.get_current_view()->goto_next_diagnostic) : false); menu.actions["source_apply_fix_its"]->set_enabled(activate ? static_cast(notebook.get_current_view()->apply_fix_its) : false); #ifdef JUCI_ENABLE_DEBUG if(notebook.get_current_page()!=-1) { auto view=notebook.get_current_view(); if(view->language && (view->language->get_id()=="c" || view->language->get_id()=="cpp" || view->language->get_id()=="objc" || view->language->get_id()=="chdr" || view->language->get_id()=="cpphdr")) menu.actions["debug_toggle_breakpoint"]->set_enabled(true); else menu.actions["debug_toggle_breakpoint"]->set_enabled(false); } else menu.actions["debug_toggle_breakpoint"]->set_enabled(false); #endif } bool Window::on_key_press_event(GdkEventKey *event) { if(event->keyval==GDK_KEY_Escape) { EntryBox::get().hide(); } #ifdef __APPLE__ //For Apple's Command-left, right, up, down keys else if((event->state & GDK_META_MASK)>0 && (event->state & GDK_MOD1_MASK)==0) { if(event->keyval==GDK_KEY_Left) { event->keyval=GDK_KEY_Home; event->state=event->state & GDK_SHIFT_MASK; event->hardware_keycode=115; } else if(event->keyval==GDK_KEY_Right) { event->keyval=GDK_KEY_End; event->state=event->state & GDK_SHIFT_MASK; event->hardware_keycode=119; } else if(event->keyval==GDK_KEY_Up) { event->keyval=GDK_KEY_Home; event->state=event->state & GDK_SHIFT_MASK; event->state+=GDK_CONTROL_MASK; event->hardware_keycode=115; } else if(event->keyval==GDK_KEY_Down) { event->keyval=GDK_KEY_End; event->state=event->state & GDK_SHIFT_MASK; event->state+=GDK_CONTROL_MASK; event->hardware_keycode=119; } } #endif return Gtk::ApplicationWindow::on_key_press_event(event); } bool Window::on_delete_event(GdkEventAny *event) { try { boost::property_tree::ptree pt_root, pt_files; pt_root.put("folder", Directories::get().path.string()); for(int c=0;cfile_path.string()); pt_files.push_back(std::make_pair("", pt_child)); } pt_root.add_child("files", pt_files); if(notebook.get_current_page()!=-1) pt_root.put("current_file", notebook.get_current_view()->file_path.string()); boost::property_tree::write_json((Config::get().juci_home_path()/"last_session.json").string(), pt_root); } catch(const std::exception &) {} auto size=notebook.size(); for(int c=0;cdebug_delete(); #endif return false; } void Window::search_and_replace_entry() { EntryBox::get().clear(); EntryBox::get().labels.emplace_back(); auto label_it=EntryBox::get().labels.begin(); label_it->update=[label_it](int state, const std::string& message){ if(state==0) { try { auto number = stoi(message); if(number==0) label_it->set_text(""); else if(number==1) label_it->set_text("1 result found"); else if(number>1) label_it->set_text(message+" results found"); } catch(const std::exception &e) {} } }; EntryBox::get().entries.emplace_back(last_search, [this](const std::string& content){ if(notebook.get_current_page()!=-1) notebook.get_current_view()->search_forward(); }); auto search_entry_it=EntryBox::get().entries.begin(); search_entry_it->set_placeholder_text("Find"); if(notebook.get_current_page()!=-1) { notebook.get_current_view()->update_search_occurrences=[label_it](int number){ label_it->update(0, std::to_string(number)); }; notebook.get_current_view()->search_highlight(search_entry_it->get_text(), case_sensitive_search, regex_search); } search_entry_it->signal_key_press_event().connect([this](GdkEventKey* event){ if(event->keyval==GDK_KEY_Return && (event->state&GDK_SHIFT_MASK)>0) { if(notebook.get_current_page()!=-1) notebook.get_current_view()->search_backward(); } return false; }); search_entry_it->signal_changed().connect([this, search_entry_it](){ last_search=search_entry_it->get_text(); if(notebook.get_current_page()!=-1) notebook.get_current_view()->search_highlight(search_entry_it->get_text(), case_sensitive_search, regex_search); }); EntryBox::get().entries.emplace_back(last_replace, [this](const std::string &content){ if(notebook.get_current_page()!=-1) notebook.get_current_view()->replace_forward(content); }); auto replace_entry_it=EntryBox::get().entries.begin(); replace_entry_it++; replace_entry_it->set_placeholder_text("Replace"); replace_entry_it->signal_key_press_event().connect([this, replace_entry_it](GdkEventKey* event){ if(event->keyval==GDK_KEY_Return && (event->state&GDK_SHIFT_MASK)>0) { if(notebook.get_current_page()!=-1) notebook.get_current_view()->replace_backward(replace_entry_it->get_text()); } return false; }); replace_entry_it->signal_changed().connect([this, replace_entry_it](){ last_replace=replace_entry_it->get_text(); }); EntryBox::get().buttons.emplace_back("↑", [this](){ if(notebook.get_current_page()!=-1) notebook.get_current_view()->search_backward(); }); EntryBox::get().buttons.back().set_tooltip_text("Find Previous\n\nShortcut: Shift+Enter in the Find entry field"); EntryBox::get().buttons.emplace_back("⇄", [this, replace_entry_it](){ if(notebook.get_current_page()!=-1) { notebook.get_current_view()->replace_forward(replace_entry_it->get_text()); } }); EntryBox::get().buttons.back().set_tooltip_text("Replace Next\n\nShortcut: Enter in the Replace entry field"); EntryBox::get().buttons.emplace_back("↓", [this](){ if(notebook.get_current_page()!=-1) notebook.get_current_view()->search_forward(); }); EntryBox::get().buttons.back().set_tooltip_text("Find Next\n\nShortcut: Enter in the Find entry field"); EntryBox::get().buttons.emplace_back("Replace All", [this, replace_entry_it](){ if(notebook.get_current_page()!=-1) notebook.get_current_view()->replace_all(replace_entry_it->get_text()); }); EntryBox::get().buttons.back().set_tooltip_text("Replace All"); EntryBox::get().toggle_buttons.emplace_back("Aa"); EntryBox::get().toggle_buttons.back().set_tooltip_text("Match Case"); EntryBox::get().toggle_buttons.back().set_active(case_sensitive_search); EntryBox::get().toggle_buttons.back().on_activate=[this, search_entry_it](){ case_sensitive_search=!case_sensitive_search; if(notebook.get_current_page()!=-1) notebook.get_current_view()->search_highlight(search_entry_it->get_text(), case_sensitive_search, regex_search); }; EntryBox::get().toggle_buttons.emplace_back(".*"); EntryBox::get().toggle_buttons.back().set_tooltip_text("Use Regex"); EntryBox::get().toggle_buttons.back().set_active(regex_search); EntryBox::get().toggle_buttons.back().on_activate=[this, search_entry_it](){ regex_search=!regex_search; if(notebook.get_current_page()!=-1) notebook.get_current_view()->search_highlight(search_entry_it->get_text(), case_sensitive_search, regex_search); }; EntryBox::get().signal_hide().connect([this]() { for(int c=0;cupdate_search_occurrences=nullptr; notebook.get_view(c)->search_highlight("", case_sensitive_search, regex_search); } search_entry_shown=false; }); search_entry_shown=true; EntryBox::get().show(); } void Window::set_tab_entry() { EntryBox::get().clear(); if(notebook.get_current_page()!=-1) { auto tab_char_and_size=notebook.get_current_view()->get_tab_char_and_size(); EntryBox::get().labels.emplace_back(); auto label_it=EntryBox::get().labels.begin(); EntryBox::get().entries.emplace_back(std::to_string(tab_char_and_size.second)); auto entry_tab_size_it=EntryBox::get().entries.begin(); entry_tab_size_it->set_placeholder_text("Tab size"); char tab_char=tab_char_and_size.first; std::string tab_char_string; if(tab_char==' ') tab_char_string="space"; else if(tab_char=='\t') tab_char_string="tab"; EntryBox::get().entries.emplace_back(tab_char_string); auto entry_tab_char_it=EntryBox::get().entries.rbegin(); entry_tab_char_it->set_placeholder_text("Tab char"); const auto activate_function=[this, entry_tab_char_it, entry_tab_size_it, label_it](const std::string& content){ if(notebook.get_current_page()!=-1) { char tab_char=0; unsigned tab_size=0; try { tab_size = static_cast(std::stoul(entry_tab_size_it->get_text())); std::string tab_char_string=entry_tab_char_it->get_text(); std::transform(tab_char_string.begin(), tab_char_string.end(), tab_char_string.begin(), ::tolower); if(tab_char_string=="space") tab_char=' '; else if(tab_char_string=="tab") tab_char='\t'; } catch(const std::exception &e) {} if(tab_char!=0 && tab_size>0) { notebook.get_current_view()->set_tab_char_and_size(tab_char, tab_size); EntryBox::get().hide(); } else { label_it->set_text("Tab size must be >0 and tab char set to either 'space' or 'tab'"); } } }; entry_tab_char_it->on_activate=activate_function; entry_tab_size_it->on_activate=activate_function; EntryBox::get().buttons.emplace_back("Set tab in current buffer", [this, entry_tab_char_it](){ entry_tab_char_it->activate(); }); EntryBox::get().show(); } } void Window::goto_line_entry() { EntryBox::get().clear(); if(notebook.get_current_page()!=-1) { EntryBox::get().entries.emplace_back("", [this](const std::string& content){ if(notebook.get_current_page()!=-1) { auto view=notebook.get_current_view(); try { auto line = stoi(content); if(line>0 && line<=view->get_buffer()->get_line_count()) { line--; view->get_buffer()->place_cursor(view->get_buffer()->get_iter_at_line(line)); view->scroll_to_cursor_delayed(view, true, false); } } catch(const std::exception &e) {} EntryBox::get().hide(); } }); auto entry_it=EntryBox::get().entries.begin(); entry_it->set_placeholder_text("Line number"); EntryBox::get().buttons.emplace_back("Go to line", [this, entry_it](){ entry_it->activate(); }); EntryBox::get().show(); } } void Window::rename_token_entry() { EntryBox::get().clear(); if(notebook.get_current_page()!=-1) { if(notebook.get_current_view()->get_token) { auto token=std::make_shared(notebook.get_current_view()->get_token()); if(*token) { EntryBox::get().labels.emplace_back(); auto label_it=EntryBox::get().labels.begin(); label_it->update=[label_it](int state, const std::string& message){ label_it->set_text("Warning: only opened and parsed tabs will have its content renamed, and modified files will be saved"); }; label_it->update(0, ""); EntryBox::get().entries.emplace_back(token->spelling, [this, token](const std::string& content){ if(notebook.get_current_page()!=-1 && content!=token->spelling) { std::vector modified_pages; for(int c=0;crename_similar_tokens) { auto number=view->rename_similar_tokens(*token, content); if(number>0) { Terminal::get().print("Replaced "+std::to_string(number)+" occurrences in file "+view->file_path.string()+"\n"); notebook.save(c); modified_pages.emplace_back(c); } } } for(auto &page: modified_pages) notebook.get_view(page)->soft_reparse_needed=false; EntryBox::get().hide(); } }); auto entry_it=EntryBox::get().entries.begin(); entry_it->set_placeholder_text("New name"); EntryBox::get().buttons.emplace_back("Rename", [this, entry_it](){ entry_it->activate(); }); EntryBox::get().show(); } } } }