2019-02-09 11:22:04 +03:00
|
|
|
#include <LibGUI/GWindow.h>
|
|
|
|
#include <LibGUI/GWidget.h>
|
2019-02-10 13:07:13 +03:00
|
|
|
#include <LibGUI/GBoxLayout.h>
|
2019-02-11 16:56:23 +03:00
|
|
|
#include <LibGUI/GApplication.h>
|
2019-02-10 13:07:13 +03:00
|
|
|
#include <LibGUI/GStatusBar.h>
|
2019-03-20 20:12:56 +03:00
|
|
|
#include <LibGUI/GTextEditor.h>
|
2019-02-20 04:39:46 +03:00
|
|
|
#include <LibGUI/GToolBar.h>
|
2019-02-14 10:52:12 +03:00
|
|
|
#include <LibGUI/GMenuBar.h>
|
|
|
|
#include <LibGUI/GAction.h>
|
2019-03-21 00:01:02 +03:00
|
|
|
#include <LibGUI/GLabel.h>
|
2019-03-21 00:31:21 +03:00
|
|
|
#include <LibGUI/GInputBox.h>
|
|
|
|
#include <LibGUI/GMessageBox.h>
|
2019-02-09 11:22:04 +03:00
|
|
|
#include <unistd.h>
|
2019-03-01 17:47:07 +03:00
|
|
|
#include <signal.h>
|
2019-02-09 11:22:04 +03:00
|
|
|
#include <stdio.h>
|
2019-03-01 15:54:28 +03:00
|
|
|
#include "DirectoryTableView.h"
|
2019-02-09 11:22:04 +03:00
|
|
|
|
2019-02-11 16:56:23 +03:00
|
|
|
int main(int argc, char** argv)
|
2019-02-09 11:22:04 +03:00
|
|
|
{
|
2019-03-01 17:47:07 +03:00
|
|
|
struct sigaction act;
|
|
|
|
memset(&act, 0, sizeof(act));
|
|
|
|
act.sa_flags = SA_NOCLDWAIT;
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
int rc = sigaction(SIGCHLD, &act, nullptr);
|
|
|
|
if (rc < 0) {
|
|
|
|
perror("sigaction");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-02-11 16:56:23 +03:00
|
|
|
GApplication app(argc, argv);
|
2019-02-09 11:22:04 +03:00
|
|
|
|
2019-03-02 11:16:57 +03:00
|
|
|
auto* window = new GWindow;
|
|
|
|
window->set_title("FileManager");
|
|
|
|
window->set_rect(20, 200, 640, 480);
|
2019-03-19 02:01:02 +03:00
|
|
|
window->set_should_exit_event_loop_on_close(true);
|
2019-03-02 11:16:57 +03:00
|
|
|
|
|
|
|
auto* widget = new GWidget;
|
|
|
|
widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
|
|
|
|
|
2019-03-03 02:34:40 +03:00
|
|
|
auto* main_toolbar = new GToolBar(widget);
|
|
|
|
auto* location_toolbar = new GToolBar(widget);
|
2019-03-21 00:01:02 +03:00
|
|
|
location_toolbar->layout()->set_margins({ 8, 3, 8, 3 });
|
2019-03-20 20:12:56 +03:00
|
|
|
location_toolbar->set_preferred_size({ 0, 21 });
|
2019-03-21 00:01:02 +03:00
|
|
|
|
|
|
|
auto* location_label = new GLabel("Location: ", location_toolbar);
|
|
|
|
location_label->size_to_fit();
|
|
|
|
|
2019-03-20 20:12:56 +03:00
|
|
|
auto* location_textbox = new GTextEditor(GTextEditor::SingleLine, location_toolbar);
|
2019-03-03 02:34:40 +03:00
|
|
|
|
2019-03-02 11:16:57 +03:00
|
|
|
auto* directory_table_view = new DirectoryTableView(widget);
|
|
|
|
auto* statusbar = new GStatusBar(widget);
|
|
|
|
|
2019-03-20 20:12:56 +03:00
|
|
|
location_textbox->on_return_pressed = [directory_table_view] (auto& editor) {
|
|
|
|
directory_table_view->open(editor.text());
|
2019-03-03 02:34:40 +03:00
|
|
|
};
|
|
|
|
|
2019-03-22 02:19:53 +03:00
|
|
|
auto open_parent_directory_action = GAction::create("Open parent directory", { Mod_Alt, Key_Up }, GraphicsBitmap::load_from_file("/res/icons/parentdirectory16.png"), [directory_table_view] (const GAction&) {
|
2019-03-02 11:16:57 +03:00
|
|
|
directory_table_view->open_parent_directory();
|
2019-03-02 04:20:11 +03:00
|
|
|
});
|
|
|
|
|
2019-03-22 02:19:53 +03:00
|
|
|
auto mkdir_action = GAction::create("New directory...", GraphicsBitmap::load_from_file("/res/icons/16x16/mkdir.png"), [&] (const GAction&) {
|
2019-03-21 00:31:21 +03:00
|
|
|
GInputBox input_box("Enter name:", "New directory", window);
|
|
|
|
if (input_box.exec() == GInputBox::ExecOK && !input_box.text_value().is_empty()) {
|
|
|
|
auto new_dir_path = String::format("%s/%s",
|
|
|
|
directory_table_view->path().characters(),
|
|
|
|
input_box.text_value().characters()
|
|
|
|
);
|
|
|
|
int rc = mkdir(new_dir_path.characters(), 0777);
|
|
|
|
if (rc < 0) {
|
|
|
|
GMessageBox message_box(String::format("mkdir() failed: %s", strerror(errno)), "Error", window);
|
|
|
|
message_box.exec();
|
|
|
|
} else {
|
|
|
|
directory_table_view->refresh();
|
|
|
|
}
|
|
|
|
}
|
2019-02-20 04:39:46 +03:00
|
|
|
});
|
|
|
|
|
2019-03-22 02:19:53 +03:00
|
|
|
auto copy_action = GAction::create("Copy", GraphicsBitmap::load_from_file("/res/icons/copyfile16.png"), [] (const GAction&) {
|
2019-02-20 04:39:46 +03:00
|
|
|
dbgprintf("'Copy' action activated!\n");
|
|
|
|
});
|
|
|
|
|
2019-03-22 02:19:53 +03:00
|
|
|
auto delete_action = GAction::create("Delete", GraphicsBitmap::load_from_file("/res/icons/16x16/delete.png"), [] (const GAction&) {
|
2019-02-20 04:39:46 +03:00
|
|
|
dbgprintf("'Delete' action activated!\n");
|
|
|
|
});
|
|
|
|
|
2019-02-14 10:52:12 +03:00
|
|
|
auto menubar = make<GMenuBar>();
|
|
|
|
|
|
|
|
auto app_menu = make<GMenu>("FileManager");
|
2019-03-03 04:52:22 +03:00
|
|
|
app_menu->add_action(GAction::create("Quit", { Mod_Alt, Key_F4 }, [] (const GAction&) {
|
2019-02-17 11:58:35 +03:00
|
|
|
GApplication::the().quit(0);
|
2019-02-14 10:52:12 +03:00
|
|
|
return;
|
|
|
|
}));
|
|
|
|
menubar->add_menu(move(app_menu));
|
|
|
|
|
|
|
|
auto file_menu = make<GMenu>("File");
|
2019-03-02 04:20:11 +03:00
|
|
|
file_menu->add_action(open_parent_directory_action.copy_ref());
|
2019-02-20 04:39:46 +03:00
|
|
|
file_menu->add_action(mkdir_action.copy_ref());
|
|
|
|
file_menu->add_action(copy_action.copy_ref());
|
|
|
|
file_menu->add_action(delete_action.copy_ref());
|
2019-02-14 10:52:12 +03:00
|
|
|
menubar->add_menu(move(file_menu));
|
|
|
|
|
|
|
|
auto help_menu = make<GMenu>("Help");
|
2019-02-20 04:39:46 +03:00
|
|
|
help_menu->add_action(GAction::create("About", [] (const GAction&) {
|
2019-02-14 10:52:12 +03:00
|
|
|
dbgprintf("FIXME: Implement Help/About\n");
|
|
|
|
}));
|
|
|
|
menubar->add_menu(move(help_menu));
|
|
|
|
|
|
|
|
app.set_menubar(move(menubar));
|
|
|
|
|
2019-03-03 02:34:40 +03:00
|
|
|
main_toolbar->add_action(open_parent_directory_action.copy_ref());
|
|
|
|
main_toolbar->add_action(mkdir_action.copy_ref());
|
|
|
|
main_toolbar->add_action(copy_action.copy_ref());
|
|
|
|
main_toolbar->add_action(delete_action.copy_ref());
|
2019-02-20 04:39:46 +03:00
|
|
|
|
2019-03-03 02:34:40 +03:00
|
|
|
directory_table_view->on_path_change = [window, location_textbox] (const String& new_path) {
|
2019-02-09 11:22:04 +03:00
|
|
|
window->set_title(String::format("FileManager: %s", new_path.characters()));
|
2019-03-03 02:34:40 +03:00
|
|
|
location_textbox->set_text(new_path);
|
2019-02-09 11:22:04 +03:00
|
|
|
};
|
|
|
|
|
2019-03-01 15:54:28 +03:00
|
|
|
directory_table_view->on_status_message = [statusbar] (String message) {
|
2019-02-10 13:07:13 +03:00
|
|
|
statusbar->set_text(move(message));
|
|
|
|
};
|
|
|
|
|
2019-03-01 15:54:28 +03:00
|
|
|
directory_table_view->open("/");
|
|
|
|
directory_table_view->set_focus(true);
|
2019-02-09 11:22:04 +03:00
|
|
|
|
2019-03-02 11:16:57 +03:00
|
|
|
window->set_main_widget(widget);
|
2019-02-20 04:39:46 +03:00
|
|
|
window->show();
|
2019-02-09 11:22:04 +03:00
|
|
|
|
2019-02-20 04:39:46 +03:00
|
|
|
return app.exec();
|
|
|
|
}
|