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 ! */
|
|
|
|
/* */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2024-05-08 07:50:04 +02:00
|
|
|
#pragma once // < WTF !?
|
2024-05-07 20:48:01 +02:00
|
|
|
|
2024-04-27 08:46:17 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2024-05-07 20:48:01 +02:00
|
|
|
|
2024-04-27 08:46:17 +02:00
|
|
|
#include <glib-2.0/glib.h>
|
|
|
|
#include <gtk-4.0/gtk/gtk.h>
|
2024-05-07 20:48:01 +02:00
|
|
|
|
2024-04-28 08:38:55 +02:00
|
|
|
#include "cold.h"
|
2024-05-07 20:48:01 +02:00
|
|
|
#include "widgets.h"
|
|
|
|
#include "pages.h"
|
2024-04-27 08:46:17 +02:00
|
|
|
|
2024-05-05 20:53:52 +02:00
|
|
|
|
2024-05-06 21:45:02 +02:00
|
|
|
// https://blog.gtk.org/2020/09/08/on-list-models/ < TODO
|
2024-04-29 23:43:04 +02:00
|
|
|
|