mirror of https://gitlab.com/cppit/jucipp
100 changed files with 353 additions and 353 deletions
@ -1,5 +1,5 @@
|
||||
#include "autocomplete.h" |
||||
#include "selection_dialog.h" |
||||
#include "autocomplete.hpp" |
||||
#include "selection_dialog.hpp" |
||||
|
||||
Autocomplete::Autocomplete(Gtk::TextView *view, bool &interactive_completion, guint &last_keyval, bool pass_buffer_and_strip_word) |
||||
: view(view), interactive_completion(interactive_completion), pass_buffer_and_strip_word(pass_buffer_and_strip_word) { |
||||
@ -1,7 +1,7 @@
|
||||
#pragma once |
||||
#include "dispatcher.h" |
||||
#include "mutex.h" |
||||
#include "tooltips.h" |
||||
#include "dispatcher.hpp" |
||||
#include "mutex.hpp" |
||||
#include "tooltips.hpp" |
||||
#include <atomic> |
||||
#include <thread> |
||||
|
||||
@ -1,9 +1,9 @@
|
||||
#include "cmake.h" |
||||
#include "compile_commands.h" |
||||
#include "config.h" |
||||
#include "dialogs.h" |
||||
#include "filesystem.h" |
||||
#include "terminal.h" |
||||
#include "cmake.hpp" |
||||
#include "compile_commands.hpp" |
||||
#include "config.hpp" |
||||
#include "dialogs.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "terminal.hpp" |
||||
#include <regex> |
||||
|
||||
CMake::CMake(const boost::filesystem::path &path) { |
||||
@ -1,7 +1,7 @@
|
||||
#include "compile_commands.h" |
||||
#include "compile_commands.hpp" |
||||
#include "clangmm.h" |
||||
#include "config.h" |
||||
#include "terminal.h" |
||||
#include "config.hpp" |
||||
#include "terminal.hpp" |
||||
#include <algorithm> |
||||
#include <boost/property_tree/json_parser.hpp> |
||||
#include <regex> |
||||
@ -1,7 +1,7 @@
|
||||
#include "config.h" |
||||
#include "files.h" |
||||
#include "filesystem.h" |
||||
#include "terminal.h" |
||||
#include "config.hpp" |
||||
#include "files.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "terminal.hpp" |
||||
#include <algorithm> |
||||
#include <exception> |
||||
#include <iostream> |
||||
@ -1,5 +1,5 @@
|
||||
#pragma once |
||||
#include "dispatcher.h" |
||||
#include "dispatcher.hpp" |
||||
#include <boost/filesystem.hpp> |
||||
#include <boost/property_tree/json_parser.hpp> |
||||
#include <string> |
||||
@ -1,8 +1,8 @@
|
||||
#include "ctags.h" |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "project_build.h" |
||||
#include "terminal.h" |
||||
#include "ctags.hpp" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "project_build.hpp" |
||||
#include "terminal.hpp" |
||||
#include <climits> |
||||
#include <vector> |
||||
|
||||
@ -1,12 +1,12 @@
|
||||
#include "debug_lldb.h" |
||||
#include "debug_lldb.hpp" |
||||
#include <cstdio> |
||||
#ifdef __APPLE__ |
||||
#include <cstdlib> |
||||
#endif |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "process.hpp" |
||||
#include "terminal.h" |
||||
#include "terminal.hpp" |
||||
#include <boost/filesystem.hpp> |
||||
#include <iostream> |
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#pragma once |
||||
#include "mutex.h" |
||||
#include "mutex.hpp" |
||||
#include <boost/filesystem.hpp> |
||||
#include <list> |
||||
#include <lldb/API/LLDB.h> |
||||
@ -1,4 +1,4 @@
|
||||
#include "dialogs.h" |
||||
#include "dialogs.hpp" |
||||
#include <cmath> |
||||
|
||||
Dialog::Message::Message(const std::string &text) : Gtk::Window(Gtk::WindowType::WINDOW_POPUP) { |
||||
@ -1,4 +1,4 @@
|
||||
#include "dialogs.h" |
||||
#include "dialogs.hpp" |
||||
|
||||
std::string Dialog::open_folder(const boost::filesystem::path &path) { |
||||
return gtk_dialog(path, "Open Folder", |
||||
@ -1,6 +1,6 @@
|
||||
#include "dialogs.h" |
||||
#include "juci.h" |
||||
#include "singletons.h" |
||||
#include "dialogs.hpp" |
||||
#include "juci.hpp" |
||||
#include "singletons.hpp" |
||||
|
||||
#undef NTDDI_VERSION |
||||
#define NTDDI_VERSION NTDDI_VISTA |
||||
@ -1,10 +1,10 @@
|
||||
#include "directories.h" |
||||
#include "entrybox.h" |
||||
#include "filesystem.h" |
||||
#include "notebook.h" |
||||
#include "source.h" |
||||
#include "terminal.h" |
||||
#include "utility.h" |
||||
#include "directories.hpp" |
||||
#include "entrybox.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "notebook.hpp" |
||||
#include "source.hpp" |
||||
#include "terminal.hpp" |
||||
#include "utility.hpp" |
||||
#include <algorithm> |
||||
|
||||
bool Directories::TreeStore::row_drop_possible_vfunc(const Gtk::TreeModel::Path &path, const Gtk::SelectionData &selection_data) const { |
||||
@ -1,7 +1,7 @@
|
||||
#pragma once |
||||
#include "boost/filesystem.hpp" |
||||
#include "dispatcher.h" |
||||
#include "git.h" |
||||
#include "dispatcher.hpp" |
||||
#include "git.hpp" |
||||
#include <atomic> |
||||
#include <gtkmm.h> |
||||
#include <string> |
||||
@ -1,4 +1,4 @@
|
||||
#include "dispatcher.h" |
||||
#include "dispatcher.hpp" |
||||
#include <vector> |
||||
|
||||
Dispatcher::Dispatcher() { |
||||
@ -1,5 +1,5 @@
|
||||
#pragma once |
||||
#include "mutex.h" |
||||
#include "mutex.hpp" |
||||
#include <functional> |
||||
#include <gtkmm.h> |
||||
#include <list> |
||||
@ -1,4 +1,4 @@
|
||||
#include "documentation.h" |
||||
#include "documentation.hpp" |
||||
#include <unordered_map> |
||||
|
||||
std::string Documentation::CppReference::get_url(const std::string &symbol) noexcept { |
||||
@ -1,4 +1,4 @@
|
||||
#include "entrybox.h" |
||||
#include "entrybox.hpp" |
||||
|
||||
std::unordered_map<std::string, std::vector<std::string>> EntryBox::entry_histories; |
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#pragma once |
||||
#include "gtkmm.h" |
||||
#include <functional> |
||||
#include <gtkmm.h> |
||||
#include <list> |
||||
#include <string> |
||||
#include <unordered_map> |
||||
@ -1,4 +1,4 @@
|
||||
#include "git.h" |
||||
#include "git.hpp" |
||||
#include <cstring> |
||||
#include <unordered_map> |
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#pragma once |
||||
#include "mutex.h" |
||||
#include "mutex.hpp" |
||||
#include <boost/filesystem.hpp> |
||||
#include <giomm.h> |
||||
#include <git2.h> |
||||
@ -1,8 +1,8 @@
|
||||
#include "grep.h" |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "project_build.h" |
||||
#include "terminal.h" |
||||
#include "grep.hpp" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "project_build.hpp" |
||||
#include "terminal.hpp" |
||||
|
||||
Grep::Grep(const boost::filesystem::path &path, const std::string &pattern, bool case_sensitive, bool extended_regex) { |
||||
auto build = Project::Build::create(path); |
||||
@ -1,4 +1,4 @@
|
||||
#include "info.h" |
||||
#include "info.hpp" |
||||
|
||||
Info::Info() { |
||||
set_hexpand(false); |
||||
@ -1,17 +1,17 @@
|
||||
#include "juci.h" |
||||
#include "config.h" |
||||
#include "directories.h" |
||||
#include "filesystem.h" |
||||
#include "menu.h" |
||||
#include "notebook.h" |
||||
#include "terminal.h" |
||||
#include "window.h" |
||||
#include "juci.hpp" |
||||
#include "config.hpp" |
||||
#include "directories.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "menu.hpp" |
||||
#include "notebook.hpp" |
||||
#include "terminal.hpp" |
||||
#include "window.hpp" |
||||
#ifndef _WIN32 |
||||
#include <csignal> |
||||
#endif |
||||
#ifdef __APPLE__ |
||||
#include "dispatcher.h" |
||||
#include "window_macos.h" |
||||
#include "dispatcher.hpp" |
||||
#include "window_macos.hpp" |
||||
#endif |
||||
|
||||
int Application::on_command_line(const Glib::RefPtr<Gio::ApplicationCommandLine> &cmd) { |
||||
@ -1,5 +1,5 @@
|
||||
#include "menu.h" |
||||
#include "config.h" |
||||
#include "menu.hpp" |
||||
#include "config.hpp" |
||||
#include <iostream> |
||||
#include <string> |
||||
|
||||
@ -1,9 +1,9 @@
|
||||
#include "meson.h" |
||||
#include "compile_commands.h" |
||||
#include "config.h" |
||||
#include "dialogs.h" |
||||
#include "filesystem.h" |
||||
#include "terminal.h" |
||||
#include "meson.hpp" |
||||
#include "compile_commands.hpp" |
||||
#include "config.hpp" |
||||
#include "dialogs.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "terminal.hpp" |
||||
#include <regex> |
||||
|
||||
Meson::Meson(const boost::filesystem::path &path) { |
||||
@ -1,13 +1,13 @@
|
||||
#include "notebook.h" |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "gtksourceview-3.0/gtksourceview/gtksourcemap.h" |
||||
#include "project.h" |
||||
#include "selection_dialog.h" |
||||
#include "source_clang.h" |
||||
#include "source_generic.h" |
||||
#include "source_language_protocol.h" |
||||
#include "notebook.hpp" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "project.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include "source_clang.hpp" |
||||
#include "source_generic.hpp" |
||||
#include "source_language_protocol.hpp" |
||||
#include <fstream> |
||||
#include <gtksourceview-3.0/gtksourceview/gtksourcemap.h> |
||||
#include <regex> |
||||
|
||||
Notebook::TabLabel::TabLabel(const std::function<void()> &on_close) { |
||||
@ -1,6 +1,6 @@
|
||||
#pragma once |
||||
#include "gtkmm.h" |
||||
#include "source.h" |
||||
#include "source.hpp" |
||||
#include <gtkmm.h> |
||||
#include <iostream> |
||||
#include <map> |
||||
#include <sigc++/sigc++.h> |
||||
@ -1,22 +1,22 @@
|
||||
#include "project.h" |
||||
#include "config.h" |
||||
#include "directories.h" |
||||
#include "filesystem.h" |
||||
#include "menu.h" |
||||
#include "mutex.h" |
||||
#include "notebook.h" |
||||
#include "selection_dialog.h" |
||||
#include "terminal.h" |
||||
#include "project.hpp" |
||||
#include "config.hpp" |
||||
#include "directories.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "menu.hpp" |
||||
#include "mutex.hpp" |
||||
#include "notebook.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include "terminal.hpp" |
||||
#include <fstream> |
||||
#ifdef JUCI_ENABLE_DEBUG |
||||
#include "debug_lldb.h" |
||||
#include "debug_lldb.hpp" |
||||
#endif |
||||
#include "ctags.h" |
||||
#include "info.h" |
||||
#include "snippets.h" |
||||
#include "source_clang.h" |
||||
#include "source_language_protocol.h" |
||||
#include "usages_clang.h" |
||||
#include "ctags.hpp" |
||||
#include "info.hpp" |
||||
#include "snippets.hpp" |
||||
#include "source_clang.hpp" |
||||
#include "source_language_protocol.hpp" |
||||
#include "usages_clang.hpp" |
||||
#include <future> |
||||
|
||||
boost::filesystem::path Project::debug_last_stop_file_path; |
||||
@ -1,7 +1,7 @@
|
||||
#pragma once |
||||
#include "dispatcher.h" |
||||
#include "project_build.h" |
||||
#include "tooltips.h" |
||||
#include "dispatcher.hpp" |
||||
#include "project_build.hpp" |
||||
#include "tooltips.hpp" |
||||
#include <atomic> |
||||
#include <boost/filesystem.hpp> |
||||
#include <gtkmm.h> |
||||
@ -1,6 +1,6 @@
|
||||
#include "project_build.h" |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "project_build.hpp" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include <boost/algorithm/string.hpp> |
||||
|
||||
std::unique_ptr<Project::Build> Project::Build::create(const boost::filesystem::path &path) { |
||||
@ -1,6 +1,6 @@
|
||||
#pragma once |
||||
#include "cmake.h" |
||||
#include "meson.h" |
||||
#include "cmake.hpp" |
||||
#include "meson.hpp" |
||||
#include <boost/filesystem.hpp> |
||||
|
||||
namespace Project { |
||||
@ -1,4 +1,4 @@
|
||||
#include "selection_dialog.h" |
||||
#include "selection_dialog.hpp" |
||||
#include <algorithm> |
||||
|
||||
SelectionDialogBase::ListViewText::ListViewText(bool use_markup) : Gtk::TreeView(), use_markup(use_markup) { |
||||
@ -1,6 +1,6 @@
|
||||
#pragma once |
||||
#include "gtkmm.h" |
||||
#include <functional> |
||||
#include <gtkmm.h> |
||||
#include <unordered_map> |
||||
|
||||
class SelectionDialogBase { |
||||
@ -1,7 +1,7 @@
|
||||
#include "snippets.h" |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "terminal.h" |
||||
#include "snippets.hpp" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "terminal.hpp" |
||||
#include <boost/property_tree/json_parser.hpp> |
||||
|
||||
void Snippets::load() { |
||||
@ -1,14 +1,14 @@
|
||||
#include "source.h" |
||||
#include "config.h" |
||||
#include "ctags.h" |
||||
#include "directories.h" |
||||
#include "filesystem.h" |
||||
#include "git.h" |
||||
#include "info.h" |
||||
#include "menu.h" |
||||
#include "selection_dialog.h" |
||||
#include "terminal.h" |
||||
#include "utility.h" |
||||
#include "source.hpp" |
||||
#include "config.hpp" |
||||
#include "ctags.hpp" |
||||
#include "directories.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "git.hpp" |
||||
#include "info.hpp" |
||||
#include "menu.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include "terminal.hpp" |
||||
#include "utility.hpp" |
||||
#include <algorithm> |
||||
#include <boost/property_tree/json_parser.hpp> |
||||
#include <boost/spirit/home/qi/char.hpp> |
||||
@ -1,7 +1,7 @@
|
||||
#pragma once |
||||
#include "source_diff.h" |
||||
#include "source_spellcheck.h" |
||||
#include "tooltips.h" |
||||
#include "source_diff.hpp" |
||||
#include "source_spellcheck.hpp" |
||||
#include "tooltips.hpp" |
||||
#include <boost/filesystem.hpp> |
||||
#include <boost/property_tree/xml_parser.hpp> |
||||
#include <set> |
||||
@ -1,11 +1,11 @@
|
||||
#include "source_base.h" |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "git.h" |
||||
#include "info.h" |
||||
#include "selection_dialog.h" |
||||
#include "terminal.h" |
||||
#include "utility.h" |
||||
#include "source_base.hpp" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "git.hpp" |
||||
#include "info.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include "terminal.hpp" |
||||
#include "utility.hpp" |
||||
#include <fstream> |
||||
#include <gtksourceview/gtksource.h> |
||||
#include <regex> |
||||
@ -1,7 +1,7 @@
|
||||
#pragma once |
||||
|
||||
#include "mutex.h" |
||||
#include "snippets.h" |
||||
#include "mutex.hpp" |
||||
#include "snippets.hpp" |
||||
#include <boost/filesystem.hpp> |
||||
#include <gtksourceviewmm.h> |
||||
#include <list> |
||||
@ -1,18 +1,18 @@
|
||||
#include "source_clang.h" |
||||
#include "config.h" |
||||
#include "project_build.h" |
||||
#include "terminal.h" |
||||
#include "source_clang.hpp" |
||||
#include "config.hpp" |
||||
#include "project_build.hpp" |
||||
#include "terminal.hpp" |
||||
#ifdef JUCI_ENABLE_DEBUG |
||||
#include "debug_lldb.h" |
||||
#include "debug_lldb.hpp" |
||||
#endif |
||||
#include "compile_commands.h" |
||||
#include "ctags.h" |
||||
#include "dialogs.h" |
||||
#include "documentation.h" |
||||
#include "filesystem.h" |
||||
#include "info.h" |
||||
#include "selection_dialog.h" |
||||
#include "usages_clang.h" |
||||
#include "compile_commands.hpp" |
||||
#include "ctags.hpp" |
||||
#include "dialogs.hpp" |
||||
#include "documentation.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "info.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include "usages_clang.hpp" |
||||
|
||||
const std::regex include_regex(R"(^[ \t]*#[ \t]*include[ \t]*[<"]([^<>"]+)[>"].*$)"); |
||||
|
||||
@ -1,10 +1,10 @@
|
||||
#pragma once |
||||
#include "autocomplete.h" |
||||
#include "autocomplete.hpp" |
||||
#include "clangmm.h" |
||||
#include "dispatcher.h" |
||||
#include "mutex.h" |
||||
#include "source.h" |
||||
#include "terminal.h" |
||||
#include "dispatcher.hpp" |
||||
#include "mutex.hpp" |
||||
#include "source.hpp" |
||||
#include "terminal.hpp" |
||||
#include <atomic> |
||||
#include <map> |
||||
#include <set> |
||||
@ -1,8 +1,8 @@
|
||||
#include "source_diff.h" |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "info.h" |
||||
#include "terminal.h" |
||||
#include "source_diff.hpp" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "info.hpp" |
||||
#include "terminal.hpp" |
||||
#include <boost/version.hpp> |
||||
|
||||
Source::DiffView::Renderer::Renderer() : Gsv::GutterRenderer() { |
||||
@ -1,8 +1,8 @@
|
||||
#pragma once |
||||
#include "dispatcher.h" |
||||
#include "git.h" |
||||
#include "mutex.h" |
||||
#include "source_base.h" |
||||
#include "dispatcher.hpp" |
||||
#include "git.hpp" |
||||
#include "mutex.hpp" |
||||
#include "source_base.hpp" |
||||
#include <atomic> |
||||
#include <boost/filesystem.hpp> |
||||
#include <map> |
||||
@ -1,9 +1,9 @@
|
||||
#include "source_generic.h" |
||||
#include "filesystem.h" |
||||
#include "info.h" |
||||
#include "selection_dialog.h" |
||||
#include "snippets.h" |
||||
#include "terminal.h" |
||||
#include "source_generic.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "info.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include "snippets.hpp" |
||||
#include "terminal.hpp" |
||||
#include <algorithm> |
||||
|
||||
Source::GenericView::GenericView(const boost::filesystem::path &file_path, const Glib::RefPtr<Gsv::Language> &language) : BaseView(file_path, language), View(file_path, language, true), autocomplete(this, interactive_completion, last_keyval, false) { |
||||
@ -1,8 +1,8 @@
|
||||
#pragma once |
||||
|
||||
#include "autocomplete.h" |
||||
#include "mutex.h" |
||||
#include "source.h" |
||||
#include "autocomplete.hpp" |
||||
#include "mutex.hpp" |
||||
#include "source.hpp" |
||||
#include <atomic> |
||||
|
||||
namespace Source { |
||||
@ -1,15 +1,15 @@
|
||||
#include "source_language_protocol.h" |
||||
#include "filesystem.h" |
||||
#include "info.h" |
||||
#include "notebook.h" |
||||
#include "project.h" |
||||
#include "selection_dialog.h" |
||||
#include "terminal.h" |
||||
#include "source_language_protocol.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "info.hpp" |
||||
#include "notebook.hpp" |
||||
#include "project.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include "terminal.hpp" |
||||
#ifdef JUCI_ENABLE_DEBUG |
||||
#include "debug_lldb.h" |
||||
#include "debug_lldb.hpp" |
||||
#endif |
||||
#include "config.h" |
||||
#include "menu.h" |
||||
#include "config.hpp" |
||||
#include "menu.hpp" |
||||
#include <future> |
||||
#include <limits> |
||||
#include <regex> |
||||
@ -1,8 +1,8 @@
|
||||
#pragma once |
||||
#include "autocomplete.h" |
||||
#include "mutex.h" |
||||
#include "autocomplete.hpp" |
||||
#include "mutex.hpp" |
||||
#include "process.hpp" |
||||
#include "source.h" |
||||
#include "source.hpp" |
||||
#include <atomic> |
||||
#include <boost/property_tree/json_parser.hpp> |
||||
#include <list> |
||||
@ -1,7 +1,7 @@
|
||||
#include "source_spellcheck.h" |
||||
#include "config.h" |
||||
#include "info.h" |
||||
#include "selection_dialog.h" |
||||
#include "source_spellcheck.hpp" |
||||
#include "config.hpp" |
||||
#include "info.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include <iostream> |
||||
|
||||
AspellConfig *Source::SpellCheckView::spellcheck_config = nullptr; |
||||
@ -1,5 +1,5 @@
|
||||
#pragma once |
||||
#include "source_base.h" |
||||
#include "source_base.hpp" |
||||
#include <aspell.h> |
||||
|
||||
namespace Source { |
||||
@ -1,9 +1,9 @@
|
||||
#include "terminal.h" |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "info.h" |
||||
#include "notebook.h" |
||||
#include "project.h" |
||||
#include "terminal.hpp" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "info.hpp" |
||||
#include "notebook.hpp" |
||||
#include "project.hpp" |
||||
#include <iostream> |
||||
#include <regex> |
||||
#include <thread> |
||||
@ -1,11 +1,11 @@
|
||||
#pragma once |
||||
#include "dispatcher.h" |
||||
#include "gtkmm.h" |
||||
#include "mutex.h" |
||||
#include "dispatcher.hpp" |
||||
#include "mutex.hpp" |
||||
#include "process.hpp" |
||||
#include "source_base.h" |
||||
#include "source_base.hpp" |
||||
#include <boost/filesystem.hpp> |
||||
#include <functional> |
||||
#include <gtkmm.h> |
||||
#include <iostream> |
||||
#include <tuple> |
||||
|
||||
@ -1,9 +1,9 @@
|
||||
#include "tooltips.h" |
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "info.h" |
||||
#include "notebook.h" |
||||
#include "selection_dialog.h" |
||||
#include "tooltips.hpp" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "info.hpp" |
||||
#include "notebook.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include <algorithm> |
||||
#include <regex> |
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#pragma once |
||||
#include "gtkmm.h" |
||||
#include <functional> |
||||
#include <gtkmm.h> |
||||
#include <list> |
||||
#include <set> |
||||
#include <string> |
||||
@ -1,9 +1,9 @@
|
||||
#include "usages_clang.h" |
||||
#include "compile_commands.h" |
||||
#include "config.h" |
||||
#include "dialogs.h" |
||||
#include "filesystem.h" |
||||
#include "utility.h" |
||||
#include "usages_clang.hpp" |
||||
#include "compile_commands.hpp" |
||||
#include "config.hpp" |
||||
#include "dialogs.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "utility.hpp" |
||||
#include <chrono> |
||||
#include <fstream> |
||||
#include <regex> |
||||
@ -1,6 +1,6 @@
|
||||
#pragma once |
||||
#include "clangmm.h" |
||||
#include "mutex.h" |
||||
#include "mutex.hpp" |
||||
#include <atomic> |
||||
#include <boost/archive/text_iarchive.hpp> |
||||
#include <boost/archive/text_oarchive.hpp> |
||||
@ -1,4 +1,4 @@
|
||||
#include "utility.h" |
||||
#include "utility.hpp" |
||||
|
||||
ScopeGuard::~ScopeGuard() { |
||||
if(on_exit) |
||||
@ -1,20 +1,20 @@
|
||||
#include "window.h" |
||||
#include "config.h" |
||||
#include "window.hpp" |
||||
#include "config.hpp" |
||||
#ifdef JUCI_ENABLE_DEBUG |
||||
#include "debug_lldb.h" |
||||
#include "debug_lldb.hpp" |
||||
#endif |
||||
#include "compile_commands.h" |
||||
#include "dialogs.h" |
||||
#include "directories.h" |
||||
#include "entrybox.h" |
||||
#include "filesystem.h" |
||||
#include "grep.h" |
||||
#include "info.h" |
||||
#include "menu.h" |
||||
#include "notebook.h" |
||||
#include "project.h" |
||||
#include "selection_dialog.h" |
||||
#include "terminal.h" |
||||
#include "compile_commands.hpp" |
||||
#include "dialogs.hpp" |
||||
#include "directories.hpp" |
||||
#include "entrybox.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "grep.hpp" |
||||
#include "info.hpp" |
||||
#include "menu.hpp" |
||||
#include "notebook.hpp" |
||||
#include "project.hpp" |
||||
#include "selection_dialog.hpp" |
||||
#include "terminal.hpp" |
||||
|
||||
Window::Window() { |
||||
Gsv::init(); |
||||
@ -1,5 +1,5 @@
|
||||
#pragma once |
||||
#include "source_base.h" |
||||
#include "source_base.hpp" |
||||
#include <atomic> |
||||
#include <boost/filesystem.hpp> |
||||
#include <gtkmm.h> |
||||
@ -1,4 +1,4 @@
|
||||
#include "compile_commands.h" |
||||
#include "compile_commands.hpp" |
||||
#include <glib.h> |
||||
#include <gtkmm.h> |
||||
#include <gtksourceviewmm.h> |
||||
@ -1,4 +1,4 @@
|
||||
#include "filesystem.h" |
||||
#include "filesystem.hpp" |
||||
#include <glib.h> |
||||
|
||||
int main() { |
||||
@ -1,4 +1,4 @@
|
||||
#include "debug_lldb.h" |
||||
#include "debug_lldb.hpp" |
||||
#include <atomic> |
||||
#include <boost/filesystem.hpp> |
||||
#include <glib.h> |
||||
@ -1,5 +1,5 @@
|
||||
#include "meson.h" |
||||
#include "project.h" |
||||
#include "meson.hpp" |
||||
#include "project.hpp" |
||||
#include <glib.h> |
||||
|
||||
int main() { |
||||
@ -1,6 +1,6 @@
|
||||
#include "config.h" |
||||
#include "filesystem.h" |
||||
#include "source_clang.h" |
||||
#include "config.hpp" |
||||
#include "filesystem.hpp" |
||||
#include "source_clang.hpp" |
||||
#include <glib.h> |
||||
|
||||
std::string main_error = R"(int main() { |
||||
@ -1,4 +1,4 @@
|
||||
#include "source_generic.h" |
||||
#include "source_generic.hpp" |
||||
#include <glib.h> |
||||
|
||||
int main() { |
||||
@ -1,5 +1,5 @@
|
||||
#include "config.h" |
||||
#include "source.h" |
||||
#include "config.hpp" |
||||
#include "source.hpp" |
||||
#include <glib.h> |
||||
|
||||
//Requires display server to work
|
||||
@ -1,5 +1,5 @@
|
||||
#include "filesystem.h" |
||||
#include "source.h" |
||||
#include "filesystem.hpp" |
||||
#include "source.hpp" |
||||
#include <glib.h> |
||||
|
||||
std::string hello_world = R"(#include <iostream> |
||||
@ -0,0 +1,3 @@
|
||||
#include "config.hpp" |
||||
|
||||
Config::Config() {} |
||||
@ -1,4 +1,4 @@
|
||||
#include "dialogs.h" |
||||
#include "dialogs.hpp" |
||||
|
||||
Dialog::Message::Message(const std::string &text) : Gtk::Window(Gtk::WindowType::WINDOW_POPUP) {} |
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#include "directories.h" |
||||
#include "directories.hpp" |
||||
|
||||
Directories::Directories() : ListViewText(1) {} |
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#include "info.h" |
||||
#include "info.hpp" |
||||
|
||||
Info::Info() {} |
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#include "notebook.h" |
||||
#include "notebook.hpp" |
||||
|
||||
Notebook::Notebook() {} |
||||
|
||||
@ -1,3 +1,3 @@
|
||||
#include "project.h" |
||||
#include "project.hpp" |
||||
|
||||
std::shared_ptr<Project::Base> Project::current; |
||||
@ -1,4 +1,4 @@
|
||||
#include "selection_dialog.h" |
||||
#include "selection_dialog.hpp" |
||||
|
||||
SelectionDialogBase::ListViewText::ListViewText(bool use_markup) {} |
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#include "terminal.h" |
||||
#include "terminal.hpp" |
||||
#include <glib.h> |
||||
#include <gtksourceviewmm.h> |
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#include "tooltips.h" |
||||
#include "tooltips.hpp" |
||||
#include <glib.h> |
||||
#include <gtkmm.h> |
||||
|
||||
@ -1,8 +1,8 @@
|
||||
#include "clangmm.h" |
||||
#include "compile_commands.h" |
||||
#include "meson.h" |
||||
#include "project.h" |
||||
#include "usages_clang.h" |
||||
#include "compile_commands.hpp" |
||||
#include "meson.hpp" |
||||
#include "project.hpp" |
||||
#include "usages_clang.hpp" |
||||
#include <cassert> |
||||
#include <fstream> |
||||
#include <gtksourceviewmm.h> |
||||
Loading…
Reference in new issue