aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/gtk/gtknarrativeview.c
blob: b47f4a421bcfe507133f517565dfd87df4b5e377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
/*
 * gtknarrativeview.c
 *
 * Copyright © 2013-2019 Thomas White <taw@bitwiz.org.uk>
 *
 * This file is part of Colloquium.
 *
 * Colloquium is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */


#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdlib.h>
#include <string.h>
#include <gtk/gtk.h>
#include <assert.h>
#include <gdk/gdkkeysyms.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <math.h>
#include <libintl.h>
#define _(x) gettext(x)

#include <narrative.h>
#include <narrative_render_cairo.h>

#include "gtknarrativeview.h"
#include "narrative_priv.h"
#include "timing_ruler.h"


static void scroll_interface_init(GtkScrollable *iface)
{
}


enum
{
	GTKNARRATIVEVIEW_0,
	GTKNARRATIVEVIEW_VADJ,
	GTKNARRATIVEVIEW_HADJ,
	GTKNARRATIVEVIEW_VPOL,
	GTKNARRATIVEVIEW_HPOL,
};


G_DEFINE_TYPE_WITH_CODE(GtkNarrativeView, gtk_narrative_view,
                        GTK_TYPE_DRAWING_AREA,
                        G_IMPLEMENT_INTERFACE(GTK_TYPE_SCROLLABLE,
                                              scroll_interface_init))

static void gtknv_redraw(GtkNarrativeView *e)
{
	gint w, h;
	w = gtk_widget_get_allocated_width(GTK_WIDGET(e));
	h = gtk_widget_get_allocated_height(GTK_WIDGET(e));
	gtk_widget_queue_draw_area(GTK_WIDGET(e), 0, 0, w, h);
}


static void horizontal_adjust(GtkAdjustment *adj, GtkNarrativeView *e)
{
	e->h_scroll_pos = gtk_adjustment_get_value(adj);
	gtknv_redraw(e);
}


static void set_horizontal_params(GtkNarrativeView *e)
{
	if ( e->hadj == NULL ) return;
	gtk_adjustment_configure(e->hadj, e->h_scroll_pos, 0, e->w, 100,
	                         e->visible_width, e->visible_width);
}


static void vertical_adjust(GtkAdjustment *adj, GtkNarrativeView *e)
{
	e->scroll_pos = gtk_adjustment_get_value(adj);
	gtknv_redraw(e);
}


static void set_vertical_params(GtkNarrativeView *e)
{
	double page;

	if ( e->vadj == NULL ) return;

	/* Ensure we do not scroll off the top of the document */
	if ( e->scroll_pos < 0.0 ) e->scroll_pos = 0.0;

	/* Ensure we do not scroll off the bottom of the document */
	if ( e->scroll_pos > e->h - e->visible_height ) {
		e->scroll_pos = e->h - e->visible_height;
	}

	/* If we can show the whole document, show it at the top */
	if ( e->h < e->visible_height ) {
		e->scroll_pos = 0.0;
	}

	if ( e->h > e->visible_height ) {
		page = e->visible_height;
	} else {
		page = e->h;
	}

	gtk_adjustment_configure(e->vadj, e->scroll_pos, 0, e->h, 100,
	                         e->visible_height, page);
}


static void rewrap_range(GtkNarrativeView *e, int min, int max)
{
	PangoContext *pc;
	PangoLanguage *lang;
	const char *langname;

	pc = gtk_widget_get_pango_context(GTK_WIDGET(e));

	langname = narrative_get_language(e->n);
	lang = pango_language_from_string(langname);

	/* Wrap everything with the current width, to get the total height */
	narrative_wrap_range(e->n,
	                     narrative_get_stylesheet(e->n),
	                     lang, pc, e->w,
	                     narrative_get_imagestore(e->n),
	                     min, max, e->sel_start, e->sel_end);
}


static void update_size(GtkNarrativeView *e)
{
	e->w = e->visible_width - e->ruler_width;
	e->h = narrative_get_height(e->n);

	set_vertical_params(e);
	set_horizontal_params(e);
}


static gboolean gtknv_resize_sig(GtkWidget *widget, GdkEventConfigure *event,
                                 GtkNarrativeView *e)
{
	e->visible_height = event->height;
	e->visible_width = event->width;
	e->w = e->visible_width - e->ruler_width;

	rewrap_range(e, 0, e->n->n_items-1);

	update_size(e);

	return FALSE;
}


static void gtknv_emit_change_sig(GtkNarrativeView *e)
{
	g_signal_emit_by_name(e, "changed");
}


static void sc_editor_set_property(GObject *obj, guint id, const GValue *val,
                                   GParamSpec *spec)
{
	GtkNarrativeView *e = GTK_NARRATIVE_VIEW(obj);

	switch ( id ) {

		case GTKNARRATIVEVIEW_VPOL :
		e->vpol = g_value_get_enum(val);
		break;

		case GTKNARRATIVEVIEW_HPOL :
		e->hpol = g_value_get_enum(val);
		break;

		case GTKNARRATIVEVIEW_VADJ :
		e->vadj = g_value_get_object(val);
		set_vertical_params(e);
		if ( e->vadj != NULL ) {
			g_signal_connect(G_OBJECT(e->vadj), "value-changed",
			                 G_CALLBACK(vertical_adjust), e);
		}
		break;

		case GTKNARRATIVEVIEW_HADJ :
		e->hadj = g_value_get_object(val);
		set_horizontal_params(e);
		if ( e->hadj != NULL ) {
			g_signal_connect(G_OBJECT(e->hadj), "value-changed",
			                 G_CALLBACK(horizontal_adjust), e);
		}
		break;

		default :
		printf("setting %i\n", id);
		break;

	}
}


