2024-04-27 08:46:17 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <gtk-4.0/gtk/gtk.h>
|
2024-05-08 07:50:04 +02:00
|
|
|
|
2024-04-29 06:03:00 +02:00
|
|
|
#include "cold.h"
|
2024-05-07 20:48:01 +02:00
|
|
|
#include "widgets.h"
|
|
|
|
#include "pages.h"
|
2024-05-08 23:43:23 +02:00
|
|
|
#include "texts.h"
|
2024-04-27 08:46:17 +02:00
|
|
|
|
2024-05-01 11:01:50 +02:00
|
|
|
// https://docs.gtk.org/gtk4/visual_index.html < widgets gallery
|
2024-04-29 23:43:04 +02:00
|
|
|
|
2024-05-08 23:43:23 +02:00
|
|
|
GtkFrame *get_frame_with_label(){ // EN ATTENDANT DE SAVOIR UTILISER : GtkTextTagTable et GtkTextBuffer
|
|
|
|
GtkFrame *space_specif = GTK_FRAME(gtk_frame_new ("Space (run / edit) specifications"));
|
|
|
|
GtkWidget *any_Label = GTK_WIDGET (gtk_label_new (get_space_run_edit_specif()));
|
|
|
|
gtk_frame_set_child (GTK_FRAME (space_specif), GTK_WIDGET (any_Label));
|
|
|
|
return space_specif;
|
|
|
|
}
|
|
|
|
|
|
|
|
//GtkFrame *space_specif = gtk_frame_new (char* const "Space (run / edit) specifications");
|
|
|
|
|
|
|
|
GtkWidget *get_text_view(){ // WTF ?!& @Grr #~! https://docs.gtk.org/gtk4/section-text-widget.html
|
|
|
|
GtkWidget *my_view = gtk_text_view_new ();
|
|
|
|
GtkTextTagTable *my_table = gtk_text_tag_table_new ();
|
|
|
|
GtkTextBuffer *my_buffer = gtk_text_buffer_new (my_table);
|
|
|
|
|
|
|
|
gtk_text_buffer_set_text (my_buffer, "Hello, this is some text", -1);
|
|
|
|
gtk_text_view_set_buffer (GTK_TEXT_VIEW (my_view), my_buffer);
|
|
|
|
|
|
|
|
/* Now you might put the view in a container and display it on the
|
|
|
|
* screen; when the user edits the text, signals on the buffer
|
|
|
|
* will be emitted, such as "changed", "insert_text", and so on.
|
|
|
|
*/
|
|
|
|
return my_view;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
GtkScrolledWindow *get_scrolled_gl_area(){
|
|
|
|
GtkScrolledWindow *scrolled = GTK_SCROLLED_WINDOW(gtk_scrolled_window_new());
|
|
|
|
gtk_scrolled_window_set_min_content_width (scrolled, W_IMAGE);
|
|
|
|
gtk_scrolled_window_set_min_content_height (scrolled, H_IMAGE);
|
|
|
|
// GtkAdjustment *width = gtk_adjustment_new (600, 300, 1000, 1, 1, 1000);
|
|
|
|
// GtkAdjustment *height = gtk_adjustment_new (600, 300, 1000, 1, 1, 1000);
|
|
|
|
// (value, lower, upper, step_increment, page_increment, page_size)
|
|
|
|
// GtkWidget *GLarea = gtk_gl_area_new();
|
|
|
|
// gtk_scrolled_window_set_child (scrolled, GLarea);
|
|
|
|
// https://docs.gtk.org/gtk4/class.GLArea.html
|
|
|
|
return scrolled;
|
|
|
|
}
|
2024-05-06 22:19:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
essai run-stop, speed et step by step dans une seule box controls
|
|
|
|
-----------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <gtk-4.0/gtk/gtk.h>
|
|
|
|
#include "cold.h"
|
|
|
|
|
|
|
|
void print_text(GtkWidget *widget, gpointer data) {g_print (data);}
|
|
|
|
|
|
|
|
GtkWidget *get_a_space_test_image(){
|
|
|
|
GtkWidget *image;
|
|
|
|
image = GTK_WIDGET(get_scrolled_gl_area());
|
|
|
|
image = gtk_picture_new_for_filename ("/home/jean/01/Gtk4/images/aXoris.png");
|
|
|
|
image = gtk_picture_new_for_filename ("/home/jean/01/Gtk4/images/gg sketch.png");
|
|
|
|
image = gtk_picture_new_for_filename ("/home/jean/01/Gtk4/images/E coli.png");
|
|
|
|
image = gtk_picture_new_for_filename ("/home/jean/01/Gtk4/images/E coli resized.png");
|
|
|
|
image = gtk_picture_new_for_filename ("/home/jean/01/Gtk4/Getting_Started_with_GTK/E coli by David S. Goodsell (2009).png");
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *get_scroll_speed(){
|
|
|
|
GtkAdjustment *speed_adjust = gtk_adjustment_new (0, 0, 100, 1, 0, 0);
|
|
|
|
GtkWidget *scroll_speed = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, speed_adjust);
|
|
|
|
return scroll_speed;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO cliquer sur "RUN" --> affiche "STOP" (et inversement)
|
|
|
|
GtkBox *get_RUN_STOP_box(){
|
|
|
|
GtkBox *RUN_STOP_box = GTK_BOX(gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2)); // spacing = 2
|
|
|
|
|
|
|
|
GtkWidget *RUN_Label = GTK_WIDGET (gtk_label_new (NULL)); // "RUN"));
|
|
|
|
const char *str = " RUN\n STOP";
|
|
|
|
const char *format = "<span style=\"oblique\">\%s</span>";
|
|
|
|
char *markup;
|
|
|
|
|
|
|
|
markup = g_markup_printf_escaped (format, str);
|
|
|
|
gtk_label_set_markup (GTK_LABEL (RUN_Label), markup); // Sets the labels text and attributes from markup.
|
|
|
|
g_free (markup);
|
|
|
|
|
|
|
|
gtk_label_set_max_width_chars (GTK_LABEL(RUN_Label), 12);
|
|
|
|
gtk_label_set_wrap (GTK_LABEL(RUN_Label), TRUE);
|
|
|
|
gtk_label_set_xalign (GTK_LABEL(RUN_Label), 0.5); // xalign value, between 0 and 1
|
|
|
|
gtk_label_set_yalign (GTK_LABEL(RUN_Label), 0.5);
|
|
|
|
gtk_label_set_selectable (GTK_LABEL(RUN_Label), FALSE); // default = FALSE
|
|
|
|
gtk_label_set_single_line_mode (GTK_LABEL(RUN_Label), TRUE); // default = TRUE
|
|
|
|
//
|
|
|
|
gtk_box_append (RUN_STOP_box, RUN_Label);
|
|
|
|
return RUN_STOP_box;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkBox *get_STEP_by_STEP_box(){
|
|
|
|
GtkBox *STEP_by_STEP_box = GTK_BOX(gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0));
|
|
|
|
GtkWidget *STEP_by_STEP_Label = GTK_WIDGET (gtk_label_new ("ONE\nSTEP"));
|
|
|
|
gtk_box_append (STEP_by_STEP_box, STEP_by_STEP_Label);
|
|
|
|
return STEP_by_STEP_box;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkBox *get_CONTROL_box(){
|
|
|
|
GtkBox *CONTROL_box = GTK_BOX(gtk_box_new (GTK_ORIENTATION_VERTICAL, 0));
|
|
|
|
gtk_box_append (CONTROL_box, GTK_WIDGET (get_RUN_STOP_box()));
|
|
|
|
gtk_box_append (CONTROL_box, GTK_WIDGET (get_scroll_speed()));
|
|
|
|
gtk_box_append (CONTROL_box, GTK_WIDGET (get_STEP_by_STEP_box()));
|
|
|
|
return CONTROL_box;
|
|
|
|
}
|
|
|
|
*/
|