comparison finch/libgnt/gntclipboard.h @ 20751:fe77cc691f78

Some doxygen stuff.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Tue, 02 Oct 2007 04:22:26 +0000
parents 44b4e8bd759b
children
comparison
equal deleted inserted replaced
20750:0ee0cad488b4 20751:fe77cc691f78
58 }; 58 };
59 59
60 G_BEGIN_DECLS 60 G_BEGIN_DECLS
61 61
62 /** 62 /**
63 * 63 * @return GType for GntClipboard.
64 *
65 * @return
66 */ 64 */
67 GType gnt_clipboard_get_gtype(void); 65 GType gnt_clipboard_get_gtype(void);
68 66
69 /** 67 /**
70 * 68 * Get the current text from the clipboard.
71 * @param clip
72 * 69 *
73 * @return 70 * @param clip The clipboard.
71 *
72 * @return A copy of the string in the clipboard. The caller should free the
73 * returned value.
74 */ 74 */
75 gchar * gnt_clipboard_get_string(GntClipboard *clip); 75 gchar * gnt_clipboard_get_string(GntClipboard *clip);
76 76
77 /** 77 /**
78 * 78 * Set the text in the clipboard.
79 * @param clip 79 *
80 * @param string 80 * @param clip The clipboard.
81 * @param string New string for the clipboard.
81 */ 82 */
82 void gnt_clipboard_set_string(GntClipboard *clip, gchar *string); 83 void gnt_clipboard_set_string(GntClipboard *clip, const gchar *string);
83 84
84 G_END_DECLS 85 G_END_DECLS
85 86
86 #endif 87 #endif