2020-12-20 11:22:22 +08:00
|
|
|
#include "test.h"
|
2020-12-23 18:22:17 +08:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2020-12-22 19:33:36 +08:00
|
|
|
#include "360.xpm"
|
|
|
|
#include "gtkwin.h"
|
2020-12-20 11:22:22 +08:00
|
|
|
|
|
|
|
void print(GtkWidget *widget,gpointer data){
|
2020-12-21 18:37:01 +08:00
|
|
|
char str[57];
|
2020-12-23 18:22:17 +08:00
|
|
|
freopen("config","r",stdin);
|
|
|
|
fgets(str,57,stdin);
|
2020-12-21 18:37:01 +08:00
|
|
|
g_print("%s",str);
|
|
|
|
fclose(stdin);
|
2020-12-20 11:22:22 +08:00
|
|
|
}
|
2020-12-20 22:14:40 +08:00
|
|
|
|
|
|
|
void quit(GtkWidget *widget,gpointer data){
|
|
|
|
gtk_widget_destroy((GtkWidget *)data);
|
|
|
|
}
|
2020-12-21 18:37:01 +08:00
|
|
|
|
2020-12-22 19:33:36 +08:00
|
|
|
void about_activate(GtkWidget *widget,gpointer data){
|
|
|
|
MsgBox("gtk28 by daleclack\n2020 Xe Corporation");
|
|
|
|
}
|
|
|
|
|
2020-12-21 18:37:01 +08:00
|
|
|
void config_activate(GtkWidget *widget,gpointer data){
|
|
|
|
const gchar *str;
|
2020-12-23 18:22:17 +08:00
|
|
|
int response;
|
2020-12-21 18:37:01 +08:00
|
|
|
GtkWidget *dialog=gtk_dialog_new();
|
|
|
|
GtkWindow *_dialog=GTK_WINDOW(dialog);
|
|
|
|
GtkDialog *dialog1=GTK_DIALOG(dialog);
|
|
|
|
gtk_window_set_default_size(_dialog,300,150);
|
|
|
|
gtk_window_set_position(_dialog,GTK_WIN_POS_CENTER);
|
|
|
|
gtk_window_set_title(_dialog,"Change config");
|
2020-12-23 18:22:17 +08:00
|
|
|
gtk_dialog_add_buttons(dialog1,"Cancel",GTK_RESPONSE_CANCEL,"OK",GTK_RESPONSE_OK,NULL);
|
2020-12-21 18:37:01 +08:00
|
|
|
|
|
|
|
GtkWidget *content_area=gtk_dialog_get_content_area(GTK_DIALOG(_dialog));
|
|
|
|
GtkContainer *_content_area=GTK_CONTAINER(content_area);
|
|
|
|
GtkWidget *label=gtk_label_new("Input config");
|
|
|
|
GtkWidget *entry=gtk_entry_new();
|
|
|
|
|
|
|
|
gtk_container_add(_content_area,label);
|
|
|
|
gtk_container_add(_content_area,entry);
|
|
|
|
gtk_widget_show_all(content_area);
|
2020-12-23 18:22:17 +08:00
|
|
|
response=gtk_dialog_run(dialog1);
|
|
|
|
if(response==GTK_RESPONSE_OK){
|
|
|
|
str=gtk_entry_get_text(GTK_ENTRY(entry));
|
|
|
|
freopen("config","w",stdout);
|
|
|
|
g_print(str);
|
|
|
|
fclose(stdout);
|
|
|
|
gtk_widget_destroy(dialog);
|
|
|
|
MsgBox("Config changed!\nPlease Restart the application");
|
|
|
|
}else{
|
2020-12-21 18:37:01 +08:00
|
|
|
gtk_widget_destroy(dialog);
|
2020-12-23 18:22:17 +08:00
|
|
|
}
|
2020-12-21 18:37:01 +08:00
|
|
|
}
|
2020-12-22 19:33:36 +08:00
|
|
|
|
|
|
|
void MsgBox(const gchar *msg){
|
|
|
|
GtkWidget *dialog=gtk_dialog_new();
|
|
|
|
GtkWindow *win=GTK_WINDOW(dialog);
|
|
|
|
gtk_window_set_default_size(win,300,150);
|
|
|
|
gtk_window_set_position(win,GTK_WIN_POS_CENTER);
|
|
|
|
gtk_window_set_title(win,"Change config");
|
|
|
|
gtk_dialog_add_button(GTK_DIALOG(dialog),"OK",GTK_RESPONSE_OK);
|
|
|
|
|
|
|
|
GtkWidget *content_area=gtk_dialog_get_content_area(GTK_DIALOG(dialog));
|
|
|
|
GtkContainer *_content_area=GTK_CONTAINER(content_area);
|
|
|
|
GtkWidget *label=gtk_label_new(" ");
|
|
|
|
gtk_container_add(_content_area,label);
|
|
|
|
HBox hbox;
|
|
|
|
label=gtk_label_new(" ");
|
|
|
|
Icon msg_icon;
|
|
|
|
msg_icon.get_image(_60,50,50);
|
|
|
|
hbox.pack_start(label,FALSE,FALSE,5);
|
|
|
|
hbox.pack_start(msg_icon.img1,FALSE,FALSE,5);
|
|
|
|
label=gtk_label_new(msg);
|
|
|
|
hbox.pack_start(label,FALSE,FALSE,5);
|
|
|
|
|
|
|
|
gtk_container_add(_content_area,hbox.hbox);
|
|
|
|
gtk_widget_show_all(content_area);
|
|
|
|
gtk_dialog_run(GTK_DIALOG(dialog));
|
|
|
|
gtk_widget_destroy(dialog);
|
|
|
|
}
|