static void sc_editor_get_property(GObject *obj, guint id, GValue *val,
                                   GParamSpec *spec)
{
	GtkNarrativeView *e = GTK_NARRATIVE_VIEW(obj);

	switch ( id ) {

		case GTKNARRATIVEVIEW_VADJ :
		g_value_set_object(val, e->vadj);
		break;

		case GTKNARRATIVEVIEW_HADJ :
		g_value_set_object(val, e->hadj);
		break;

		case GTKNARRATIVEVIEW_VPOL :
		g_value_set_enum(val, e->vpol);
		break;

		case GTKNARRATIVEVIEW_HPOL :
		g_value_set_enum(val, e->hpol);
		break;

		default :
		G_OBJECT_WARN_INVALID_PROPERTY_ID(obj, id, spec);
		break;

	}
}


static GtkSizeRequestMode get_request_mode(GtkWidget *widget)
{
	return GTK_SIZE_REQUEST_CONSTANT_SIZE;
}


static void get_preferred_width(GtkWidget *widget, gint *min, gint *natural)
{
	*min = 100;
	*natural = 640;
}


static void get_preferred_height(GtkWidget *widget, gint *min, gint *natural)
{
	*min = 1000;
	*natural = 1000;
}


static void gtk_narrative_view_class_init(GtkNarrativeViewClass *klass)
{
	GObjectClass *goc = G_OBJECT_CLASS(klass);
	goc->set_property = sc_editor_set_property;
	goc->get_property = sc_editor_get_property;
	g_object_class_override_property(goc, GTKNARRATIVEVIEW_VADJ, "vadjustment");
	g_object_class_override_property(goc, GTKNARRATIVEVIEW_HADJ, "hadjustment");
	g_object_class_override_property(goc, GTKNARRATIVEVIEW_VPOL, "vscroll-policy");
	g_object_class_override_property(goc, GTKNARRATIVEVIEW_HPOL, "hscroll-policy");

	GTK_WIDGET_CLASS(klass)->get_request_mode = get_request_mode;
	GTK_WIDGET_CLASS(klass)->get_preferred_width = get_preferred_width;
	GTK_WIDGET_CLASS(klass)->get_preferred_height = get_preferred_height;
	GTK_WIDGET_CLASS(klass)->get_preferred_height_for_width = NULL;

	g_signal_new("changed", GTK_TYPE_NARRATIVE_VIEW,
	             G_SIGNAL_RUN_LAST, 0,
	             NULL, NULL, NULL, G_TYPE_NONE, 0);
	g_signal_new("slide-double-clicked", GTK_TYPE_NARRATIVE_VIEW,
	             G_SIGNAL_RUN_LAST, 0,
	             NULL, NULL, NULL, G_TYPE_NONE, 1, G_TYPE_POINTER);
}


static void gtk_narrative_view_init(GtkNarrativeView *e)
{
	e->vpol = GTK_SCROLL_NATURAL;
	e->hpol = GTK_SCROLL_NATURAL;
	e->vadj = gtk_adjustment_new(0, 0, 100, 1, 10, 10);
	e->hadj = gtk_adjustment_new(0, 0, 100, 1, 10, 10);
}


static void clipboard_get(GtkClipboard *cb, GtkSelectionData *seldata,
                          guint info, gpointer data)
{
	char **clipboard_data = data;

	if ( info == 0 ) {
		gtk_selection_data_set_text(seldata, clipboard_data[0], -1);

	} else if ( info == 1 ) {
		gtk_selection_data_set(seldata, gtk_selection_data_get_target(seldata),
		                       8, (guchar *)clipboard_data[1],
		                       strlen(clipboard_data[1]));

	} else {
		GdkAtom target;
		gchar *name;
		target = gtk_selection_data_get_target(seldata);
		name = gdk_atom_name(target);
		fprintf(stderr, "Don't know what to send for %s\n", name);
		g_free(name);
	}
}


static void clipboard_clear(GtkClipboard *cb, gpointer data)
{
	char **clipboard_data = data;
	free(clipboard_data[0]);
	free(clipboard_data[1]);
	free(clipboard_data);
}


static void copy_selection(GtkNarrativeView *e)
{
	GtkClipboard *cb;
	GtkTargetEntry targets[2];
	char **clipboard_data;
	size_t start_offs, end_offs;
	struct edit_pos start, end;

	start = e->sel_start;
	end = e->sel_end;
	narrative_sort_positions(&start, &end);

	clipboard_data = malloc(2*sizeof(char *));
	if ( clipboard_data == NULL ) return;

	cb = gtk_clipboard_get_default(gtk_widget_get_display(GTK_WIDGET(e)));

	start_offs = narrative_pos_trail_to_offset(e->n, start.para,
	                                           start.pos, start.trail);
	end_offs = narrative_pos_trail_to_offset(e->n, end.para,
	                                         end.pos, end.trail);

	/* Data is prepared for all the possible MIME types right now, not later
	 * when the data is requested.  This avoids having to convert
	 * everything to a new, intermediate format, or saving a copy of the
	 * entire GtkNarrativeView's state (which might change before the data
	 * gets requested).
	 * Perhaps I missed something, and there is an easier way.
	 */
	targets[0].target = "text/plain";
	targets[0].flags = 0;
	targets[0].info = 0;
	clipboard_data[0] = narrative_range_as_text(e->n, start.para, start_offs,
	                                                  end.para, end_offs);

	targets[1].target = "text/x-storycode";
	targets[1].flags = 0;
	targets[1].info = 1;
	clipboard_data[1] = narrative_range_as_storycode(e->n, start.para, start_offs,
	                                                       end.para, end_offs);

	gtk_clipboard_set_with_data(cb, targets, 2, clipboard_get, clipboard_clear,
	                            clipboard_data);
}


