The 'edit room' tab panel now uses the same CSS that is used
[citadel.git] / webcit / tabs.c
index 6ef4bfde6b2b36250f0aa21196304bcea4605b39..c87cf4a4c269e43bdcd544e226faca256be8c17f 100644 (file)
@@ -1,17 +1,12 @@
 /*
  * $Id$
+ *
  */
-/**
- * \defgroup TabUtils Utility functions for creating tabbed dialogs
- * \ingroup WebcitDisplayItems
- */
-/*@{*/
+
 #include "webcit.h"
 
-/**
- * \brief print tabbed dialog
- * \param num_tabs how many tabs do we have?
- * \param tabnames the headers of the tables
+/*
+ * print tabbed dialog
  */
 void tabbed_dialog(int num_tabs, char *tabnames[]) {
        int i;
@@ -53,10 +48,12 @@ void tabbed_dialog(int num_tabs, char *tabnames[]) {
        wprintf("</tr></table>\n");
 }
 
-/**
- * \brief print the tab-header
- * \param tabnum number of the tab to print
- * \param num_tabs total number oftabs to be printed
+/*
+ * print the tab-header
+ *
+ * tabnum:      number of the tab to print
+ * num_tabs:    total number oftabs to be printed
+ *
  */
 void begin_tab(int tabnum, int num_tabs) {
        wprintf("<!-- begin tab %d of %d -->\n", tabnum, num_tabs);
@@ -66,10 +63,11 @@ void begin_tab(int tabnum, int num_tabs) {
        );
 }
 
-/**
- * \brief print the tab-footer
- * \param tabnum number of the tab to print
- * \param num_tabs total number of tabs to be printed
+/*
+ * print the tab-footer
+ * tabnum:      number of the tab to print
+ * num_tabs:    total number of tabs to be printed
+ *
  */
 void end_tab(int tabnum, int num_tabs) {
        wprintf("</div>\n");
@@ -86,4 +84,3 @@ void end_tab(int tabnum, int num_tabs) {
 }
 
 
-/*@}*/