You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4 KiB

#ifndef JUCI_TERMINAL_H_
#define JUCI_TERMINAL_H_
#include <mutex>
#include <functional>
#include "gtkmm.h"
#include <boost/filesystem.hpp>
#include <thread>
#include <atomic>
class Terminal : public Gtk::HBox {
public:
class Config {
public:
std::vector<std::string> compile_commands;
std::string run_command;
};
class InProgress {
public:
InProgress(const std::string& start_msg);
~InProgress();
void done(const std::string& msg);
void cancel(const std::string& msg);
private:
11 years ago
void start(const std::string& msg);
int line_nr;
std::atomic<bool> stop;
Glib::Dispatcher waiting_print;
std::thread wait_thread;
};
Terminal();
void set_change_folder_command(boost::filesystem::path CMake_path);
void run(std::string executable);
void compile();
int print(std::string message);
void print(int line_nr, std::string message);
std::shared_ptr<InProgress> print_in_progress(std::string start_msg);
private:
void execute_command(std::string command, std::string mode);
Gtk::TextView text_view;
Gtk::ScrolledWindow scrolled_window;
std::string change_folder_command;
std::string path;
const std::string cmake_sucsess = "Build files have been written to:";
const std::string make_built = "Built target";
const std::string make_executable = "Linking CXX executable";
};
#endif // JUCI_TERMINAL_H_