gtkimcontextsimple: move documentation to inline comments
This commit is contained in:
1
docs/reference/gtk/tmpl/.gitignore
vendored
1
docs/reference/gtk/tmpl/.gitignore
vendored
@ -7,6 +7,7 @@ gtkcalendar.sgml
|
|||||||
gtkcelleditable.sgml
|
gtkcelleditable.sgml
|
||||||
gtkhbox.sgml
|
gtkhbox.sgml
|
||||||
gtkiconview.sgml
|
gtkiconview.sgml
|
||||||
|
gtkimcontextsimple.sgml
|
||||||
gtkimmulticontext.sgml
|
gtkimmulticontext.sgml
|
||||||
gtkmessagedialog.sgml
|
gtkmessagedialog.sgml
|
||||||
gtkobject.sgml
|
gtkobject.sgml
|
||||||
|
|||||||
@ -1,55 +0,0 @@
|
|||||||
<!-- ##### SECTION Title ##### -->
|
|
||||||
GtkIMContextSimple
|
|
||||||
|
|
||||||
<!-- ##### SECTION Short_Description ##### -->
|
|
||||||
An input method context supporting table-based input methods
|
|
||||||
|
|
||||||
<!-- ##### SECTION Long_Description ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### SECTION See_Also ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### SECTION Stability_Level ##### -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SECTION Image ##### -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### STRUCT GtkIMContextSimple ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_im_context_simple_new ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@void:
|
|
||||||
@Returns:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_im_context_simple_add_table ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@context_simple:
|
|
||||||
@data:
|
|
||||||
@max_seq_len:
|
|
||||||
@n_seqs:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### MACRO GTK_MAX_COMPOSE_LEN ##### -->
|
|
||||||
<para>
|
|
||||||
The maximum length of sequences in compose tables.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -30,6 +30,13 @@
|
|||||||
#include "gtkintl.h"
|
#include "gtkintl.h"
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SECTION:gtkimcontextsimple
|
||||||
|
* @Short_description: An input method context supporting table-based input methods
|
||||||
|
* @Title: GtkIMContextSimple
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
typedef struct _GtkComposeTable GtkComposeTable;
|
typedef struct _GtkComposeTable GtkComposeTable;
|
||||||
typedef struct _GtkComposeTableCompact GtkComposeTableCompact;
|
typedef struct _GtkComposeTableCompact GtkComposeTableCompact;
|
||||||
|
|
||||||
|
|||||||
@ -29,6 +29,12 @@
|
|||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GTK_MAX_COMPOSE_LEN:
|
||||||
|
*
|
||||||
|
* The maximum length of sequences in compose tables.
|
||||||
|
*/
|
||||||
|
#define GTK_MAX_COMPOSE_LEN 7
|
||||||
|
|
||||||
#define GTK_TYPE_IM_CONTEXT_SIMPLE (gtk_im_context_simple_get_type ())
|
#define GTK_TYPE_IM_CONTEXT_SIMPLE (gtk_im_context_simple_get_type ())
|
||||||
#define GTK_IM_CONTEXT_SIMPLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimple))
|
#define GTK_IM_CONTEXT_SIMPLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimple))
|
||||||
@ -42,8 +48,6 @@ typedef struct _GtkIMContextSimple GtkIMContextSimple;
|
|||||||
typedef struct _GtkIMContextSimplePrivate GtkIMContextSimplePrivate;
|
typedef struct _GtkIMContextSimplePrivate GtkIMContextSimplePrivate;
|
||||||
typedef struct _GtkIMContextSimpleClass GtkIMContextSimpleClass;
|
typedef struct _GtkIMContextSimpleClass GtkIMContextSimpleClass;
|
||||||
|
|
||||||
#define GTK_MAX_COMPOSE_LEN 7
|
|
||||||
|
|
||||||
struct _GtkIMContextSimple
|
struct _GtkIMContextSimple
|
||||||
{
|
{
|
||||||
GtkIMContext object;
|
GtkIMContext object;
|
||||||
|
|||||||
Reference in New Issue
Block a user