14 lines
310 B
C
14 lines
310 B
C
#include <stdio.h>
|
|
#include <gtk-4.0/gtk/gtk.h>
|
|
#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;
|
|
}
|
|
|
|
|