Erstellen Sie hoch performante WebGUI's, mit wenig Aufwand, in Windeseile.
Eingaben automatisch in die DB speichern
Functionpointer für Page render Callbacks
Typsichere HTML-Attribute und CSS-Angaben
Lauffähiges Gerüst mit Benutzerverwaltung, Sessions, Mail, und vieles mehr
Linux, Windows, Mac, iOS ...
Für C oder C++
Implementiert mit der w3store
Datenbank
| |
static void customer_rd_view(customer_t *cust) { // Callback rendert EDIT Dialog für customer
...
DIALOG_START // Startet eine <table>
TR TD printf("Name"); // HTML Ausgabe auf stdout
TD ht_text_simple(&cust->name, size(40)); // name direkt von/nach Datenbank
TR TD printf("Datum Info Brief");
TD cat_timestamp(cust->last_info_letter_sent);
TR TD SPACE
TD ht_submit(null_callback, "speichern", style(background_color(RED))); // typsichere Styleangaben
DIALOG_END
}
|