|
|
|
@ -457,6 +457,7 @@ domain_info_window *yon_information_window_new(){
|
|
|
|
|
|
|
|
|
|
|
|
domain_info_window *window = malloc(sizeof(domain_info_window));
|
|
|
|
domain_info_window *window = malloc(sizeof(domain_info_window));
|
|
|
|
window->Window = yon_gtk_builder_get_widget(builder,"MainWindow");
|
|
|
|
window->Window = yon_gtk_builder_get_widget(builder,"MainWindow");
|
|
|
|
|
|
|
|
window->StatusBox = yon_gtk_builder_get_widget(builder,"StatusBox");
|
|
|
|
window->HeadLabel = yon_gtk_builder_get_widget(builder,"HeadLabel");
|
|
|
|
window->HeadLabel = yon_gtk_builder_get_widget(builder,"HeadLabel");
|
|
|
|
window->ExecuteTerminal = yon_gtk_builder_get_widget(builder,"ExecuteTerminal");
|
|
|
|
window->ExecuteTerminal = yon_gtk_builder_get_widget(builder,"ExecuteTerminal");
|
|
|
|
window->TerminalScroll = yon_gtk_builder_get_widget(builder,"TerminalScroll");
|
|
|
|
window->TerminalScroll = yon_gtk_builder_get_widget(builder,"TerminalScroll");
|
|
|
|
@ -504,7 +505,7 @@ void on_status_clicked(GtkWidget *self, connection_window *window){
|
|
|
|
domain_info_window *dialog = yon_information_window_new();
|
|
|
|
domain_info_window *dialog = yon_information_window_new();
|
|
|
|
char *target = (char*)gtk_entry_get_text(GTK_ENTRY(window->AdressEntry));
|
|
|
|
char *target = (char*)gtk_entry_get_text(GTK_ENTRY(window->AdressEntry));
|
|
|
|
if (!yon_char_is_empty(target)){
|
|
|
|
if (!yon_char_is_empty(target)){
|
|
|
|
|
|
|
|
yon_ubl_status_box_spawn(GTK_CONTAINER(dialog->StatusBox),LOADING_LABEL,10,BACKGROUND_IMAGE_INFO_TYPE);
|
|
|
|
yon_debug_output(domain_info(target));
|
|
|
|
yon_debug_output(domain_info(target));
|
|
|
|
int size_;
|
|
|
|
int size_;
|
|
|
|
yon_terminal_integrated_start(dialog->ExecuteTerminal,domain_info(target),NULL,NULL);
|
|
|
|
yon_terminal_integrated_start(dialog->ExecuteTerminal,domain_info(target),NULL,NULL);
|
|
|
|
@ -515,6 +516,7 @@ void on_status_clicked(GtkWidget *self, connection_window *window){
|
|
|
|
|
|
|
|
|
|
|
|
void on_find_domains_clicked(GtkWidget *self, connection_window *window){
|
|
|
|
void on_find_domains_clicked(GtkWidget *self, connection_window *window){
|
|
|
|
domain_info_window *dialog = yon_information_window_new();
|
|
|
|
domain_info_window *dialog = yon_information_window_new();
|
|
|
|
|
|
|
|
yon_ubl_status_box_spawn(GTK_CONTAINER(dialog->StatusBox),LOADING_LABEL,10,BACKGROUND_IMAGE_INFO_TYPE);
|
|
|
|
yon_debug_output(domains_seek_command);
|
|
|
|
yon_debug_output(domains_seek_command);
|
|
|
|
int size_;
|
|
|
|
int size_;
|
|
|
|
yon_terminal_integrated_start(dialog->ExecuteTerminal,domains_seek_command,NULL,NULL);
|
|
|
|
yon_terminal_integrated_start(dialog->ExecuteTerminal,domains_seek_command,NULL,NULL);
|
|
|
|
|