]> Pileus Git - ~andy/gtk/blob - gtk/gtkoldeditable.h
Use the correct screen for getting the height. (Fix from Stephen Browne,
[~andy/gtk] / gtk / gtkoldeditable.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef GTK_DISABLE_DEPRECATED
28
29 #ifndef __GTK_OLD_EDITABLE_H__
30 #define __GTK_OLD_EDITABLE_H__
31
32
33 #include <gdk/gdk.h>
34 #include <gtk/gtkeditable.h>
35 #include <gtk/gtkwidget.h>
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif /* __cplusplus */
40
41
42 #define GTK_TYPE_OLD_EDITABLE            (gtk_old_editable_get_type ())
43 #define GTK_OLD_EDITABLE(obj)            (GTK_CHECK_CAST ((obj), GTK_TYPE_OLD_EDITABLE, GtkOldEditable))
44 #define GTK_OLD_EDITABLE_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_OLD_EDITABLE, GtkOldEditableClass))
45 #define GTK_IS_OLD_EDITABLE(obj)         (GTK_CHECK_TYPE ((obj), GTK_TYPE_OLD_EDITABLE))
46 #define GTK_IS_OLD_EDITABLE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_OLD_EDITABLE))
47 #define GTK_OLD_EDITABLE_GET_CLASS(obj)  (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_OLD_EDITABLE, GtkOldEditableClass))
48
49
50 typedef struct _GtkOldEditable       GtkOldEditable;
51 typedef struct _GtkOldEditableClass  GtkOldEditableClass;
52
53 typedef void (*GtkTextFunction) (GtkOldEditable  *editable, guint32 time_);
54
55 struct _GtkOldEditable
56 {
57   GtkWidget widget;
58
59   /*< public >*/
60   guint      current_pos;
61
62   guint      selection_start_pos;
63   guint      selection_end_pos;
64   guint      has_selection : 1;
65
66   /*< private >*/
67   guint      editable : 1;
68   guint      visible : 1;
69   
70   gchar *clipboard_text;
71 };
72
73 struct _GtkOldEditableClass
74 {
75   GtkWidgetClass parent_class;
76   
77   /* Bindings actions */
78   void (* activate)        (GtkOldEditable *editable);
79   void (* set_editable)    (GtkOldEditable *editable,
80                             gboolean        is_editable);
81   void (* move_cursor)     (GtkOldEditable *editable,
82                             gint            x,
83                             gint            y);
84   void (* move_word)       (GtkOldEditable *editable,
85                             gint            n);
86   void (* move_page)       (GtkOldEditable *editable,
87                             gint            x,
88                             gint            y);
89   void (* move_to_row)     (GtkOldEditable *editable,
90                             gint            row);
91   void (* move_to_column)  (GtkOldEditable *editable,
92                             gint            row);
93   void (* kill_char)       (GtkOldEditable *editable,
94                             gint            direction);
95   void (* kill_word)       (GtkOldEditable *editable,
96                             gint            direction);
97   void (* kill_line)       (GtkOldEditable *editable,
98                             gint            direction);
99   void (* cut_clipboard)   (GtkOldEditable *editable);
100   void (* copy_clipboard)  (GtkOldEditable *editable);
101   void (* paste_clipboard) (GtkOldEditable *editable);
102
103   /* Virtual functions. get_chars is in paricular not a signal because
104    * it returns malloced memory. The others are not signals because
105    * they would not be particularly useful as such. (All changes to
106    * selection and position do not go through these functions)
107    */
108   void (* update_text)  (GtkOldEditable  *editable,
109                          gint             start_pos,
110                          gint             end_pos);
111   gchar* (* get_chars)  (GtkOldEditable  *editable,
112                          gint             start_pos,
113                          gint             end_pos);
114   void (* set_selection)(GtkOldEditable  *editable,
115                          gint             start_pos,
116                          gint             end_pos);
117   void (* set_position) (GtkOldEditable  *editable,
118                          gint             position);
119 };
120
121 GtkType    gtk_old_editable_get_type        (void) G_GNUC_CONST;
122 void       gtk_old_editable_claim_selection (GtkOldEditable *old_editable,
123                                              gboolean        claim,
124                                              guint32         time_);
125 void       gtk_old_editable_changed         (GtkOldEditable *old_editable);
126
127 #ifdef __cplusplus
128 }
129 #endif /* __cplusplus */
130
131
132 #endif /* __GTK_OLD_EDITABLE_H__ */
133
134 #endif /* GTK_DISABLE_DEPRECATED */