Code review
authorkrzsas <krzsas@gmail.com>
Fri, 11 Jan 2008 14:49:27 +0000 (14:49 +0000)
committerkrzsas <krzsas@gmail.com>
Fri, 11 Jan 2008 14:49:27 +0000 (14:49 +0000)
git-svn-id: file:///svnroot/mdictionary/trunk@232 5bde0345-f819-0410-ac75-e5045f9217cc

src/gui/include/ws_gui.h
src/gui/include/ws_gui_callbacks.h
src/gui/include/ws_gui_layout.h
src/gui/src/ws_gui.c
src/gui/src/ws_gui_callbacks.c
src/gui/src/ws_gui_layout.c
src/plugins/stardict/include/engine_stardict.h
src/plugins/stardict/src/engine_stardict.c

index 3b7d0bd..998c84c 100644 (file)
@@ -17,6 +17,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 
 Copyright 2006 ComArch S.A.
 *******************************************************************************/
+/** \defgroup GUI Dictionary's Graphical User Interface
+ * \brief contains Graphical User Interface of mDictionary
+ */
+
 /** \addtogroup GUI
  */
 /*@{*/
@@ -299,3 +303,4 @@ struct WSGuiAppData {
 #endif
 
 #endif
+/*@}*/
index 8b923bb..cb93267 100644 (file)
@@ -279,9 +279,11 @@ void ws_gui_set_toolbar_avail(gpointer user_data);
  *
  */
 void ws_refresh_search_results(gpointer user_data);
+/*@}*/
 
 #ifdef __cplusplus
 }
 #endif
 
 #endif
+/*@}*/
index d829047..b75a6a1 100644 (file)
@@ -142,3 +142,4 @@ void ws_gui_list_full_dialog(GtkWidget *widget, GdkEventButton *event, gpointer
 #endif
 
 #endif
+/*@}*/
index 16b7349..773d485 100644 (file)
@@ -196,4 +196,4 @@ int main(int argc, char *argv[])
        
        return 0;
 }
-
+/*@}*/
index b96d5b7..5f49e16 100644 (file)
@@ -2497,3 +2497,4 @@ void ws_refresh_search_results(gpointer user_data) {
        //gtk_widget_hide(ws_gui_app->ws_gui_list_hbox);
        //-----------------------------------------------
 }
+/*@}*/
index 02fe33f..cefd23a 100644 (file)
@@ -1844,3 +1844,4 @@ void ws_gui_list_full_dialog(GtkWidget *widget, GdkEventButton *event, gpointer
                                                ws_gui_app->ws_message_dialog);
                }
 }
+/*@}*/
index ac3a1c5..090f992 100755 (executable)
@@ -17,6 +17,16 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 
 Copyright 2006 ComArch S.A.
 *******************************************************************************/
+/** \defgroup StarDictEngine Dictionary Engine - StarDict format
+ * \brief StarDict-based dictionary engine.
+ *
+ * This is library with dictionary engine supporting StarDict dictionaries. 
+ */
+/*@{*/
+/** \file engine_stardict.h
+ * \brief Header for XDXF-based dictionary engine.
+ */
+
 #ifndef _DICTIONARY_ENGINE_STARDICT
 #define _DICTIONARY_ENGINE_STARDICT
 
@@ -322,3 +332,4 @@ EngineModule    engine_global_functions();
 }
 #endif
 #endif /* #ifndef _DICTIONARY_ENGINE_STARDICT */
+/*@}*/
index aeb3bef..2c988f0 100755 (executable)
@@ -18,8 +18,13 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 Copyright 2006 ComArch S.A.
 ******************************************************************************/
 
-// header with data structure and function definition for XDXF engine.
-// Also Engine API. 
+/** \addtogroup StarDictEngine
+ */
+/*@{*/
+/** \file engine_stardict.c
+ * \brief Code of StarDict-based dictionary engine.
+ */
+
 #include <engine_stardict.h>
 //------------------------------------------------------------------------------
 
@@ -1744,3 +1749,4 @@ static void sd_close_z(gpointer f)
        gzFile tmp = *((gzFile*)f);
        gzclose(tmp);
 }
+/*@}*/