2019-01-15 03:30:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <assert.h>
|
2019-01-15 07:49:24 +00:00
|
|
|
#include <sys/ioctl.h>
|
2019-01-15 22:12:20 +00:00
|
|
|
#include <sys/select.h>
|
2019-01-15 03:30:55 +00:00
|
|
|
#include "Terminal.h"
|
2019-01-30 20:18:13 +00:00
|
|
|
#include <Kernel/KeyCode.h>
|
2019-02-11 13:56:23 +00:00
|
|
|
#include <LibGUI/GApplication.h>
|
2019-02-10 13:28:39 +00:00
|
|
|
#include <LibGUI/GWidget.h>
|
|
|
|
#include <LibGUI/GWindow.h>
|
2019-02-11 14:37:12 +00:00
|
|
|
#include <LibGUI/GMenuBar.h>
|
2019-02-12 13:09:48 +00:00
|
|
|
#include <LibGUI/GAction.h>
|
2019-02-12 13:35:33 +00:00
|
|
|
#include <LibGUI/GFontDatabase.h>
|
2019-04-29 17:24:18 +00:00
|
|
|
#include <LibGUI/GSlider.h>
|
2019-01-15 03:30:55 +00:00
|
|
|
|
2019-01-15 05:30:19 +00:00
|
|
|
static void make_shell(int ptm_fd)
|
|
|
|
{
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid == 0) {
|
|
|
|
const char* tty_name = ptsname(ptm_fd);
|
|
|
|
if (!tty_name) {
|
|
|
|
perror("ptsname");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
close(ptm_fd);
|
|
|
|
int pts_fd = open(tty_name, O_RDWR);
|
2019-02-12 10:25:25 +00:00
|
|
|
if (pts_fd < 0) {
|
|
|
|
perror("open");
|
2019-01-15 07:49:24 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2019-02-12 10:25:25 +00:00
|
|
|
|
|
|
|
// NOTE: It's okay if this fails.
|
|
|
|
(void) ioctl(0, TIOCNOTTY);
|
|
|
|
|
2019-01-15 05:30:19 +00:00
|
|
|
close(0);
|
|
|
|
close(1);
|
|
|
|
close(2);
|
2019-02-12 10:25:25 +00:00
|
|
|
|
|
|
|
int rc = dup2(pts_fd, 0);
|
|
|
|
if (rc < 0) {
|
|
|
|
perror("dup2");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
rc = dup2(pts_fd, 1);
|
|
|
|
if (rc < 0) {
|
|
|
|
perror("dup2");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
rc = dup2(pts_fd, 2);
|
|
|
|
if (rc < 0) {
|
|
|
|
perror("dup2");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
rc = close(pts_fd);
|
|
|
|
if (rc < 0) {
|
|
|
|
perror("close");
|
|
|
|
exit(1);
|
|
|
|
}
|
2019-01-15 07:49:24 +00:00
|
|
|
rc = ioctl(0, TIOCSCTTY);
|
|
|
|
if (rc < 0) {
|
|
|
|
perror("ioctl(TIOCSCTTY)");
|
|
|
|
exit(1);
|
|
|
|
}
|
2019-05-06 23:12:08 +00:00
|
|
|
char* args[] = { "/bin/Shell", nullptr };
|
2019-03-27 00:36:33 +00:00
|
|
|
char* envs[] = { "TERM=xterm", "PATH=/bin:/usr/bin", nullptr };
|
2019-05-06 23:12:08 +00:00
|
|
|
rc = execve("/bin/Shell", args, envs);
|
2019-01-15 05:30:19 +00:00
|
|
|
if (rc < 0) {
|
|
|
|
perror("execve");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
}
|
2019-01-15 03:30:55 +00:00
|
|
|
|
2019-02-11 13:56:23 +00:00
|
|
|
int main(int argc, char** argv)
|
2019-01-16 11:57:07 +00:00
|
|
|
{
|
2019-02-11 13:56:23 +00:00
|
|
|
GApplication app(argc, argv);
|
|
|
|
|
2019-01-16 12:36:10 +00:00
|
|
|
int ptm_fd = open("/dev/ptmx", O_RDWR);
|
|
|
|
if (ptm_fd < 0) {
|
|
|
|
perror("open(ptmx)");
|
|
|
|
return 1;
|
|
|
|
}
|
2019-01-15 05:30:19 +00:00
|
|
|
|
|
|
|
make_shell(ptm_fd);
|
|
|
|
|
2019-02-10 13:28:39 +00:00
|
|
|
auto* window = new GWindow;
|
2019-05-16 18:13:41 +00:00
|
|
|
window->set_title("Terminal");
|
2019-04-10 12:29:47 +00:00
|
|
|
window->set_background_color(Color::Black);
|
2019-03-17 03:23:54 +00:00
|
|
|
window->set_double_buffering_enabled(false);
|
2019-03-18 23:01:02 +00:00
|
|
|
window->set_should_exit_event_loop_on_close(true);
|
2019-01-15 03:30:55 +00:00
|
|
|
|
2019-05-25 23:43:15 +00:00
|
|
|
RetainPtr<CConfigFile> config = CConfigFile::get_for_app("Terminal");
|
|
|
|
Terminal terminal(ptm_fd, config);
|
2019-04-29 17:24:18 +00:00
|
|
|
window->set_has_alpha_channel(true);
|
2019-02-10 13:28:39 +00:00
|
|
|
window->set_main_widget(&terminal);
|
2019-02-11 05:09:54 +00:00
|
|
|
window->move_to(300, 300);
|
2019-02-20 23:21:23 +00:00
|
|
|
terminal.apply_size_increments_to_window(*window);
|
2019-02-10 13:28:39 +00:00
|
|
|
window->show();
|
2019-04-16 15:55:39 +00:00
|
|
|
window->set_icon_path("/res/icons/16x16/app-terminal.png");
|
2019-02-10 13:28:39 +00:00
|
|
|
|
2019-04-29 17:24:18 +00:00
|
|
|
auto* opacity_adjustment_window = new GWindow;
|
|
|
|
opacity_adjustment_window->set_title("Adjust opacity");
|
|
|
|
opacity_adjustment_window->set_rect(50, 50, 200, 100);
|
|
|
|
|
|
|
|
auto* slider = new GSlider(nullptr);
|
|
|
|
opacity_adjustment_window->set_main_widget(slider);
|
|
|
|
slider->set_fill_with_background_color(true);
|
|
|
|
slider->set_background_color(Color::LightGray);
|
|
|
|
|
|
|
|
slider->on_value_changed = [&terminal] (int value) {
|
|
|
|
float opacity = value / 100.0;
|
|
|
|
terminal.set_opacity(opacity);
|
|
|
|
};
|
|
|
|
|
|
|
|
slider->set_range(0, 100);
|
2019-05-03 19:07:16 +00:00
|
|
|
slider->set_value(100);
|
2019-04-29 17:24:18 +00:00
|
|
|
|
2019-05-25 23:43:15 +00:00
|
|
|
auto new_opacity = config->read_num_entry("Window", "Opacity", 255);
|
|
|
|
terminal.set_opacity((float)new_opacity / 255.0);
|
|
|
|
|
2019-02-11 14:37:12 +00:00
|
|
|
auto menubar = make<GMenuBar>();
|
|
|
|
|
|
|
|
auto app_menu = make<GMenu>("Terminal");
|
2019-04-29 17:24:18 +00:00
|
|
|
app_menu->add_action(GAction::create("Adjust opacity...", [opacity_adjustment_window] (const GAction&) {
|
|
|
|
opacity_adjustment_window->show();
|
|
|
|
}));
|
2019-03-03 01:52:22 +00:00
|
|
|
app_menu->add_action(GAction::create("Quit", { Mod_Alt, Key_F4 }, [] (const GAction&) {
|
2019-02-12 13:09:48 +00:00
|
|
|
dbgprintf("Terminal: Quit menu activated!\n");
|
2019-02-17 08:58:35 +00:00
|
|
|
GApplication::the().quit(0);
|
2019-02-12 13:09:48 +00:00
|
|
|
return;
|
|
|
|
}));
|
2019-02-11 14:37:12 +00:00
|
|
|
menubar->add_menu(move(app_menu));
|
|
|
|
|
2019-02-12 07:39:19 +00:00
|
|
|
auto font_menu = make<GMenu>("Font");
|
2019-03-06 13:06:40 +00:00
|
|
|
GFontDatabase::the().for_each_fixed_width_font([&] (const String& font_name) {
|
2019-02-20 01:39:46 +00:00
|
|
|
font_menu->add_action(GAction::create(font_name, [&terminal] (const GAction& action) {
|
2019-02-12 13:35:33 +00:00
|
|
|
terminal.set_font(GFontDatabase::the().get_by_name(action.text()));
|
2019-05-25 23:43:15 +00:00
|
|
|
auto metadata = GFontDatabase::the().get_metadata_by_name(action.text());
|
|
|
|
terminal.config()->write_entry("Text", "Font", metadata.path);
|
|
|
|
terminal.config()->sync();
|
2019-02-12 13:35:33 +00:00
|
|
|
terminal.force_repaint();
|
|
|
|
}));
|
|
|
|
});
|
2019-02-12 07:39:19 +00:00
|
|
|
menubar->add_menu(move(font_menu));
|
|
|
|
|
|
|
|
auto help_menu = make<GMenu>("Help");
|
2019-02-20 01:39:46 +00:00
|
|
|
help_menu->add_action(GAction::create("About", [] (const GAction&) {
|
2019-02-12 13:09:48 +00:00
|
|
|
dbgprintf("FIXME: Implement Help/About\n");
|
|
|
|
}));
|
2019-02-11 23:52:19 +00:00
|
|
|
menubar->add_menu(move(help_menu));
|
2019-02-11 14:37:12 +00:00
|
|
|
|
|
|
|
app.set_menubar(move(menubar));
|
|
|
|
|
2019-05-25 23:43:15 +00:00
|
|
|
config->sync();
|
2019-02-11 13:56:23 +00:00
|
|
|
return app.exec();
|
2019-01-15 03:30:55 +00:00
|
|
|
}
|