2024-06-28 16:30:52 +02:00
|
|
|
#include <gtk/gtk.h>
|
2024-07-12 08:08:54 +02:00
|
|
|
#include <glib.h>
|
2024-08-09 23:02:46 +02:00
|
|
|
#include <glib/gstdio.h>
|
2024-07-12 08:08:54 +02:00
|
|
|
#include "resources.h"
|
|
|
|
|
|
|
|
// Function declarations (prototypes)
|
|
|
|
static void execute_command(const gchar *command);
|
2024-08-09 23:02:46 +02:00
|
|
|
static void show_settings_dialog(GtkWidget *widget);
|
|
|
|
static void show_about_tab(GtkWidget *box);
|
|
|
|
static void show_settings_tab(GtkWidget *box);
|
2024-07-12 08:08:54 +02:00
|
|
|
static void button_clicked(GtkWidget *widget, gpointer data);
|
|
|
|
static gboolean on_key_press(GtkWidget *widget, GdkEventKey *event, gpointer data);
|
|
|
|
static void show_confirmation_dialog(GtkWidget *widget, const gchar *label, const gchar *command);
|
|
|
|
static void create_button(GtkWidget *grid, GtkApplication *app, const gchar *label_text, const gchar *icon_name, const gchar *command, int pos);
|
2024-08-09 23:02:46 +02:00
|
|
|
static void save_configuration(const gchar *commands[]);
|
|
|
|
static void load_configuration(gchar *commands[]);
|
|
|
|
|
|
|
|
#define CONFIG_PATH g_build_filename(g_get_home_dir(), ".config/ssdd/config", NULL)
|
|
|
|
#define CONFIG_DIR g_build_filename(g_get_home_dir(), ".config/ssdd", NULL)
|
2024-06-28 16:30:52 +02:00
|
|
|
|
|
|
|
static void execute_command(const gchar *command) {
|
2024-07-12 08:08:54 +02:00
|
|
|
GError *error = NULL;
|
|
|
|
gboolean ret = g_spawn_command_line_async(command, &error);
|
|
|
|
if (!ret) {
|
2024-06-28 16:30:52 +02:00
|
|
|
GtkWidget *dialog;
|
|
|
|
dialog = gtk_message_dialog_new(NULL,
|
|
|
|
GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
|
|
GTK_MESSAGE_ERROR,
|
|
|
|
GTK_BUTTONS_CLOSE,
|
2024-07-12 08:08:54 +02:00
|
|
|
"Error executing command: %s\n%s",
|
|
|
|
command,
|
|
|
|
error->message);
|
2024-06-28 16:30:52 +02:00
|
|
|
gtk_dialog_run(GTK_DIALOG(dialog));
|
|
|
|
gtk_widget_destroy(dialog);
|
2024-07-12 08:08:54 +02:00
|
|
|
g_error_free(error);
|
2024-06-28 16:30:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-09 23:02:46 +02:00
|
|
|
static void show_settings_dialog(GtkWidget *widget) {
|
2024-06-28 16:30:52 +02:00
|
|
|
GtkWidget *dialog;
|
|
|
|
GtkWidget *content_area;
|
2024-08-09 23:02:46 +02:00
|
|
|
GtkWidget *notebook;
|
|
|
|
GtkWidget *settings_tab;
|
|
|
|
GtkWidget *about_tab;
|
|
|
|
GtkWidget *close_button;
|
|
|
|
|
|
|
|
dialog = gtk_dialog_new_with_buttons("Settings",
|
|
|
|
NULL,
|
|
|
|
GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
|
|
NULL);
|
|
|
|
content_area = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
|
|
|
|
|
|
|
|
notebook = gtk_notebook_new();
|
|
|
|
gtk_box_pack_start(GTK_BOX(content_area), notebook, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
settings_tab = gtk_box_new(GTK_ORIENTATION_VERTICAL, 10);
|
|
|
|
gtk_container_set_border_width(GTK_CONTAINER(settings_tab), 10);
|
|
|
|
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), settings_tab, gtk_label_new("Settings"));
|
|
|
|
|
|
|
|
about_tab = gtk_box_new(GTK_ORIENTATION_VERTICAL, 10);
|
|
|
|
gtk_container_set_border_width(GTK_CONTAINER(about_tab), 10);
|
|
|
|
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), about_tab, gtk_label_new("About"));
|
|
|
|
|
|
|
|
show_settings_tab(settings_tab);
|
|
|
|
show_about_tab(about_tab);
|
|
|
|
|
|
|
|
close_button = gtk_button_new_with_label("Close");
|
|
|
|
g_signal_connect_swapped(close_button, "clicked", G_CALLBACK(gtk_widget_destroy), dialog);
|
|
|
|
gtk_box_pack_start(GTK_BOX(content_area), close_button, FALSE, FALSE, 10);
|
|
|
|
|
|
|
|
gtk_widget_show_all(dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void show_settings_tab(GtkWidget *box) {
|
|
|
|
const gchar *labels[] = {
|
|
|
|
"Logout Command",
|
|
|
|
"Reboot Command",
|
|
|
|
"Shutdown Command",
|
|
|
|
"Switch User Command",
|
|
|
|
"Suspend Command",
|
|
|
|
"Hibernate Command"
|
|
|
|
};
|
|
|
|
|
|
|
|
gchar *commands[6];
|
|
|
|
load_configuration(commands);
|
|
|
|
|
|
|
|
GtkWidget *grid = gtk_grid_new();
|
|
|
|
gtk_grid_set_row_spacing(GTK_GRID(grid), 10); // Space between rows
|
|
|
|
gtk_grid_set_column_spacing(GTK_GRID(grid), 10); // Space between columns
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), grid, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
for (int i = 0; i < 6; i++) {
|
|
|
|
GtkWidget *label = gtk_label_new(labels[i]);
|
|
|
|
GtkWidget *entry = gtk_entry_new();
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(entry), commands[i]);
|
|
|
|
gtk_widget_set_hexpand(entry, TRUE); // Allow the entry to expand
|
|
|
|
gtk_widget_set_halign(label, GTK_ALIGN_END); // Align the label to the end
|
|
|
|
|
|
|
|
gtk_grid_attach(GTK_GRID(grid), label, 0, i, 1, 1);
|
|
|
|
gtk_grid_attach(GTK_GRID(grid), entry, 1, i, 1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < 6; i++) {
|
|
|
|
g_free(commands[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void show_about_tab(GtkWidget *box) {
|
2024-06-28 16:30:52 +02:00
|
|
|
GtkWidget *label;
|
2024-06-28 16:58:14 +02:00
|
|
|
GtkWidget *image;
|
2024-07-12 08:08:54 +02:00
|
|
|
const gchar *about_text =
|
2024-07-12 00:35:34 +02:00
|
|
|
"\n<b>About Simple ShutDown Dialog</b>\n\n"
|
2024-08-09 23:02:46 +02:00
|
|
|
"<b>Version:</b> 1.5\n"
|
2024-06-28 16:30:52 +02:00
|
|
|
"<b>Author:</b> kekePower\n"
|
2024-08-09 23:02:46 +02:00
|
|
|
"<b>URL: </b><a href=\"https://git.kekepower.com/kekePower/ssdd\">https://git.kekepower.com/kekePower/ssdd</a>\n"
|
|
|
|
"<b>Description:</b> This is a Simple ShutDown Dialog for Openbox.\n";
|
2024-06-28 16:58:14 +02:00
|
|
|
|
2024-07-04 08:11:08 +02:00
|
|
|
image = gtk_image_new_from_resource("/org/gtk/ssdd/ssdd-icon.png");
|
2024-08-09 23:02:46 +02:00
|
|
|
gtk_image_set_pixel_size(GTK_IMAGE(image), 250);
|
2024-06-28 16:58:14 +02:00
|
|
|
gtk_box_pack_start(GTK_BOX(box), image, FALSE, FALSE, 0);
|
|
|
|
|
2024-06-28 16:30:52 +02:00
|
|
|
label = gtk_label_new(NULL);
|
|
|
|
gtk_label_set_markup(GTK_LABEL(label), about_text);
|
|
|
|
gtk_label_set_selectable(GTK_LABEL(label), TRUE);
|
|
|
|
gtk_widget_set_halign(label, GTK_ALIGN_START);
|
|
|
|
gtk_widget_set_valign(label, GTK_ALIGN_START);
|
2024-06-28 16:58:14 +02:00
|
|
|
gtk_box_pack_start(GTK_BOX(box), label, TRUE, TRUE, 0);
|
2024-06-28 16:30:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void button_clicked(GtkWidget *widget, gpointer data) {
|
2024-07-12 08:08:54 +02:00
|
|
|
const gchar *command = (const gchar *)data;
|
|
|
|
const gchar *label = g_object_get_data(G_OBJECT(widget), "label");
|
2024-07-01 22:29:12 +02:00
|
|
|
|
2024-06-28 16:30:52 +02:00
|
|
|
if (g_strcmp0(command, "exit") == 0) {
|
|
|
|
g_application_quit(G_APPLICATION(g_object_get_data(G_OBJECT(widget), "app")));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-08-09 23:02:46 +02:00
|
|
|
if (g_strcmp0(command, "settings") == 0) {
|
|
|
|
show_settings_dialog(widget);
|
2024-06-28 16:30:52 +02:00
|
|
|
} else {
|
2024-07-12 08:08:54 +02:00
|
|
|
GtkWidget *window = gtk_widget_get_toplevel(widget);
|
|
|
|
show_confirmation_dialog(window, label, command);
|
2024-06-30 12:00:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean on_key_press(GtkWidget *widget, GdkEventKey *event, gpointer data) {
|
|
|
|
if (event->keyval == GDK_KEY_Escape) {
|
|
|
|
g_application_quit(G_APPLICATION(data));
|
2024-07-12 08:08:54 +02:00
|
|
|
return TRUE; // Event handled
|
|
|
|
}
|
|
|
|
return FALSE; // Event not handled
|
|
|
|
}
|
|
|
|
|
|
|
|
static void show_confirmation_dialog(GtkWidget *parent_window, const gchar *label, const gchar *command) {
|
|
|
|
GtkWidget *dialog;
|
|
|
|
gint response;
|
|
|
|
|
|
|
|
gchar *message = g_strdup_printf("Are you sure you want to %s?", label);
|
|
|
|
|
|
|
|
dialog = gtk_dialog_new();
|
|
|
|
gtk_window_set_title(GTK_WINDOW(dialog), "Confirmation");
|
|
|
|
|
|
|
|
gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(parent_window));
|
|
|
|
|
|
|
|
gtk_window_set_modal(GTK_WINDOW(dialog), TRUE);
|
|
|
|
gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
|
|
|
|
|
|
|
|
GtkWidget *content_area = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
|
|
|
|
GtkWidget *box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 10);
|
|
|
|
gtk_container_add(GTK_CONTAINER(content_area), box);
|
|
|
|
|
|
|
|
GtkWidget *image = gtk_image_new_from_icon_name("dialog-warning", GTK_ICON_SIZE_DIALOG);
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), image, FALSE, FALSE, 0);
|
|
|
|
|
|
|
|
GtkWidget *label_widget = gtk_label_new(message);
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), label_widget, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
gtk_dialog_add_buttons(GTK_DIALOG(dialog),
|
|
|
|
"Yes", GTK_RESPONSE_YES,
|
|
|
|
"No", GTK_RESPONSE_NO,
|
2024-08-09 23:02:46 +02:00
|
|
|
NULL);
|
2024-07-12 08:08:54 +02:00
|
|
|
|
2024-08-09 23:02:46 +02:00
|
|
|
GtkWidget *button_box = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
|
|
|
|
gtk_box_set_spacing(GTK_BOX(button_box), 10);
|
2024-07-12 08:08:54 +02:00
|
|
|
gtk_widget_set_margin_top(button_box, 10);
|
|
|
|
|
2024-08-09 23:02:46 +02:00
|
|
|
gtk_widget_show_all(dialog);
|
2024-07-12 08:08:54 +02:00
|
|
|
|
|
|
|
response = gtk_dialog_run(GTK_DIALOG(dialog));
|
|
|
|
gtk_widget_destroy(dialog);
|
|
|
|
g_free(message);
|
|
|
|
|
|
|
|
if (response == GTK_RESPONSE_YES) {
|
|
|
|
execute_command(command);
|
2024-06-28 16:30:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-01 22:29:12 +02:00
|
|
|
static void create_button(GtkWidget *grid, GtkApplication *app, const gchar *label_text, const gchar *icon_name, const gchar *command, int pos) {
|
2024-06-28 16:30:52 +02:00
|
|
|
GtkWidget *button;
|
|
|
|
GtkWidget *box;
|
2024-07-01 22:29:12 +02:00
|
|
|
GtkWidget *image;
|
2024-06-28 16:30:52 +02:00
|
|
|
GtkWidget *label;
|
2024-07-01 22:29:12 +02:00
|
|
|
|
|
|
|
button = gtk_button_new();
|
2024-08-09 23:02:46 +02:00
|
|
|
box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 10);
|
2024-07-01 22:29:12 +02:00
|
|
|
gtk_container_add(GTK_CONTAINER(button), box);
|
|
|
|
|
|
|
|
image = gtk_image_new_from_icon_name(icon_name, GTK_ICON_SIZE_BUTTON);
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), image, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
label = gtk_label_new(label_text);
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), label, TRUE, TRUE, 0);
|
2024-07-28 01:09:48 +02:00
|
|
|
|
|
|
|
gtk_widget_set_margin_top(box, 5);
|
|
|
|
gtk_widget_set_margin_bottom(box, 5);
|
|
|
|
gtk_widget_set_margin_start(box, 5);
|
|
|
|
gtk_widget_set_margin_end(box, 5);
|
2024-07-01 22:29:12 +02:00
|
|
|
|
|
|
|
g_object_set_data(G_OBJECT(button), "app", app);
|
2024-08-09 23:02:46 +02:00
|
|
|
g_object_set_data(G_OBJECT(button), "label", (gpointer)label_text);
|
|
|
|
g_signal_connect(button, "clicked", G_CALLBACK(button_clicked), (gpointer)command);
|
2024-07-01 22:29:12 +02:00
|
|
|
gtk_grid_attach(GTK_GRID(grid), button, pos % 4, pos / 4, 1, 1);
|
|
|
|
}
|
|
|
|
|
2024-08-09 23:02:46 +02:00
|
|
|
static void save_configuration(const gchar *commands[]) {
|
|
|
|
GError *error = NULL;
|
|
|
|
g_mkdir_with_parents(CONFIG_DIR, 0755);
|
|
|
|
|
|
|
|
gchar *config_data = g_strjoinv("\n", (gchar **)commands);
|
|
|
|
g_file_set_contents(CONFIG_PATH, config_data, -1, &error);
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
g_warning("Failed to save configuration: %s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(config_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void load_configuration(gchar *commands[]) {
|
|
|
|
GError *error = NULL;
|
|
|
|
gchar *config_data = NULL;
|
|
|
|
|
|
|
|
g_mkdir_with_parents(CONFIG_DIR, 0755);
|
|
|
|
|
|
|
|
if (!g_file_test(CONFIG_PATH, G_FILE_TEST_EXISTS)) {
|
|
|
|
const gchar *default_commands[] = {
|
|
|
|
"openbox --exit",
|
|
|
|
"systemctl reboot",
|
|
|
|
"systemctl poweroff",
|
|
|
|
"dm-tool switch-to-greeter",
|
|
|
|
"systemctl suspend",
|
|
|
|
"systemctl hibernate"
|
|
|
|
};
|
|
|
|
save_configuration(default_commands);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_file_get_contents(CONFIG_PATH, &config_data, NULL, &error);
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
g_warning("Failed to load configuration: %s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar **lines = g_strsplit(config_data, "\n", 6);
|
|
|
|
for (int i = 0; i < 6; i++) {
|
|
|
|
commands[i] = g_strdup(lines[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev(lines);
|
|
|
|
g_free(config_data);
|
|
|
|
}
|
|
|
|
|
2024-07-01 22:29:12 +02:00
|
|
|
static void activate(GtkApplication *app, gpointer user_data) {
|
|
|
|
GtkWidget *window;
|
|
|
|
GtkWidget *grid;
|
2024-08-09 23:02:46 +02:00
|
|
|
gchar *commands[6];
|
|
|
|
load_configuration(commands);
|
|
|
|
|
2024-06-28 16:30:52 +02:00
|
|
|
const gchar *icons[] = {
|
|
|
|
"system-log-out",
|
|
|
|
"view-refresh",
|
|
|
|
"system-shutdown",
|
|
|
|
"system-users",
|
|
|
|
"media-playback-pause",
|
|
|
|
"media-playback-stop",
|
2024-08-09 23:02:46 +02:00
|
|
|
"preferences-system",
|
2024-06-28 16:30:52 +02:00
|
|
|
"application-exit"
|
|
|
|
};
|
2024-08-09 23:02:46 +02:00
|
|
|
const gchar *labels[] = {
|
2024-06-28 16:30:52 +02:00
|
|
|
"Logout",
|
|
|
|
"Reboot",
|
|
|
|
"Shutdown",
|
|
|
|
"Switch User",
|
|
|
|
"Suspend",
|
|
|
|
"Hibernate",
|
2024-08-09 23:02:46 +02:00
|
|
|
"Settings",
|
2024-06-28 16:30:52 +02:00
|
|
|
"Exit"
|
|
|
|
};
|
|
|
|
|
|
|
|
window = gtk_application_window_new(app);
|
2024-07-12 00:37:57 +02:00
|
|
|
gtk_window_set_title(GTK_WINDOW(window), "Simple ShutDown Dialog");
|
2024-06-28 16:30:52 +02:00
|
|
|
gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
|
|
|
|
|
2024-07-12 08:08:54 +02:00
|
|
|
GError *error = NULL;
|
|
|
|
GdkPixbuf *icon_pixbuf = gdk_pixbuf_new_from_resource("/org/gtk/ssdd/ssdd-icon.png", &error);
|
|
|
|
if (icon_pixbuf) {
|
|
|
|
gtk_window_set_icon(GTK_WINDOW(window), icon_pixbuf);
|
2024-08-09 23:02:46 +02:00
|
|
|
g_object_unref(icon_pixbuf);
|
2024-07-12 08:08:54 +02:00
|
|
|
} else {
|
|
|
|
g_warning("Failed to load icon: %s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
}
|
2024-06-30 12:00:29 +02:00
|
|
|
|
|
|
|
g_signal_connect(window, "key-press-event", G_CALLBACK(on_key_press), app);
|
2024-06-28 16:58:14 +02:00
|
|
|
|
2024-06-28 16:30:52 +02:00
|
|
|
grid = gtk_grid_new();
|
2024-08-09 23:02:46 +02:00
|
|
|
gtk_grid_set_row_spacing(GTK_GRID(grid), 0);
|
|
|
|
gtk_grid_set_column_spacing(GTK_GRID(grid), 0);
|
2024-06-28 16:30:52 +02:00
|
|
|
gtk_container_add(GTK_CONTAINER(window), grid);
|
|
|
|
|
2024-08-09 23:02:46 +02:00
|
|
|
for (int i = 0; i < 6; i++) {
|
|
|
|
create_button(grid, app, labels[i], icons[i], commands[i], i);
|
|
|
|
g_free(commands[i]); // Free the memory allocated for commands
|
2024-06-28 16:30:52 +02:00
|
|
|
}
|
2024-08-09 23:02:46 +02:00
|
|
|
create_button(grid, app, labels[6], icons[6], "settings", 6);
|
|
|
|
create_button(grid, app, labels[7], icons[7], "exit", 7);
|
2024-06-28 16:30:52 +02:00
|
|
|
|
|
|
|
gtk_widget_show_all(window);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
GtkApplication *app;
|
|
|
|
int status;
|
|
|
|
|
2024-06-30 12:00:29 +02:00
|
|
|
g_resources_register(resources_get_resource());
|
|
|
|
|
2024-07-04 08:11:08 +02:00
|
|
|
app = gtk_application_new("org.gtk.ssdd", G_APPLICATION_DEFAULT_FLAGS);
|
2024-06-28 16:30:52 +02:00
|
|
|
g_signal_connect(app, "activate", G_CALLBACK(activate), NULL);
|
|
|
|
status = g_application_run(G_APPLICATION(app), argc, argv);
|
|
|
|
g_object_unref(app);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|