This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbondiLinux.c
168 lines (140 loc) · 5.66 KB
/
bondiLinux.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#include <gtk/gtk.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h> // For the exec family of functions
#include <sys/types.h>
#include <sys/wait.h>
#define MAX_APPS 100
#define MAX_NAME_LENGTH 50
#define MAX_COMMAND_LENGTH 100
#define VERSION 8
#define CONFIG_FILE "config.conf"
typedef struct {
char name[MAX_NAME_LENGTH];
char command[MAX_COMMAND_LENGTH];
} App;
App apps[MAX_APPS];
int numApps = 0;
GtkWidget *grid = NULL; // Declare grid as a global variable and initialize it to NULL
void readConfigFile(); // Declare functions to fix the order
void launchApp(int appIndex, GtkWindow *parentWindow);
static void launch_selected_app(GtkWidget *widget, gpointer data);
static void activate(GtkApplication *app, gpointer user_data);
static gboolean on_controller_button_pressed(GtkWidget *widget, GdkEventButton *event, gpointer user_data);
void readConfigFile() {
FILE *file = fopen(CONFIG_FILE, "r");
if (file == NULL) {
perror("Error opening config file");
exit(EXIT_FAILURE);
}
while (fscanf(file, "%49[^:]:%99s", apps[numApps].name, apps[numApps].command) == 2) {
GtkWidget *button = gtk_button_new_with_label(apps[numApps].name); // Use app name as button label
g_signal_connect(button, "clicked", G_CALLBACK(launch_selected_app), GINT_TO_POINTER(numApps));
gtk_grid_attach(GTK_GRID(grid), button, 0, numApps, 1, 1);
numApps++;
if (numApps >= MAX_APPS) {
fprintf(stderr, "Too many applications in config file\n");
break;
}
}
fclose(file);
}
void launchApp(int appIndex, GtkWindow *parentWindow) {
pid_t pid = fork();
if (pid == -1) {
perror("fork");
exit(EXIT_FAILURE);
}
if (pid == 0) {
// Child process
if (execlp("/bin/sh", "sh", "-c", apps[appIndex].command, NULL) == -1) {
perror("execlp");
exit(EXIT_FAILURE);
}
} else {
// Parent process
int status;
waitpid(pid, &status, 0);
printf("Application has exited with status: %d\n", status);
// Bring back Bondi window to focus
gtk_window_present(parentWindow);
}
}
static void launch_selected_app(GtkWidget *widget, gpointer data) {
int appIndex = GPOINTER_TO_INT(data);
GtkWindow *parentWindow = GTK_WINDOW(gtk_widget_get_toplevel(widget));
// Minimize the parent window (Bondi window)
gtk_window_iconify(parentWindow);
// Launch the selected application
launchApp(appIndex, parentWindow);
}
static void activate(GtkApplication *app, gpointer user_data) {
GtkWidget *window;
GtkWidget *box;
GtkWidget *label;
GtkCssProvider *provider;
GdkDisplay *display;
GdkScreen *screen;
// Create a new window
window = gtk_application_window_new(app);
gtk_window_set_title(GTK_WINDOW(window), "Bondi - Big Picture Mode");
gtk_window_set_default_size(GTK_WINDOW(window), 1280, 720); // Set window size to match Big Picture Mode
gtk_window_fullscreen(GTK_WINDOW(window)); // Set the window to full-screen mode
// Load CSS provider for styling
provider = gtk_css_provider_new();
gtk_css_provider_load_from_data(provider,
"button {\n"
" background-color: #2C313A;\n"
" color: #FFFFFF;\n"
" border: none;\n"
" border-radius: 5px;\n"
" padding: 20px;\n"
" margin: 10px;\n"
"}\n"
"button:hover {\n"
" background-color: #3F4854;\n"
"}\n"
"label {\n"
" font-size: 24px;\n"
" color: #FFFFFF;\n"
"}\n",
-1,
NULL);
// Apply CSS provider to the window
display = gdk_display_get_default();
screen = gdk_display_get_default_screen(display);
gtk_style_context_add_provider_for_screen(screen, GTK_STYLE_PROVIDER(provider), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
// Create a vertical box layout
box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
gtk_container_add(GTK_CONTAINER(window), box);
// Create a label for the title
char title[50];
sprintf(title, "Bondi CV%d", VERSION);
label = gtk_label_new(title);
gtk_widget_set_name(label, "title");
gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 20);
// Create a grid layout
grid = gtk_grid_new();
gtk_container_add(GTK_CONTAINER(box), grid);
// Read configuration file and create buttons
readConfigFile();
gtk_widget_show_all(window);
// Connect controller button press event
g_signal_connect(window, "button-press-event", G_CALLBACK(on_controller_button_pressed), NULL);
}
// Function to handle controller input events
static gboolean on_controller_button_pressed(GtkWidget *widget, GdkEventButton *event, gpointer user_data) {
// Handle controller button press event here
printf("Controller button pressed\n");
return TRUE;
}
int main(int argc, char **argv) {
GtkApplication *app;
int status;
app = gtk_application_new("org.example.bondi", G_APPLICATION_DEFAULT_FLAGS);
g_signal_connect(app, "activate", G_CALLBACK(activate), NULL);
status = g_application_run(G_APPLICATION(app), argc, argv);
g_object_unref(app);
return status;
}