20 lines
539 B
C
20 lines
539 B
C
#include <stdio.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
void print_text(GtkWidget *widget, gpointer data);
|
|
|
|
void click_print_do (GtkWindow *window, GtkWidget *grid,
|
|
char *label, char *text, int x, int y, int w, int h);
|
|
|
|
void window_bar(GtkWindow *window, char *title);
|
|
|
|
void activate (GtkApplication *app, gpointer user_data);
|
|
|
|
GtkWidget *get_space_page_new();
|
|
GtkWidget *get_rules_page_new();
|
|
GtkWidget *get_measures_page_new();
|
|
GtkWidget *get_results_page_new();
|
|
GtkWidget *get_discuss_page_new();
|
|
GtkWidget *get_help_page_new();
|
|
|