2024-04-27 16:16:21 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <gtk-4.0/gtk/gtk.h>
|
2024-04-29 23:43:04 +02:00
|
|
|
#include "hot.h"
|
|
|
|
#include "warm.h"
|
|
|
|
#include "cold.h"
|
|
|
|
|
|
|
|
GtkWidget *get_space_page_new(){
|
|
|
|
GtkWidget * space_grid = gtk_grid_new();
|
|
|
|
gtk_grid_attach (GTK_GRID(space_grid), gtk_button_new_with_label ("Hi babe...here am I !"), 0, 0, 1, 1);
|
|
|
|
return space_grid;
|
|
|
|
}
|
|
|
|
|
2024-04-27 16:16:21 +02:00
|
|
|
|