static gint gtknv_destroy_sig(GtkWidget *window, GtkNarrativeView *e)
{
	return 0;
}


static double gtknv_para_top(Narrative *n, int pnum)
{
	int i;
	double py = 0.0;
	for ( i=0; i<pnum; i++ ) py += narrative_item_get_height(n, i);
	return py;
}


static void draw_para_highlight(cairo_t *cr, Narrative *n, int cursor_para,
                                double w)
{
	double cx, cy;
	struct narrative_item *item;

	item = &n->items[cursor_para];
	cx = item->space_l;
	cy = gtknv_para_top(n, cursor_para) + item->space_t;

	cairo_new_path(cr);
	cairo_rectangle(cr, cx-5.0, cy-5.0, item->obj_w+10.0, item->obj_h+10.0);
	cairo_set_source_rgba(cr, 0.7, 0.7, 1.0, 0.5);
	cairo_set_line_width(cr, 5.0);
	cairo_stroke(cr);
}


static void gtknv_get_cursor_pos(Narrative *n, struct edit_pos cpos,
                                 double *x, double *y, double *h)
{
	size_t offs;
	PangoRectangle rect;
	struct narrative_item *item;

	item = &n->items[cpos.para];
	if ( !narrative_item_is_text(n, cpos.para) ) {
		*x = item->space_l;
		*y = gtknv_para_top(n, cpos.para) + item->space_t;
		*h = item->obj_h + item->space_t + item->space_b;
		return;
	}

	if ( item->layout == NULL ) {
		fprintf(stderr, "get_cursor_pos: No layout\n");
		return;
	}

	offs = narrative_pos_trail_to_offset(n, cpos.para, cpos.pos, cpos.trail);
	pango_layout_get_cursor_pos(item->layout, offs, &rect, NULL);
	*x = pango_units_to_double(rect.x) + item->space_l;
	*y = pango_units_to_double(rect.y) + gtknv_para_top(n, cpos.para) + item->space_t;
	*h = pango_units_to_double(rect.height);
}


static void gtknv_draw_caret(cairo_t *cr, Narrative *n, struct edit_pos cpos, double ww)
{
	assert(n != NULL);

	if ( narrative_item_is_text(n, cpos.para) ) {

		/* Normal text-style cursor */

		double cx, clow, chigh, h;
		const double t = 1.8;

		gtknv_get_cursor_pos(n, cpos, &cx, &clow, &h);

		chigh = clow+h;

		cairo_move_to(cr, cx, clow);
		cairo_line_to(cr, cx, chigh);

		cairo_move_to(cr, cx-t, clow-t);
		cairo_line_to(cr, cx, clow);
		cairo_move_to(cr, cx+t, clow-t);
		cairo_line_to(cr, cx, clow);

		cairo_move_to(cr, cx-t, chigh+t);
		cairo_line_to(cr, cx, chigh);
		cairo_move_to(cr, cx+t, chigh+t);
		cairo_line_to(cr, cx, chigh);

		cairo_set_source_rgb(cr, 0.86, 0.0, 0.0);
		cairo_set_line_width(cr, 1.0);
		cairo_stroke(cr);

	} else {

		/* Block highlight cursor */

		double cx, cy, cw, ch;
		struct narrative_item *item;

		item = &n->items[cpos.para];

		cx = item->space_l - 5.5;
		cy = gtknv_para_top(n, cpos.para) + item->space_t - 5.5;
		cw = item->obj_w + 11.0;
		ch = item->obj_h + 11.0;

		cairo_new_path(cr);
		cairo_rectangle(cr, cx, cy, cw, ch);
		cairo_set_source_rgb(cr, 0.86, 0.0, 0.0);
		cairo_set_line_width(cr, 1.0);
		cairo_stroke(cr);

	}
}


static void gtknv_draw_overlay(cairo_t *cr, GtkNarrativeView *e)
{
	if ( e->para_highlight ) {
		draw_para_highlight(cr, e->n, e->cpos.para, e->w);
	} else {
		gtknv_draw_caret(cr, e->n, e->cpos, e->w);
	}
}


static gboolean gtknv_draw_sig(GtkWidget *da, cairo_t *cr, GtkNarrativeView *e)
{
	if ( e->rewrap_needed ) {
		rewrap_range(e, 0, e->n->n_items);
		e->rewrap_needed = 0;
	}

	/* Ultimate background */
	cairo_set_source_rgba(cr, 0.8, 0.8, 1.0, 1.0);
	cairo_paint(cr);

	cairo_translate(cr, -e->h_scroll_pos, -e->scroll_pos);

	/* Space for ruler */
	cairo_save(cr);
	cairo_translate(cr, e->ruler_width, 0.0);

	/* Rendering background */
	cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0);
	cairo_rectangle(cr, 0.0, 0.0, e->w, e->h);
	cairo_fill(cr);

	/* Contents */
	narrative_render_cairo(e->n, cr, narrative_get_stylesheet(e->n),
	                       narrative_get_imagestore(e->n),
	                       e->scroll_pos, e->scroll_pos+e->visible_height);

	/* Editing overlay */
	cairo_translate(cr, e->n->space_l, e->n->space_t);
	gtknv_draw_overlay(cr, e);

	/* Timing ruler */
	cairo_restore(cr);
	draw_ruler(cr, e);

	return FALSE;
}


