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-11 23:08:59 +02:00
|
|
|
#define W_IMAGE_LOCAL W / 3
|
|
|
|
#define H_IMAGE_LOCAL H / 3
|
|
|
|
|
2024-05-07 20:48:01 +02:00
|
|
|
|
|
|
|
void activate (GtkApplication *app, gpointer user_data);
|
2024-05-10 15:41:35 +02:00
|
|
|
|