2024-05-10 15:41:35 +02:00
|
|
|
//******************************************************************************/
|
2024-05-07 20:48:01 +02:00
|
|
|
/* */
|
|
|
|
/* E coli by David S. Goodsell (2009) */
|
|
|
|
/* --- */
|
|
|
|
/* Let this freeze frame guide us towards the model */
|
|
|
|
/* that alone can account for the phenomenon ! */
|
|
|
|
/* */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
#define W 1920
|
|
|
|
#define H 960
|
2024-05-11 23:08:59 +02:00
|
|
|
#define W_IMAGE W - 320
|
|
|
|
#define H_IMAGE H - 126
|
2024-05-10 23:56:28 +02:00
|
|
|
#define H_STYLES_PANE 30
|
2024-05-12 07:39:06 +02:00
|
|
|
#define W_IMAGE_LOCAL W / 16
|
|
|
|
#define H_IMAGE_LOCAL H / 16
|
2024-05-11 23:08:59 +02:00
|
|
|
|
2024-06-01 11:32:57 +02:00
|
|
|
/*
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define MY_TYPE_WINDOW (my_window_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE (MyWindow, my_window, MY, WINDOW, GtkApplicationWindow)
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define MY_TYPE_APPLICATION (my_application_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE (MyApplication, my_application, MY, APPLICATION, GtkApplication)
|
|
|
|
MyApplication *my_application_new (const char *application_id, GApplicationFlags flags);
|
|
|
|
G_END_DECLS
|
|
|
|
*/
|
|
|
|
|
2024-06-02 22:14:24 +02:00
|
|
|
void window_header_bar (GtkWindow *window, char *title);
|
2024-06-02 13:13:37 +02:00
|
|
|
void two_notebooks_in_two_panes (GtkWindow *window);
|
2024-05-14 22:03:49 +02:00
|
|
|
GtkWidget *get_selected_rules_vpaned_new();
|
2024-06-02 15:49:39 +02:00
|
|
|
GtkFrame *get_frame_with_label();
|
2024-05-10 15:41:35 +02:00
|
|
|
|