static void check_cursor_visible(GtkNarrativeView *e)
{
	double x, y, h;

	gtknv_get_cursor_pos(e->n, e->cpos, &x, &y, &h);

	/* Off the bottom? */
	if ( y - e->scroll_pos + h > e->visible_height ) {
		e->scroll_pos = y + h - e->visible_height;
		e->scroll_pos += e->n->space_b;
	}

	/* Off the top? */
	if ( y < e->scroll_pos ) {
		e->scroll_pos = y - e->n->space_t;
	}
}


static size_t gtknv_end_offset_of_para(Narrative *n, int pnum)
{
	int i;
	size_t len = 0;
	assert(pnum >= 0);
	if ( !narrative_item_is_text(n, pnum) ) return 0;
	for ( i=0; i<n->items[pnum].n_runs; i++ ) {
		len += strlen(n->items[pnum].runs[i].text);
	}
	return len;
}


static void sort_positions(struct edit_pos *a, struct edit_pos *b)
{
	if ( a->para > b->para ) {
		size_t tpos;
		int tpara, ttrail;
		tpara = b->para;   tpos = b->pos;  ttrail = b->trail;
		b->para = a->para;  b->pos = a->pos;  b->trail = a->trail;
		a->para = tpara;    a->pos = tpos;    a->trail = ttrail;
	}

	if ( (a->para == b->para) && (a->pos > b->pos) )
	{
		size_t tpos = b->pos;
		int ttrail = b->trail;
		b->pos = a->pos;  b->trail = a->trail;
		a->pos = tpos;    a->trail = ttrail;
	}
}


static void set_cursor_h_pos(GtkNarrativeView *e)
{
	double x, y, h;
	gtknv_get_cursor_pos(e->n, e->cpos, &x, &y, &h);
	e->cursor_h_pos = x;  /* Real position, not relative to PangoLayout */
}


static void gtknv_cursor_moveh(Narrative *n, struct edit_pos *cp, signed int dir)
{
	struct narrative_item *item = &n->items[cp->para];
	int np = cp->pos;
	int otrail = cp->trail;

	if ( !narrative_item_is_text(n, cp->para) ) {
		if ( dir > 0 ) {
			np = G_MAXINT;
			cp->trail = 0;
		} else {
			np = -1;
			cp->trail = 0;
		}
	} else {
		if ( item->layout == NULL ) return;
		pango_layout_move_cursor_visually(item->layout, 1, cp->pos,
		                                  cp->trail, dir,
		                                  &np, &cp->trail);
	}

	if ( np == -1 ) {
		if ( cp->para > 0 ) {
			size_t end_offs;
			cp->para--;
			end_offs = gtknv_end_offset_of_para(n, cp->para);
			if ( end_offs > 0 ) {
				cp->pos = end_offs - 1;
				cp->trail = 1;
			} else {
				/* Jumping into an empty paragraph */
				cp->pos = 0;
				cp->trail = 0;
			}
			return;
		} else {
			/* Can't move any further */
			return;
		}
	}

	if ( np == G_MAXINT ) {
		if ( cp->para < n->n_items-1 ) {
			cp->para++;
			cp->pos = 0;
			cp->trail = 0;
			return;
		} else {
			/* Can't move any further, undo change to cp->trail */
			cp->trail = otrail;
			return;
		}
	}

	cp->pos = np;
}


static void gtknv_unset_selection(GtkNarrativeView *e)
{
	int a, b;

	a = e->sel_start.para;
	b = e->sel_end.para;
	if ( a > b ) {
		a = e->sel_end.para;
		b = e->sel_start.para;
	}
	e->sel_start.para = 0;
	e->sel_start.pos = 0;
	e->sel_start.trail = 0;
	e->sel_end.para = 0;
	e->sel_end.pos = 0;
	e->sel_end.trail = 0;
	rewrap_range(e, a, b);
}


static int positions_equal(struct edit_pos a, struct edit_pos b)
{
	if ( a.para != b.para ) return 0;
	if ( a.pos != b.pos ) return 0;
	if ( a.trail != b.trail ) return 0;
	return 1;
}


static void gtknv_do_backspace(GtkNarrativeView *e, signed int dir)
{
	struct edit_pos p1, p2;
	size_t o1, o2;

	if ( !positions_equal(e->sel_start, e->sel_end) ) {

		/* Block delete */
		p1 = e->sel_start;
		p2 = e->sel_end;

	} else {

		/* Delete one character, as represented visually */
		p2 = e->cpos;
		p1 = p2;
		gtknv_cursor_moveh(e->n, &p1, dir);
		set_cursor_h_pos(e);
	}

	sort_positions(&p1, &p2);
	o1 = narrative_pos_trail_to_offset(e->n, p1.para, p1.pos, p1.trail);
	o2 = narrative_pos_trail_to_offset(e->n, p2.para, p2.pos, p2.trail);
	narrative_delete_block(e->n, p1.para, o1, p2.para, o2);
	e->cpos = p1;
	gtknv_unset_selection(e);

	/* The only paragraphs which still exist and might have been
	 * affected by the deletion are sel_start.para and the one
	 * immediately afterwards. */
	rewrap_range(e, p1.para, p1.para+1);
	update_size(e);
	check_cursor_visible(e);
	gtknv_emit_change_sig(e);
	gtknv_redraw(e);
}


