]> Pileus Git - ~andy/gtk/blob - gtk/gtktextview.h
Add missing NULL on valist.
[~andy/gtk] / gtk / gtktextview.h
1 /* GTK - The GIMP Toolkit
2  * gtktextview.h Copyright (C) 2000 Red Hat, Inc.
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_TEXT_VIEW_H
28 #define GTK_TEXT_VIEW_H
29
30 #include <gtk/gtkcontainer.h>
31 #include <gtk/gtkimcontext.h>
32 #include <gtk/gtktextbuffer.h>
33 #include <gtk/gtkmenu.h>
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif /* __cplusplus */
38
39 #define GTK_TYPE_TEXT_VIEW             (gtk_text_view_get_type ())
40 #define GTK_TEXT_VIEW(obj)             (GTK_CHECK_CAST ((obj), GTK_TYPE_TEXT_VIEW, GtkTextView))
41 #define GTK_TEXT_VIEW_CLASS(klass)     (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_TEXT_VIEW, GtkTextViewClass))
42 #define GTK_IS_TEXT_VIEW(obj)          (GTK_CHECK_TYPE ((obj), GTK_TYPE_TEXT_VIEW))
43 #define GTK_IS_TEXT_VIEW_CLASS(klass)  (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TEXT_VIEW))
44 #define GTK_TEXT_VIEW_GET_CLASS(obj)   (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_TEXT_VIEW, GtkTextViewClass))
45
46 typedef enum
47 {
48   GTK_TEXT_WINDOW_PRIVATE,
49   GTK_TEXT_WINDOW_WIDGET,
50   GTK_TEXT_WINDOW_TEXT,
51   GTK_TEXT_WINDOW_LEFT,
52   GTK_TEXT_WINDOW_RIGHT,
53   GTK_TEXT_WINDOW_TOP,
54   GTK_TEXT_WINDOW_BOTTOM
55 } GtkTextWindowType;
56
57 #define GTK_TEXT_VIEW_PRIORITY_VALIDATE (GDK_PRIORITY_REDRAW + 5)
58
59 typedef struct _GtkTextView GtkTextView;
60 typedef struct _GtkTextViewClass GtkTextViewClass;
61
62 /* Internal private types. */
63 typedef struct _GtkTextWindow GtkTextWindow;
64 typedef struct _GtkTextPendingScroll GtkTextPendingScroll;
65
66 struct _GtkTextView
67 {
68   GtkContainer parent_instance;
69
70   struct _GtkTextLayout *layout;
71   GtkTextBuffer *buffer;
72
73   guint selection_drag_handler;
74   guint scroll_timeout;
75
76   /* Default style settings */
77   gint pixels_above_lines;
78   gint pixels_below_lines;
79   gint pixels_inside_wrap;
80   GtkWrapMode wrap_mode;  
81   GtkJustification justify;
82   gint left_margin;
83   gint right_margin;
84   gint indent;
85   PangoTabArray *tabs;
86   guint editable : 1;
87
88   
89   
90   guint overwrite_mode : 1;
91   guint cursor_visible : 1;
92   guint  need_im_reset : 1;     /* If we have reset the IM since the last character entered */
93   /* just selected a word or line via double/triple click */
94   guint just_selected_element : 1;
95   
96   /* debug flag - means that we've validated onscreen since the
97    * last "invalidate" signal from the layout
98    */
99   guint onscreen_validated : 1;
100   
101   GtkTextWindow *text_window;
102   GtkTextWindow *left_window;
103   GtkTextWindow *right_window;
104   GtkTextWindow *top_window;
105   GtkTextWindow *bottom_window;
106
107   GtkAdjustment *hadjustment;
108   GtkAdjustment *vadjustment;
109
110   gint xoffset;                 /* Offsets between widget coordinates and buffer coordinates */
111   gint yoffset;
112   gint width;                   /* Width and height of the buffer */
113   gint height;
114
115   /* The virtual cursor position is normally the same as the
116    * actual (strong) cursor position, except in two circumstances:
117    *
118    * a) When the cursor is moved vertically with the keyboard
119    * b) When the text view is scrolled with the keyboard
120    *
121    * In case a), virtual_cursor_x is preserved, but not virtual_cursor_y
122    * In case b), both virtual_cursor_x and virtual_cursor_y are preserved.
123    */
124   gint virtual_cursor_x;           /* -1 means use actual cursor position */
125   gint virtual_cursor_y;           /* -1 means use actual cursor position */
126
127   GtkTextMark *first_para_mark;    /* Mark at the beginning of the first onscreen paragraph */
128   gint first_para_pixels;          /* Offset of top of screen in the first onscreen paragraph */
129
130   GtkTextMark *dnd_mark;
131   guint blink_timeout;
132   guint preblink_timeout;
133
134   guint first_validate_idle;            /* Idle to revalidate onscreen portion, runs before resize */
135   guint incremental_validate_idle;      /* Idle to revalidate offscreen portions, runs after redraw */
136
137   GtkIMContext *im_context;
138   GtkWidget *popup_menu;
139
140   gint drag_start_x;
141   gint drag_start_y;
142
143   GSList *children;
144
145   GtkTextPendingScroll *pending_scroll;
146 };
147
148 struct _GtkTextViewClass
149 {
150   GtkContainerClass parent_class;
151
152   void (* set_scroll_adjustments)   (GtkTextView    *text_view,
153                                      GtkAdjustment  *hadjustment,
154                                      GtkAdjustment  *vadjustment);
155
156   void (* populate_popup)           (GtkTextView    *text_view,
157                                      GtkMenu        *menu);
158   
159   /* These are all RUN_ACTION signals for keybindings */
160
161   /* move insertion point */
162   void (* move_cursor) (GtkTextView    *text_view,
163                         GtkMovementStep step,
164                         gint            count,
165                         gboolean        extend_selection);
166   /* move the "anchor" (what Emacs calls the mark) to the cursor position */
167   void (* set_anchor)  (GtkTextView    *text_view);
168
169   /* Edits */
170   void (* insert_at_cursor)      (GtkTextView *text_view,
171                                   const gchar *str);
172   void (* delete_from_cursor)    (GtkTextView  *text_view,
173                                   GtkDeleteType type,
174                                   gint          count);
175
176   /* cut copy paste */
177   void (* cut_clipboard)   (GtkTextView *text_view);
178   void (* copy_clipboard)  (GtkTextView *text_view);
179   void (* paste_clipboard) (GtkTextView *text_view);
180   /* overwrite */
181   void (* toggle_overwrite) (GtkTextView *text_view);
182 };
183
184 GtkType        gtk_text_view_get_type              (void) G_GNUC_CONST;
185 GtkWidget *    gtk_text_view_new                   (void);
186 GtkWidget *    gtk_text_view_new_with_buffer       (GtkTextBuffer *buffer);
187 void           gtk_text_view_set_buffer            (GtkTextView   *text_view,
188                                                     GtkTextBuffer *buffer);
189 GtkTextBuffer *gtk_text_view_get_buffer            (GtkTextView   *text_view);
190 gboolean       gtk_text_view_scroll_to_iter        (GtkTextView   *text_view,
191                                                     GtkTextIter   *iter,
192                                                     gdouble        within_margin,
193                                                     gboolean       use_align,
194                                                     gdouble        xalign,
195                                                     gdouble        yalign);
196 void           gtk_text_view_scroll_to_mark        (GtkTextView   *text_view,
197                                                     GtkTextMark   *mark,
198                                                     gdouble        within_margin,
199                                                     gboolean       use_align,
200                                                     gdouble        xalign,
201                                                     gdouble        yalign);
202 void           gtk_text_view_scroll_mark_onscreen  (GtkTextView   *text_view,
203                                                     GtkTextMark   *mark);
204 gboolean       gtk_text_view_move_mark_onscreen    (GtkTextView   *text_view,
205                                                     GtkTextMark   *mark);
206 gboolean       gtk_text_view_place_cursor_onscreen (GtkTextView   *text_view);
207
208 void           gtk_text_view_get_visible_rect      (GtkTextView   *text_view,
209                                                     GdkRectangle  *visible_rect);
210 void           gtk_text_view_set_cursor_visible    (GtkTextView   *text_view,
211                                                     gboolean       setting);
212 gboolean       gtk_text_view_get_cursor_visible    (GtkTextView   *text_view);
213
214 void           gtk_text_view_get_iter_location     (GtkTextView   *text_view,
215                                                     const GtkTextIter *iter,
216                                                     GdkRectangle  *location);
217 void           gtk_text_view_get_iter_at_location  (GtkTextView   *text_view,
218                                                     GtkTextIter   *iter,
219                                                     gint           x,
220                                                     gint           y);
221 void           gtk_text_view_get_line_yrange       (GtkTextView       *text_view,
222                                                     const GtkTextIter *iter,
223                                                     gint              *y,
224                                                     gint              *height);
225
226 void           gtk_text_view_get_line_at_y         (GtkTextView       *text_view,
227                                                     GtkTextIter       *target_iter,
228                                                     gint               y,
229                                                     gint              *line_top);
230
231 void gtk_text_view_buffer_to_window_coords (GtkTextView       *text_view,
232                                             GtkTextWindowType  win,
233                                             gint               buffer_x,
234                                             gint               buffer_y,
235                                             gint              *window_x,
236                                             gint              *window_y);
237 void gtk_text_view_window_to_buffer_coords (GtkTextView       *text_view,
238                                             GtkTextWindowType  win,
239                                             gint               window_x,
240                                             gint               window_y,
241                                             gint              *buffer_x,
242                                             gint              *buffer_y);
243
244 GdkWindow*        gtk_text_view_get_window      (GtkTextView       *text_view,
245                                                  GtkTextWindowType  win);
246 GtkTextWindowType gtk_text_view_get_window_type (GtkTextView       *text_view,
247                                                  GdkWindow         *window);
248
249 void gtk_text_view_set_border_window_size (GtkTextView       *text_view,
250                                            GtkTextWindowType  type,
251                                            gint               size);
252 void gtk_text_view_set_text_window_size   (GtkTextView       *text_view,
253                                            gint               width,
254                                            gint               height);
255
256 gboolean gtk_text_view_forward_display_line           (GtkTextView       *text_view,
257                                                        GtkTextIter       *iter);
258 gboolean gtk_text_view_backward_display_line          (GtkTextView       *text_view,
259                                                        GtkTextIter       *iter);
260 gboolean gtk_text_view_forward_display_line_end       (GtkTextView       *text_view,
261                                                        GtkTextIter       *iter);
262 gboolean gtk_text_view_backward_display_line_start    (GtkTextView       *text_view,
263                                                        GtkTextIter       *iter);
264 gboolean gtk_text_view_starts_display_line            (GtkTextView       *text_view,
265                                                        const GtkTextIter *iter);
266 gboolean gtk_text_view_move_visually                  (GtkTextView       *text_view,
267                                                        GtkTextIter       *iter,
268                                                        gint               count);
269
270 /* Adding child widgets */
271 void gtk_text_view_add_child_at_anchor (GtkTextView          *text_view,
272                                         GtkWidget            *child,
273                                         GtkTextChildAnchor   *anchor);
274
275 void gtk_text_view_add_child_in_window (GtkTextView          *text_view,
276                                         GtkWidget            *child,
277                                         GtkTextWindowType     which_window,
278                                         /* window coordinates */
279                                         gint                  xpos,
280                                         gint                  ypos);
281
282 void gtk_text_view_move_child          (GtkTextView          *text_view,
283                                         GtkWidget            *child,
284                                         /* window coordinates */
285                                         gint                  xpos,
286                                         gint                  ypos);
287
288 /* Default style settings (fallbacks if no tag affects the property) */
289
290 void             gtk_text_view_set_wrap_mode          (GtkTextView      *text_view,
291                                                        GtkWrapMode       wrap_mode);
292 GtkWrapMode      gtk_text_view_get_wrap_mode          (GtkTextView      *text_view);
293 void             gtk_text_view_set_editable           (GtkTextView      *text_view,
294                                                        gboolean          setting);
295 gboolean         gtk_text_view_get_editable           (GtkTextView      *text_view);
296 void             gtk_text_view_set_pixels_above_lines (GtkTextView      *text_view,
297                                                        gint              pixels_above_lines);
298 gint             gtk_text_view_get_pixels_above_lines (GtkTextView      *text_view);
299 void             gtk_text_view_set_pixels_below_lines (GtkTextView      *text_view,
300                                                        gint              pixels_below_lines);
301 gint             gtk_text_view_get_pixels_below_lines (GtkTextView      *text_view);
302 void             gtk_text_view_set_pixels_inside_wrap (GtkTextView      *text_view,
303                                                        gint              pixels_inside_wrap);
304 gint             gtk_text_view_get_pixels_inside_wrap (GtkTextView      *text_view);
305 void             gtk_text_view_set_justification      (GtkTextView      *text_view,
306                                                        GtkJustification  justification);
307 GtkJustification gtk_text_view_get_justification      (GtkTextView      *text_view);
308 void             gtk_text_view_set_left_margin        (GtkTextView      *text_view,
309                                                        gint              left_margin);
310 gint             gtk_text_view_get_left_margin        (GtkTextView      *text_view);
311 void             gtk_text_view_set_right_margin       (GtkTextView      *text_view,
312                                                        gint              right_margin);
313 gint             gtk_text_view_get_right_margin       (GtkTextView      *text_view);
314 void             gtk_text_view_set_indent             (GtkTextView      *text_view,
315                                                        gint              indent);
316 gint             gtk_text_view_get_indent             (GtkTextView      *text_view);
317 void             gtk_text_view_set_tabs               (GtkTextView      *text_view,
318                                                        PangoTabArray    *tabs);
319 PangoTabArray*   gtk_text_view_get_tabs               (GtkTextView      *text_view);
320                                        
321
322
323 #ifdef __cplusplus
324 }
325 #endif /* __cplusplus */
326
327 #endif /* GTK_TEXT_VIEW_H */