X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkimcontextsimple.h;h=03479c85bf8ef9a2d97f65689aa818ec85e4b1e0;hb=9d0febc9a64a5bfb0fcfc3a88de4757f6c1ff090;hp=2c44db25a37facf9080784517ffb9088e1e29102;hpb=57223c9a056bfff1635ddd1e67f660cd5a61e9ff;p=~andy%2Fgtk diff --git a/gtk/gtkimcontextsimple.h b/gtk/gtkimcontextsimple.h index 2c44db25a..03479c85b 100644 --- a/gtk/gtkimcontextsimple.h +++ b/gtk/gtkimcontextsimple.h @@ -12,12 +12,10 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . */ -#if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) +#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif @@ -29,6 +27,12 @@ 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_IM_CONTEXT_SIMPLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimple)) @@ -38,23 +42,16 @@ G_BEGIN_DECLS #define GTK_IM_CONTEXT_SIMPLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimpleClass)) -typedef struct _GtkIMContextSimple GtkIMContextSimple; -typedef struct _GtkIMContextSimpleClass GtkIMContextSimpleClass; - -#define GTK_MAX_COMPOSE_LEN 7 +typedef struct _GtkIMContextSimple GtkIMContextSimple; +typedef struct _GtkIMContextSimplePrivate GtkIMContextSimplePrivate; +typedef struct _GtkIMContextSimpleClass GtkIMContextSimpleClass; struct _GtkIMContextSimple { GtkIMContext object; - GSList *GSEAL (tables); - - guint GSEAL (compose_buffer[GTK_MAX_COMPOSE_LEN + 1]); - gunichar GSEAL (tentative_match); - gint GSEAL (tentative_match_len); - - guint GSEAL (in_hex_sequence) : 1; - guint GSEAL (modifiers_dropped) : 1; + /*< private >*/ + GtkIMContextSimplePrivate *priv; }; struct _GtkIMContextSimpleClass