static void gtknv_insert_text_in_paragraph(struct narrative_item *item, size_t offs,
                                           char *t)
{
	char *n;
	int run;
	size_t run_offs;

	run = narrative_which_run(item, offs, &run_offs);

	n = malloc(strlen(t) + strlen(item->runs[run].text) + 1);
	if ( n == NULL ) return;
	strncpy(n, item->runs[run].text, run_offs);
	n[run_offs] = '\0';
	strcat(n, t);
	strcat(n, item->runs[run].text+run_offs);
	free(item->runs[run].text);
	item->runs[run].text = n;
}


static void gtknv_insert_text(char *t, GtkNarrativeView *e)
{
	if ( !positions_equal(e->sel_start, e->sel_end) ) {
		gtknv_do_backspace(e, 0);
	}

	if ( narrative_item_is_text(e->n, e->cpos.para) ) {

		size_t off = narrative_pos_trail_to_offset(e->n, e->cpos.para,
		                                           e->cpos.pos, e->cpos.trail);

		if ( strcmp(t, "\n") == 0 ) {
			narrative_split_item(e->n, e->cpos.para, off);
			rewrap_range(e, e->cpos.para, e->cpos.para+1);
			e->cpos.para += 1;
			e->cpos.pos = 0;
			e->cpos.trail = 0;
		} else {
			gtknv_insert_text_in_paragraph(&e->n->items[e->cpos.para], off, t);
			rewrap_range(e, e->cpos.para, e->cpos.para);
			gtknv_cursor_moveh(e->n, &e->cpos, +1);
			set_cursor_h_pos(e);
		}

		update_size(e);

	} /* else do nothing */

	gtknv_emit_change_sig(e);
	check_cursor_visible(e);
	gtknv_redraw(e);
}


static gboolean gtknv_im_commit_sig(GtkIMContext *im, gchar *str,
                                    GtkNarrativeView *e)
{
	gtknv_insert_text(str, e);
	return FALSE;
}


static int gtknv_find_cursor(Narrative *n, double x, double y, struct edit_pos *pos)
{
	double cur_y;
	struct narrative_item *item;
	int i = 0;

	cur_y = n->space_t;

	do {
		cur_y += narrative_item_get_height(n, i++);
	} while ( (cur_y < y) && (i<n->n_items) );

	pos->para = i-1;
	item = &n->items[pos->para];
	if ( !narrative_item_is_text(n, pos->para) ) {
		pos->pos = 0;
		return 0;
	}

	pango_layout_xy_to_index(item->layout,
	                         pango_units_from_double(x - n->space_l - item->space_l),
	                         pango_units_from_double(y - n->space_t - gtknv_para_top(n, pos->para)),
	                         &pos->pos, &pos->trail);

	return 0;
}


static void gtknv_cursor_movev(GtkNarrativeView *e, signed int dir)
{
	int lineno;

	assert(dir != 0);

	gtknv_unset_selection(e);

	if ( narrative_item_is_text(e->n, e->cpos.para) ) {

		/* Starting in text */
		PangoLayout *layout = e->n->items[e->cpos.para].layout;

		if ( layout == NULL ) return;
		pango_layout_index_to_line_x(layout, e->cpos.pos, e->cpos.trail,
		                             &lineno, NULL);
		if ( dir > 0 ) {
			if ( lineno == pango_layout_get_line_count(layout)-1 ) {
				/* Move to next item */
				if ( e->cpos.para == e->n->n_items-1 ) {
					/* No next paragraph to move to */
				} else {
					e->cpos.para++;
					lineno = 0;
				}
			} else {
				lineno++;
			}
		} else {
			if ( lineno == 0 ) {
				/* Move to previous paragraph */
				if ( e->cpos.para == 0 ) {
					/* No previous paragraph to move to */
				} else {
					e->cpos.para--;
					if ( narrative_item_is_text(e->n, e->cpos.para) ) {
						layout = e->n->items[e->cpos.para].layout;
						lineno = pango_layout_get_line_count(layout)-1;
					}
				}
			} else {
				lineno--;
			}
		}

	} else {

		/* Starting in non-text */
		if ( dir > 0 ) {
			/* Move to next item */
			if ( e->cpos.para == e->n->n_items-1 ) {
				/* No next paragraph to move to */
			} else  {
				e->cpos.para++;
				lineno = 0;
			}
		} else {
			/* Move to previous paragraph */
			if ( e->cpos.para == 0 ) {
				/* No previous paragraph to move to */
			} else {
				e->cpos.para--;
				if ( narrative_item_is_text(e->n, e->cpos.para) ) {
					PangoLayout *layout = e->n->items[e->cpos.para].layout;
					lineno = pango_layout_get_line_count(layout)-1;
				}
			}
		}
	}

	if ( narrative_item_is_text(e->n, e->cpos.para) ) {
		/* Use the "virtual" x-position to place the cursor in this line */
		PangoLayoutLine *line;
		double x;
		line = pango_layout_get_line_readonly(e->n->items[e->cpos.para].layout, lineno);
		/* Subtract offset to PangoLayout */
		x = e->cursor_h_pos - e->n->items[e->cpos.para].space_l;
		pango_layout_line_x_to_index(line, pango_units_from_double(x),
		                             &e->cpos.pos, &e->cpos.trail);
	} /* else do nothing */
}


