chiark / gitweb /
login details box for disobedience. a bit unfriendly but does work.
[disorder] / disobedience / misc.c
index 3221e182f8287f2a948723f55f68197a513292da..1cb6d5a0439a839ff4b2dd1f937ffd3b9d8197bb 100644 (file)
@@ -106,6 +106,17 @@ void popup_error(const char *msg) {
   gtk_widget_destroy(w);
 }
 
+/** @brief Pop up an error message */
+void fpopup_error(const char *fmt, ...) {
+  va_list ap;
+  char *msg;
+
+  va_start(ap, fmt);
+  byte_xvasprintf(&msg, fmt, ap);
+  va_end(ap);
+  popup_error(msg);
+}
+
 /** @brief Create a button with an icon in it
  * @param path (relative) path to image
  * @param tooltip Tooltip or NULL to not set one
@@ -130,6 +141,22 @@ GtkWidget *iconbutton(const char *path, const char *tip) {
   return button;
 }
 
+/** @brief Create buttons and pack them into an hbox */
+GtkWidget *create_buttons(const struct button *buttons,
+                          size_t nbuttons) {
+  size_t n;
+  GtkWidget *const hbox = gtk_hbox_new(FALSE, 1);
+
+  for(n = 0; n < nbuttons; ++n) {
+    GtkWidget *const button = gtk_button_new_from_stock(buttons[n].stock);
+    g_signal_connect(G_OBJECT(button), "clicked",
+                     G_CALLBACK(buttons[n].clicked), 0);
+    gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1);
+    gtk_tooltips_set_tip(tips, button, buttons[n].tip, "");
+  }
+  return hbox;
+}
+
 /*
 Local Variables:
 c-basic-offset:2