GTK4_GG_hack/warm.c

16 lines
580 B
C

#pragma once
#include <unistd.h>
#include <stdio.h>
#include <gtk-4.0/gtk/gtk.h>
button_0 = gtk_button_new_with_label ("Quit");
GtkWidget *button_1 = gtk_button_new_with_label ("I");
GtkWidget *button_2 = gtk_button_new_with_label ("II");
GtkWidget *button_3 = gtk_button_new_with_label ("III");
GtkWidget *button_4 = gtk_button_new_with_label ("IV");
GtkWidget *button_5 = gtk_button_new_with_label ("V");
// GtkToggleButton *tb1 = GTK_TOGGLE_BUTTON (gtk_button_new_with_label ("tb1"));
void print_text(char *text) {printf("in warm.c : %s\n", text);}