static gboolean gtknv_button_press_sig(GtkWidget *da, GdkEventButton *event,
                                       GtkNarrativeView *e)
{
	gdouble x, y;

	x = event->x - e->ruler_width;
	y = event->y + e->scroll_pos;

	/* Clicked an existing frame, no immediate dragging */
	e->drag_status = NARRATIVE_DRAG_STATUS_COULD_DRAG;
	gtknv_unset_selection(e);
	gtknv_find_cursor(e->n, x, y, &e->sel_start);
	e->sel_end = e->sel_start;
	e->cpos = e->sel_start;
	set_cursor_h_pos(e);

	if ( event->type == GDK_2BUTTON_PRESS ) {
		struct narrative_item *item = &e->n->items[e->cpos.para];
		if ( item->type == NARRATIVE_ITEM_SLIDE ) {
			g_signal_emit_by_name(e, "slide-double-clicked",
			                      item->slide);
		}
	}

	gtk_widget_grab_focus(GTK_WIDGET(da));
	gtknv_redraw(e);
	return FALSE;
}


static void sorti(int *a, int *b)
{
	if ( *a > *b ) {
		int tmp = *a;
		*a = *b;
		*b = tmp;
	}
}


static gboolean gtknv_motion_sig(GtkWidget *da, GdkEventMotion *event,
                                 GtkNarrativeView *e)
{
	gdouble x, y;
	struct edit_pos old_sel_end;
	int minp, maxp;

	x = event->x - e->ruler_width;
	y = event->y + e->scroll_pos;

	if ( e->drag_status == NARRATIVE_DRAG_STATUS_COULD_DRAG ) {
		/* We just got a motion signal, and the status was "could drag",
		 * therefore the drag has started. */
		e->drag_status = NARRATIVE_DRAG_STATUS_DRAGGING;
	}

	old_sel_end = e->sel_end;
	gtknv_find_cursor(e->n, x, y, &e->sel_end);

	minp = e->sel_start.para;
	maxp = e->sel_end.para;
	sorti(&minp, &maxp);
	if ( !positions_equal(e->sel_start, old_sel_end) ) {
		if ( old_sel_end.para > maxp ) maxp = old_sel_end.para;
		if ( old_sel_end.para < minp ) minp = old_sel_end.para;
	}

	rewrap_range(e, minp, maxp);
	gtknv_find_cursor(e->n, x, y, &e->cpos);
	gtknv_redraw(e);

	gdk_event_request_motions(event);
	return FALSE;
}

static void paste_storycode_received(GtkClipboard *cb, GtkSelectionData *seldata,
                                     gpointer vp)
{
	GtkNarrativeView *e = vp;
	const guchar *t;

	t = gtk_selection_data_get_data(seldata);
	if ( t == NULL ) {
		printf("NULL!\n");
		return;
	}

	printf("got SC '%s'\n", t);
	Narrative *nnew = storycode_parse_presentation((char *)t);
	narrative_debug(nnew);

	gtknv_emit_change_sig(e);
	check_cursor_visible(e);
	gtknv_redraw(e);
}


static void paste_text_received(GtkClipboard *cb, GtkSelectionData *seldata,
                                gpointer vp)
{
	GtkNarrativeView *e = vp;
	guchar *t;

	t = gtk_selection_data_get_text(seldata);
	if ( t == NULL ) return;

	gtknv_insert_text((char *)t, e);
	g_free(t);

	gtknv_emit_change_sig(e);
	check_cursor_visible(e);
	gtknv_redraw(e);
}


static void paste_targets_received(GtkClipboard *cb, GdkAtom *targets,
                                   gint n_targets, gpointer vp)
{
	GtkNarrativeView *e = vp;
	int i;
	int have_sc = 0;
	int index_sc, index_text;
	int have_text = 0;

	if ( targets == NULL ) {
		fprintf(stderr, "No paste targets offered.\n");
		return;
	}

	for ( i=0; i<n_targets; i++ ) {
		gchar *name = gdk_atom_name(targets[i]);
		if ( g_strcmp0(name, "text/x-storycode") == 0 ) {
			have_sc = 1;
			index_sc = i;
		}
		if ( g_strcmp0(name, "text/plain") == 0 ) {
			have_text = 1;
			index_text = i;
		}
		g_free(name);
	}

	if ( have_sc ) {
		gtk_clipboard_request_contents(cb, targets[index_sc],
		                               paste_storycode_received, e);
	} else if ( have_text ) {
		gtk_clipboard_request_contents(cb, targets[index_text],
		                               paste_text_received, e);
	} else {
		fprintf(stderr, _("No useful formats for paste\n"));
	}
}


void gtknv_do_paste(GtkNarrativeView *e)
{
	GtkClipboard *cb;
	cb = gtk_clipboard_get_default(gtk_widget_get_display(GTK_WIDGET(e)));
	gtk_clipboard_request_targets(cb, paste_targets_received, e);
}


static gboolean gtknv_key_press_sig(GtkWidget *da, GdkEventKey *event,
                                    GtkNarrativeView *e)
{
	gboolean r;
	int claim = 0;

	/* Throw the event to the IM context and let it sort things out */
	r = gtk_im_context_filter_keypress(GTK_IM_CONTEXT(e->im_context),
		                           event);
	if ( r ) return FALSE;  /* IM ate it */

	switch ( event->keyval ) {

		case GDK_KEY_Left :
		gtknv_cursor_moveh(e->n, &e->cpos, -1);
		check_cursor_visible(e);
		set_cursor_h_pos(e);
		gtknv_redraw(e);
		claim = 1;
		break;

		case GDK_KEY_Right :
		gtknv_cursor_moveh(e->n, &e->cpos, +1);
		check_cursor_visible(e);
		set_cursor_h_pos(e);
		gtknv_redraw(e);
		claim = 1;
		break;

		case GDK_KEY_Up :
		gtknv_cursor_movev(e, -1);
		check_cursor_visible(e);
		gtknv_redraw(e);
		claim = 1;
		break;

		case GDK_KEY_Down :
		gtknv_cursor_movev(e, +1);
		check_cursor_visible(e);
		gtknv_redraw(e);
		claim = 1;
		break;

		case GDK_KEY_Return :
		gtknv_im_commit_sig(NULL, "\n", e);
		claim = 1;
		break;

		case GDK_KEY_BackSpace :
		gtknv_do_backspace(e, -1);
		claim = 1;
		break;

		case GDK_KEY_Delete :
		gtknv_do_backspace(e, +1);
		claim = 1;
		break;

		case GDK_KEY_C :
		case GDK_KEY_c :
		if ( event->state & GDK_CONTROL_MASK ) {
			copy_selection(e);
		}
		break;

		case GDK_KEY_X :
		case GDK_KEY_x :
		if ( event->state & GDK_CONTROL_MASK ) {
			copy_selection(e);
			gtknv_do_backspace(e, 0);
		}
		break;

		case GDK_KEY_V :
		case GDK_KEY_v :
		if ( event->state & GDK_CONTROL_MASK ) {
			gtknv_do_paste(e);
		}
		break;

	}

	if ( claim ) return TRUE;
	return FALSE;
}


static gboolean gtknv_dnd_motion(GtkWidget *widget, GdkDragContext *drag_context,
                                 gint x, gint y, guint time, GtkNarrativeView *e)
{
	return TRUE;
}


static gboolean gtknv_dnd_drop(GtkWidget *widget, GdkDragContext *drag_context,
                               gint x, gint y, guint time, GtkNarrativeView *e)
{
	GdkAtom target;

	target = gtk_drag_dest_find_target(widget, drag_context, NULL);

	if ( target == GDK_NONE ) {
		gtk_drag_finish(drag_context, FALSE, FALSE, time);
	} else {
		gtk_drag_get_data(widget, drag_context, target, time);
	}

	return TRUE;
}


static void gtknv_dnd_receive(GtkWidget *widget, GdkDragContext *drag_context,
                              gint x, gint y, GtkSelectionData *seldata,
                              guint info, guint time, GtkNarrativeView *e)
{
}


static void gtknv_dnd_leave(GtkWidget *widget, GdkDragContext *drag_context,
                            guint time, GtkNarrativeView *nview)
{
	nview->drag_status = NARRATIVE_DRAG_STATUS_NONE;
}


static gint gtknv_realise_sig(GtkWidget *da, GtkNarrativeView *e)
{
	GdkWindow *win;

	/* Keyboard and input method stuff */
	e->im_context = gtk_im_multicontext_new();
	win = gtk_widget_get_window(GTK_WIDGET(e));
	gtk_im_context_set_client_window(GTK_IM_CONTEXT(e->im_context), win);
	gdk_window_set_accept_focus(win, TRUE);
	g_signal_connect(G_OBJECT(e->im_context), "commit", G_CALLBACK(gtknv_im_commit_sig), e);
	g_signal_connect(G_OBJECT(e), "key-press-event", G_CALLBACK(gtknv_key_press_sig), e);

	return FALSE;
}


GtkWidget *gtk_narrative_view_new(Narrative *n)
{
	GtkNarrativeView *nview;
	GtkTargetEntry targets[1];

	nview = g_object_new(GTK_TYPE_NARRATIVE_VIEW, NULL);

	nview->w = 100;
	nview->h = 100;
	nview->scroll_pos = 0;
	nview->n = n;
	nview->rewrap_needed = 0;
	nview->para_highlight = 0;
	nview->ruler_width = 100.0;

	gtk_widget_set_size_request(GTK_WIDGET(nview),
	                            nview->w, nview->h);

	g_signal_connect(G_OBJECT(nview), "destroy",
	                 G_CALLBACK(gtknv_destroy_sig), nview);
	g_signal_connect(G_OBJECT(nview), "realize",
	                 G_CALLBACK(gtknv_realise_sig), nview);
	g_signal_connect(G_OBJECT(nview), "button-press-event",
	                 G_CALLBACK(gtknv_button_press_sig), nview);
	g_signal_connect(G_OBJECT(nview), "motion-notify-event",
	                 G_CALLBACK(gtknv_motion_sig), nview);
	g_signal_connect(G_OBJECT(nview), "configure-event",
	                 G_CALLBACK(gtknv_resize_sig), nview);

	/* Drag and drop */
	targets[0].target = "text/uri-list";
	targets[0].flags = 0;
	targets[0].info = 1;
	gtk_drag_dest_set(GTK_WIDGET(nview), 0, targets, 1,
	                  GDK_ACTION_PRIVATE);
	g_signal_connect(nview, "drag-data-received",
	                 G_CALLBACK(gtknv_dnd_receive), nview);
	g_signal_connect(nview, "drag-motion",
	                 G_CALLBACK(gtknv_dnd_motion), nview);
	g_signal_connect(nview, "drag-drop",
	                 G_CALLBACK(gtknv_dnd_drop), nview);
	g_signal_connect(nview, "drag-leave",
	                 G_CALLBACK(gtknv_dnd_leave), nview);

	gtk_widget_set_can_focus(GTK_WIDGET(nview), TRUE);
	gtk_widget_add_events(GTK_WIDGET(nview),
	                      GDK_POINTER_MOTION_HINT_MASK
	                       | GDK_BUTTON1_MOTION_MASK
	                       | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK
	                       | GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK
	                       | GDK_SCROLL_MASK);

	g_signal_connect(G_OBJECT(nview), "draw",
			 G_CALLBACK(gtknv_draw_sig), nview);

	gtk_widget_grab_focus(GTK_WIDGET(nview));

	gtk_widget_show(GTK_WIDGET(nview));

	return GTK_WIDGET(nview);
}


void gtk_narrative_view_set_para_highlight(GtkNarrativeView *e, int para_highlight)
{
	e->para_highlight = para_highlight;
	gtknv_redraw(e);
}


int gtk_narrative_view_get_cursor_para(GtkNarrativeView *e)
{
	return e->cpos.para;
}


void gtk_narrative_view_set_cursor_para(GtkNarrativeView *e, signed int pos)
{
	double h;
	int i;

	if ( pos < 0 ) pos = e->n->n_items-1;
	e->cpos.para = pos;
	e->cpos.pos = 0;
	e->cpos.trail = 0;

	h = 0;
	for ( i=0; i<e->cpos.para; i++ ) {
		h += narrative_item_get_height(e->n, i);
	}
	h += narrative_item_get_height(e->n, e->cpos.para)/2;
	e->scroll_pos = h - (e->visible_height/2);
	set_vertical_params(e);

	gtknv_redraw(e);
}


int maybe_split_para(GtkNarrativeView *e)
{
	if ( narrative_item_is_text(e->n, e->cpos.para) ) {
		size_t off = narrative_pos_trail_to_offset(e->n, e->cpos.para,
		                                           e->cpos.pos, e->cpos.trail);
		if ( (off > 0) && (off < gtknv_end_offset_of_para(e->n, e->cpos.para)) ) {
			narrative_split_item(e->n, e->cpos.para, off);
			return e->cpos.para+1;
		} else if ( off == 0 ) {
			return e->cpos.para;
		} else {
			return e->cpos.para+1;
		}
	} else {
		return e->cpos.para+1;
	}
}


static void post_add_stuff(GtkNarrativeView *e)
{
	rewrap_range(e, e->cpos.para, e->cpos.para+2);
	e->cpos.para++;
	e->cpos.pos = 0;
	e->cpos.trail = 0;
	update_size(e);
	check_cursor_visible(e);
	gtknv_emit_change_sig(e);
	gtknv_redraw(e);
}


void gtk_narrative_view_add_slide_at_cursor(GtkNarrativeView *e)
{
	int insert_pos;
	Slide *s = slide_new();
	if ( s == NULL ) return;
	insert_pos = maybe_split_para(e);
	narrative_insert_slide(e->n, insert_pos, s);
	post_add_stuff(e);
}


static struct text_run *blank_run()
{
	struct text_run *runs;

	runs = malloc(sizeof(struct text_run));
	if ( runs == NULL ) return NULL;

	runs[0].text = strdup("");
	runs[0].type = TEXT_RUN_NORMAL;
	if ( runs[0].text == NULL ) {
		free(runs);
		return NULL;
	}

	return runs;
}


void gtk_narrative_view_add_prestitle_at_cursor(GtkNarrativeView *e)
{
	int insert_pos;
	struct text_run *runs = blank_run();
	if ( runs == NULL ) return;
	insert_pos = maybe_split_para(e);
	narrative_insert_prestitle(e->n, insert_pos, runs, 1);
	post_add_stuff(e);
}


void gtk_narrative_view_add_segstart_at_cursor(GtkNarrativeView *e)
{
	int insert_pos;
	struct text_run *runs = blank_run();
	if ( runs == NULL ) return;
	insert_pos = maybe_split_para(e);
	narrative_insert_segstart(e->n, insert_pos, runs, 1);
	post_add_stuff(e);
}


void gtk_narrative_view_add_segend_at_cursor(GtkNarrativeView *e)
{
	int insert_pos;
	insert_pos = maybe_split_para(e);
	narrative_insert_segend(e->n, insert_pos);
	post_add_stuff(e);
}


void gtk_narrative_view_add_bp_at_cursor(GtkNarrativeView *e)
{
	int insert_pos;
	struct text_run *runs = blank_run();
	if ( runs == NULL ) return;
	insert_pos = maybe_split_para(e);
	narrative_insert_bp(e->n, insert_pos, runs, 1);
	post_add_stuff(e);
}


void gtk_narrative_view_add_eop_at_cursor(GtkNarrativeView *e)
{
	int insert_pos = maybe_split_para(e);
	narrative_insert_eop(e->n, insert_pos);
	post_add_stuff(e);
}


void gtk_narrative_view_redraw(GtkNarrativeView *e)
{
	e->rewrap_needed = 1;
	gtknv_emit_change_sig(e);
	gtknv_redraw(e);
}