aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/shortcut-bar/e-icon-bar-text-item.c
blob: 21c4fd9580b0e39f545a4643dd79732d3253d289 (plain) (blame)
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
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

/* 
 * Author : 
 *  Damon Chaplin <damon@helixcode.com>
 *
 * Copyright 1999, Helix Code, Inc.
 *
 * This program 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 2 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */

/*
 * Based on gnome-icon-text-item:  an editable text block with word wrapping
 * for the GNOME canvas.
 *
 * Copyright (C) 1998, 1999 The Free Software Foundation
 *
 * Authors: Miguel de Icaza <miguel@gnu.org>
 *          Federico Mena <federico@gimp.org>
 */

/*
 * EIconBarTextItem - An editable canvas text item for the EIconBar.
 */

#include <math.h>
#include <gdk/gdkkeysyms.h>
#include <gtk/gtkmain.h>
#include <gtk/gtksignal.h>
#include <gtk/gtkwindow.h>
#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-i18n.h>

#include "e-icon-bar-text-item.h"


/* Margins used to display the information */
#define MARGIN_X 2
#define MARGIN_Y 2

/* Default fontset to be used if the user specified fontset is not found */
#define DEFAULT_FONT_NAME "-adobe-helvetica-medium-r-normal--*-100-*-*-*-*-*-*,"    \
              "-*-*-medium-r-normal--10-*-*-*-*-*-*-*,*"

/* Separators for text layout */
#define DEFAULT_SEPARATORS " \t-.[]#"

/* This is the string to draw when the text is clipped, e.g. '...'. */
static gchar *e_icon_bar_text_item_ellipsis;

/* Aliases to minimize screen use in my laptop */
#define ITI(x)       E_ICON_BAR_TEXT_ITEM (x)
#define ITI_CLASS(x) E_ICON_BAR_TEXT_ITEM_CLASS (x)
#define IS_ITI(x)    E_IS_ICON_BAR_TEXT_ITEM (x)


typedef EIconBarTextItem Iti;

/* Private part of the EIconBarTextItem structure */
typedef struct {
    /* Font */
    GdkFont *font;

    /* Hack: create an offscreen window and place an entry inside it */
    GtkEntry *entry;
    GtkWidget *entry_top;

    /* Whether the user pressed the mouse while the item was unselected */
    guint unselected_click : 1;

    /* Whether we need to update the position */
    guint need_pos_update : 1;

    /* Whether we need to update the font */
    guint need_font_update : 1;

    /* Whether we need to update the text */
    guint need_text_update : 1;

    /* Whether we need to update because the editing/selected state changed */
    guint need_state_update : 1;
} ItiPrivate;

typedef struct _EIconBarTextItemInfoRow   EIconBarTextItemInfoRow;

struct _EIconBarTextItemInfoRow {
    gchar *text;
    gint width;
    GdkWChar *text_wc;  /* text in wide characters */
    gint text_length;   /* number of characters */
};

struct _EIconBarTextItemInfo {
    GList *rows;
    GdkFont *font;
    gint width;
    gint height;
    gint baseline_skip;
};

static GnomeCanvasItemClass *parent_class;

enum {
    ARG_0,
    ARG_XALIGN,
    ARG_JUSTIFY,
    ARG_MAX_LINES,
    ARG_SHOW_ELLIPSIS
};

enum {
    TEXT_CHANGED,
    HEIGHT_CHANGED,
    WIDTH_CHANGED,
    EDITING_STARTED,
    EDITING_STOPPED,
    SELECTION_STARTED,
    SELECTION_STOPPED,
    LAST_SIGNAL
};

static guint iti_signals [LAST_SIGNAL] = { 0 };

static GdkFont *default_font;

static void e_icon_bar_text_item_free_info (EIconBarTextItemInfo *ti);
static EIconBarTextItemInfo *e_icon_bar_text_item_layout_text (EIconBarTextItem *iti, GdkFont *font, const gchar *text, const gchar *separators, gint max_width, gboolean confine);
static void e_icon_bar_text_item_paint_text (EIconBarTextItem     *iti,
                         EIconBarTextItemInfo *ti,
                         GdkDrawable      *drawable,
                         GdkGC        *gc,
                         gint          x,
                         gint          y,
                         GtkJustification      just);


/* Stops the editing state of an icon text item */
static void
iti_stop_editing (Iti *iti)
{
    ItiPrivate *priv;

    priv = iti->priv;

    iti->editing = FALSE;

    gtk_widget_destroy (priv->entry_top);
    priv->entry = NULL;
    priv->entry_top = NULL;

    priv->need_state_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));

    gtk_signal_emit (GTK_OBJECT (iti), iti_signals[EDITING_STOPPED]);
}

/* Lays out the text in an icon item */
static void
layout_text (Iti *iti)
{
    ItiPrivate *priv;
    char *text;
    int old_width, old_height;
    int width, height;

    priv = iti->priv;

    /* Save old size */

    if (iti->ti) {
        old_width = iti->ti->width + 2 * MARGIN_X;
        old_height = iti->ti->height + 2 * MARGIN_Y;

        e_icon_bar_text_item_free_info (iti->ti);
    } else {
        old_width = 2 * MARGIN_X;
        old_height = 2 * MARGIN_Y;
    }

    /* Change the text layout */

    if (iti->editing)
        text = gtk_entry_get_text (priv->entry);
    else
        text = iti->text;

    iti->ti = e_icon_bar_text_item_layout_text (iti, priv->font,
                            text,
                            DEFAULT_SEPARATORS,
                            iti->width - 2 * MARGIN_X,
                            TRUE);

    /* Check the sizes and see if we need to emit any signals */

    width = iti->ti->width + 2 * MARGIN_X;
    height = iti->ti->height + 2 * MARGIN_Y;

    if (width != old_width)
        gtk_signal_emit (GTK_OBJECT (iti), iti_signals[WIDTH_CHANGED]);

    if (height != old_height)
        gtk_signal_emit (GTK_OBJECT (iti), iti_signals[HEIGHT_CHANGED]);
}

/* Accepts the text in the off-screen entry of an icon text item */
static void
iti_edition_accept (Iti *iti)
{
    ItiPrivate *priv;
    gboolean accept;

    priv = iti->priv;
    accept = TRUE;

    gtk_signal_emit (GTK_OBJECT (iti), iti_signals [TEXT_CHANGED], &accept);

    if (iti->editing){
        if (accept) {
            if (iti->is_text_allocated)
                g_free (iti->text);

            iti->text = g_strdup (gtk_entry_get_text (priv->entry));
            iti->is_text_allocated = 1;
        }

        iti_stop_editing (iti);
    }

    priv->need_text_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));
}

/* Callback used when the off-screen entry of an icon text item is activated.
 * When this happens, we have to accept edition.
 */
static void
iti_entry_activate (GtkWidget *entry, Iti *iti)
{
    iti_edition_accept (iti);
}

/* Starts the editing state of an icon text item */
static void
iti_start_editing (Iti *iti)
{
    ItiPrivate *priv;

    priv = iti->priv;

    if (iti->editing)
        return;

    /* Trick: The actual edition of the entry takes place in a GtkEntry
     * which is placed offscreen.  That way we get all of the advantages
     * from GtkEntry without duplicating code.  Yes, this is a hack.
     */
    priv->entry = (GtkEntry *) gtk_entry_new ();
    gtk_entry_set_text (priv->entry, iti->text);
    gtk_signal_connect (GTK_OBJECT (priv->entry), "activate",
                GTK_SIGNAL_FUNC (iti_entry_activate), iti);

    priv->entry_top = gtk_window_new (GTK_WINDOW_POPUP);
    gtk_container_add (GTK_CONTAINER (priv->entry_top), GTK_WIDGET (priv->entry));
    gtk_widget_set_uposition (priv->entry_top, 20000, 20000);
    gtk_widget_show_all (priv->entry_top);

    gtk_editable_select_region (GTK_EDITABLE (priv->entry), 0, -1);

    iti->editing = TRUE;

    priv->need_text_update = TRUE;
    priv->need_state_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));

    gtk_signal_emit (GTK_OBJECT (iti), iti_signals[EDITING_STARTED]);
}

/* Destroy method handler for the icon text item */
static void
iti_destroy (GtkObject *object)
{
    Iti *iti;
    ItiPrivate *priv;
    GnomeCanvasItem *item;

    g_return_if_fail (object != NULL);
    g_return_if_fail (IS_ITI (object));

    iti = ITI (object);
    priv = iti->priv;
    item = GNOME_CANVAS_ITEM (object);

    /* FIXME: stop selection and editing */

    /* Queue redraw of bounding box */

    gnome_canvas_request_redraw (item->canvas, item->x1, item->y1, item->x2, item->y2);

    /* Free everything */

    if (iti->fontname)
        g_free (iti->fontname);

    if (iti->text && iti->is_text_allocated)
        g_free (iti->text);

    if (iti->ti)
        e_icon_bar_text_item_free_info (iti->ti);

    if (priv->font)
        gdk_font_unref (priv->font);

    if (priv->entry_top)
        gtk_widget_destroy (priv->entry_top);

    g_free (priv);

    if (GTK_OBJECT_CLASS (parent_class)->destroy)
        (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}

/* set_arg handler for the icon text item */
static void
iti_set_arg (GtkObject *object, GtkArg *arg, guint arg_id)
{
    Iti *iti;
    GnomeCanvasItem *item;
    ItiPrivate *priv;
    gfloat xalign;
    gint max_lines;
    gboolean show_ellipsis;
    GtkJustification justification;

    iti = ITI (object);
    item = GNOME_CANVAS_ITEM (object);
    priv = iti->priv;

    switch (arg_id) {
    case ARG_XALIGN:
        xalign = GTK_VALUE_FLOAT (*arg);
        if (iti->xalign != xalign) {
            iti->xalign = xalign;
            priv->need_pos_update = TRUE;
            gnome_canvas_item_request_update (item);
        }
        break;
    case ARG_JUSTIFY:
        justification = GTK_VALUE_ENUM (*arg);
        if (iti->justification != justification) {
            iti->justification = justification;
            priv->need_text_update = TRUE;
            gnome_canvas_item_request_update (item);
        }
        break;
    case ARG_MAX_LINES:
        max_lines = GTK_VALUE_INT (*arg);
        if (iti->max_lines != max_lines) {
            iti->max_lines = max_lines;
            priv->need_text_update = TRUE;
            gnome_canvas_item_request_update (item);
        }
        break;
    case ARG_SHOW_ELLIPSIS:
        show_ellipsis = GTK_VALUE_BOOL (*arg);
        if (iti->show_ellipsis != show_ellipsis) {
            iti->show_ellipsis = show_ellipsis;
            priv->need_text_update = TRUE;
            gnome_canvas_item_request_update (item);
        }
        break;
    default:
        break;
    }
}

static void
iti_get_arg (GtkObject *object, GtkArg *arg, guint arg_id)
{
    Iti *iti;
    ItiPrivate *priv;

    iti = ITI (object);
    priv = iti->priv;

    switch (arg_id) {
    case ARG_XALIGN:
        GTK_VALUE_FLOAT (*arg) = iti->xalign;
        break;
    case ARG_JUSTIFY:
        GTK_VALUE_ENUM (*arg) = iti->justification;
        break;
    case ARG_MAX_LINES:
        GTK_VALUE_INT (*arg) = iti->max_lines;
        break;
    case ARG_SHOW_ELLIPSIS:
        GTK_VALUE_BOOL (*arg) = iti->show_ellipsis;
        break;
    default:
        arg->type = GTK_TYPE_INVALID;
        break;
    }
}

/* Loads the default font for icon text items if necessary */
static GdkFont *
get_default_font (void)
{
    if (!default_font) {
        /* FIXME: this is never unref-ed */
        default_font = gdk_fontset_load (DEFAULT_FONT_NAME);
        g_assert (default_font != NULL);
    }

    return gdk_font_ref (default_font);
}

/* Recomputes the bounding box of an icon text item */
static void
recompute_bounding_box (Iti *iti)
{
    GnomeCanvasItem *item;
    double affine[6];
    ArtPoint p, q;
    int x1, y1, x2, y2;
    int width, height;

    item = GNOME_CANVAS_ITEM (iti);

    /* Compute width, height, position */

    width = iti->ti->width + 2 * MARGIN_X;
    height = iti->ti->height + 2 * MARGIN_Y;

    x1 = iti->x + (iti->width - width) * iti->xalign;
    y1 = iti->y;
    x2 = x1 + width;
    y2 = y1 + height;

    /* Translate to world coordinates */

    gnome_canvas_item_i2w_affine (item, affine);

    p.x = x1;
    p.y = y1;
    art_affine_point (&q, &p, affine);
    item->x1 = q.x;
    item->y1 = q.y;

    p.x = x2;
    p.y = y2;
    art_affine_point (&q, &p, affine);
    item->x2 = q.x;
    item->y2 = q.y;
}

/* Update method for the icon text item */
static void
iti_update (GnomeCanvasItem *item, double *affine, ArtSVP *clip_path, int flags)
{
    Iti *iti;
    ItiPrivate *priv;

    iti = ITI (item);
    priv = iti->priv;

    if (parent_class->update)
        (* parent_class->update) (item, affine, clip_path, flags);

    /* If necessary, queue a redraw of the old bounding box */

    if ((flags & GNOME_CANVAS_UPDATE_VISIBILITY)
        || (flags & GNOME_CANVAS_UPDATE_AFFINE)
        || priv->need_pos_update
        || priv->need_font_update
        || priv->need_text_update)
        gnome_canvas_request_redraw (item->canvas, item->x1, item->y1, item->x2, item->y2);

     if (priv->need_text_update)
         layout_text (iti);

    /* Compute new bounds */

    if (priv->need_pos_update
        || priv->need_font_update
        || priv->need_text_update)
        recompute_bounding_box (iti);

    /* Queue redraw */

    gnome_canvas_request_redraw (item->canvas, item->x1, item->y1, item->x2, item->y2);

    priv->need_pos_update = FALSE;
    priv->need_font_update = FALSE;
    priv->need_text_update = FALSE;
    priv->need_state_update = FALSE;
}

/* Draw the icon text item's text when it is being edited */
static void
iti_paint_text (Iti *iti, GdkDrawable *drawable, int x, int y)
{
    ItiPrivate *priv;
        EIconBarTextItemInfoRow *row;
    EIconBarTextItemInfo *ti;
    GtkStyle *style;
    GdkGC *fg_gc, *bg_gc;
    GdkGC *gc, *bgc, *sgc, *bsgc;
        GList *item;
        int xpos, len;

    priv = iti->priv;
    style = GTK_WIDGET (GNOME_CANVAS_ITEM (iti)->canvas)->style;

    ti = iti->ti;
    len = 0;
        y += ti->font->ascent;

    /*
     * Pointers to all of the GCs we use
     */
    gc = style->black_gc;
    bgc = style->white_gc;
    sgc = style->fg_gc [GTK_STATE_SELECTED];
    bsgc = style->bg_gc [GTK_STATE_SELECTED];

        for (item = ti->rows; item; item = item->next, len += (row ? row->text_length : 0)) {
        GdkWChar *text_wc;
        int text_length;
        int cursor, offset, i;
        int sel_start, sel_end;

        row = item->data;

                if (!row) {
            y += ti->baseline_skip;
            continue;
        }

        text_wc = row->text_wc;
        text_length = row->text_length;

        switch (iti->justification) {
        case GTK_JUSTIFY_LEFT:
            xpos = 0;
            break;

        case GTK_JUSTIFY_RIGHT:
            xpos = ti->width - row->width;
            break;

        case GTK_JUSTIFY_CENTER:
            xpos = (ti->width - row->width) / 2;
            break;

        default:
            /* Anyone care to implement GTK_JUSTIFY_FILL? */
            g_warning ("Justification type %d not supported.  Using left-justification.",
                   (int) iti->justification);
            xpos = 0;
        }

        sel_start = GTK_EDITABLE (priv->entry)->selection_start_pos - len;
        sel_end = GTK_EDITABLE (priv->entry)->selection_end_pos - len;
        offset = 0;
        cursor = GTK_EDITABLE (priv->entry)->current_pos - len;

        for (i = 0; *text_wc; text_wc++, i++) {
            int size, px;

            size = gdk_text_width_wc (ti->font, text_wc, 1);

            if (i >= sel_start && i < sel_end) {
                fg_gc = sgc;
                bg_gc = bsgc;
            } else {
                fg_gc = gc;
                bg_gc = bgc;
            }

            px = x + xpos + offset;
            gdk_draw_rectangle (drawable,
                        bg_gc,
                        TRUE,
                        px,
                        y - ti->font->ascent,
                        size, ti->baseline_skip);

            gdk_draw_text_wc (drawable,
                      ti->font,
                      fg_gc,
                      px, y,
                      text_wc, 1);

            if (cursor == i)
                gdk_draw_line (drawable,
                           gc,
                           px - 1,
                           y - ti->font->ascent,
                           px - 1,
                           y + ti->font->descent - 1);

            offset += size;
        }

        if (cursor == i) {
            int px = x + xpos + offset;

            gdk_draw_line (drawable,
                       gc,
                       px - 1,
                       y - ti->font->ascent,
                       px - 1,
                       y + ti->font->descent - 1);
        }

        y += ti->baseline_skip;
        }
}

/* Draw method handler for the icon text item */
static void
iti_draw (GnomeCanvasItem *item, GdkDrawable *drawable, int x, int y, int width, int height)
{
    Iti *iti;
    GtkStyle *style;
    int w, h;
    int xofs, yofs;

    iti = ITI (item);

    if (iti->ti) {
        w = iti->ti->width + 2 * MARGIN_X;
        h = iti->ti->height + 2 * MARGIN_Y;
    } else {
        w = 2 * MARGIN_X;
        h = 2 * MARGIN_Y;
    }

    xofs = item->x1 - x;
    yofs = item->y1 - y;

    style = GTK_WIDGET (item->canvas)->style;

    if (iti->selected && !iti->editing)
        gdk_draw_rectangle (drawable,
                    style->bg_gc[GTK_STATE_SELECTED],
                    TRUE,
                    xofs, yofs,
                    w, h);

    if (iti->editing) {
        gdk_draw_rectangle (drawable,
                    style->white_gc,
                    TRUE,
                    xofs + 1, yofs + 1,
                    w - 2, h - 2);
        gdk_draw_rectangle (drawable,
                    style->black_gc,
                    FALSE,
                    xofs, yofs,
                    w - 1, h - 1);

        iti_paint_text (iti, drawable, xofs + MARGIN_X, yofs + MARGIN_Y);
    } else
        e_icon_bar_text_item_paint_text (iti, iti->ti,
                         drawable,
                         style->fg_gc[(iti->selected
                                   ? GTK_STATE_SELECTED
                                   : GTK_STATE_NORMAL)],
                         xofs + MARGIN_X,
                         yofs + MARGIN_Y,
                         iti->justification);
}

/* Point method handler for the icon text item */
static double
iti_point (GnomeCanvasItem *item, double x, double y, int cx, int cy, GnomeCanvasItem **actual_item)
{
    double dx, dy;

    *actual_item = item;

    if (cx < item->x1)
        dx = item->x1 - cx;
    else if (cx > item->x2)
        dx = cx - item->x2;
    else
        dx = 0.0;

    if (cy < item->y1)
        dy = item->y1 - cy;
    else if (cy > item->y2)
        dy = cy - item->y2;
    else
        dy = 0.0;

    return sqrt (dx * dx + dy * dy);
}

/* Given X, Y, a mouse position, return a valid index inside the edited text */
static int
iti_idx_from_x_y (Iti *iti, int x, int y)
{
    ItiPrivate *priv;
        EIconBarTextItemInfoRow *row;
    int lines;
    int line, col, i, idx;
    GList *l;

    priv = iti->priv;

    if (iti->ti->rows == NULL)
        return 0;

    lines = g_list_length (iti->ti->rows);
    line = y / iti->ti->baseline_skip;

    if (line < 0)
        line = 0;
    else if (lines < line + 1)
        line = lines - 1;

    /* Compute the base index for this line */
    for (l = iti->ti->rows, idx = i = 0; i < line; l = l->next, i++) {
        row = l->data;
        idx += row->text_length;
    }

    row = g_list_nth (iti->ti->rows, line)->data;
    col = 0;
    if (row != NULL) {
        int first_char;
        int last_char;

        first_char = (iti->ti->width - row->width) / 2;
        last_char = first_char + row->width;

        if (x < first_char) {
            /* nothing */
        } else if (x > last_char) {
            col = row->text_length;
        } else {
            GdkWChar *s = row->text_wc;
            int pos = first_char;

            while (pos < last_char) {
                pos += gdk_text_width_wc (iti->ti->font, s, 1);
                if (pos > x)
                    break;
                col++;
                s++;
            }
        }
    }

    idx += col;

    g_assert (idx <= priv->entry->text_size);

    return idx;
}

/* Starts the selection state in the icon text item */
static void
iti_start_selecting (Iti *iti, int idx, guint32 event_time)
{
    ItiPrivate *priv;
    GtkEditable *e;
    GdkCursor *ibeam;

    priv = iti->priv;
    e = GTK_EDITABLE (priv->entry);

    gtk_editable_select_region (e, idx, idx);
    gtk_editable_set_position (e, idx);
    ibeam = gdk_cursor_new (GDK_XTERM);
    gnome_canvas_item_grab (GNOME_CANVAS_ITEM (iti),
                GDK_BUTTON_RELEASE_MASK |
                GDK_POINTER_MOTION_MASK,
                ibeam, event_time);
    gdk_cursor_destroy (ibeam);

    gtk_editable_select_region (e, idx, idx);
    e->current_pos = e->selection_start_pos;
    e->has_selection = TRUE;
    iti->selecting = TRUE;

    priv->need_state_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));

    gtk_signal_emit (GTK_OBJECT (iti), iti_signals[SELECTION_STARTED]);
}

/* Stops the selection state in the icon text item */
static void
iti_stop_selecting (Iti *iti, guint32 event_time)
{
    ItiPrivate *priv;
    GnomeCanvasItem *item;
    GtkEditable *e;

    priv = iti->priv;
    item = GNOME_CANVAS_ITEM (iti);
    e = GTK_EDITABLE (priv->entry);

    gnome_canvas_item_ungrab (item, event_time);
    e->has_selection = FALSE;
    iti->selecting = FALSE;

    priv->need_state_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));
    gtk_signal_emit (GTK_OBJECT (iti), iti_signals[SELECTION_STOPPED]);
}

/* Handles selection range changes on the icon text item */
static void
iti_selection_motion (Iti *iti, int idx)
{
    ItiPrivate *priv;
    GtkEditable *e;

    priv = iti->priv;
    e = GTK_EDITABLE (priv->entry);

    if (idx < e->current_pos) {
        e->selection_start_pos = idx;
        e->selection_end_pos   = e->current_pos;
    } else {
        e->selection_start_pos = e->current_pos;
        e->selection_end_pos  = idx;
    }

    priv->need_state_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));
}

/* Event handler for icon text items */
static gint
iti_event (GnomeCanvasItem *item, GdkEvent *event)
{
    Iti *iti;
    ItiPrivate *priv;
    int idx;
    double x, y;

    iti = ITI (item);
    priv = iti->priv;

    switch (event->type) {
    case GDK_KEY_PRESS:
        if (!iti->editing)
            break;

        if (event->key.keyval == GDK_Escape)
            iti_stop_editing (iti);
        else
            gtk_widget_event (GTK_WIDGET (priv->entry), event);

        priv->need_text_update = TRUE;
        gnome_canvas_item_request_update (item);
        return TRUE;

    case GDK_BUTTON_PRESS:
        if (!iti->editing)
            break;

        if (iti->editing && event->button.button == 1) {
            x = event->button.x - (item->x1 + MARGIN_X);
            y = event->button.y - (item->y1 + MARGIN_Y);
            idx = iti_idx_from_x_y (iti, x, y);

            iti_start_selecting (iti, idx, event->button.time);
        }

        return TRUE;

    case GDK_MOTION_NOTIFY:
        if (!iti->selecting)
            break;

        x = event->motion.x - (item->x1 + MARGIN_X);
        y = event->motion.y - (item->y1 + MARGIN_Y);
        idx = iti_idx_from_x_y (iti, x, y);
        iti_selection_motion (iti, idx);
        return TRUE;

    case GDK_BUTTON_RELEASE:
        if (iti->selecting && event->button.button == 1)
            iti_stop_selecting (iti, event->button.time);
        else
            break;

        return TRUE;

    default:
        break;
    }

    return FALSE;
}

/* Bounds method handler for the icon text item */
static void
iti_bounds (GnomeCanvasItem *item, double *x1, double *y1, double *x2, double *y2)
{
    Iti *iti;
    ItiPrivate *priv;
    int width, height;

    iti = ITI (item);
    priv = iti->priv;

    if (priv->need_text_update) {
        layout_text (iti);
        priv->need_text_update = FALSE;
    }

    if (iti->ti) {
        width = iti->ti->width + 2 * MARGIN_X;
        height = iti->ti->height + 2 * MARGIN_Y;
    } else {
        width = 2 * MARGIN_X;
        height = 2 * MARGIN_Y;
    }

    *x1 = iti->x + (iti->width - width) * iti->xalign;
    *y1 = iti->y;
    *x2 = *x1 + width;
    *y2 = *y1 + height;
}

/* Class initialization function for the icon text item */
static void
iti_class_init (EIconBarTextItemClass *text_item_class)
{
    GtkObjectClass  *object_class;
    GnomeCanvasItemClass *item_class;

    object_class = (GtkObjectClass *) text_item_class;
    item_class   = (GnomeCanvasItemClass *) text_item_class;

    parent_class = gtk_type_class (gnome_canvas_item_get_type ());

    gtk_object_add_arg_type ("EIconBarTextItem::xalign", GTK_TYPE_FLOAT, GTK_ARG_READWRITE, ARG_XALIGN);
    gtk_object_add_arg_type ("EIconBarTextItem::justify", GTK_TYPE_JUSTIFICATION, GTK_ARG_READWRITE, ARG_JUSTIFY);
    gtk_object_add_arg_type ("EIconBarTextItem::max_lines", GTK_TYPE_INT, GTK_ARG_READWRITE, ARG_MAX_LINES);
    gtk_object_add_arg_type ("EIconBarTextItem::show_ellipsis", GTK_TYPE_BOOL, GTK_ARG_READWRITE, ARG_SHOW_ELLIPSIS);

    iti_signals [TEXT_CHANGED] =
        gtk_signal_new (
            "text_changed",
            GTK_RUN_LAST,
            object_class->type,
            GTK_SIGNAL_OFFSET (EIconBarTextItemClass, text_changed),
            gtk_marshal_BOOL__NONE,
            GTK_TYPE_BOOL, 0);

    iti_signals [HEIGHT_CHANGED] =
        gtk_signal_new (
            "height_changed",
            GTK_RUN_LAST,
            object_class->type,
            GTK_SIGNAL_OFFSET (EIconBarTextItemClass, height_changed),
            gtk_marshal_NONE__NONE,
            GTK_TYPE_NONE, 0);

    iti_signals [WIDTH_CHANGED] =
        gtk_signal_new (
            "width_changed",
            GTK_RUN_LAST,
            object_class->type,
            GTK_SIGNAL_OFFSET (EIconBarTextItemClass, width_changed),
            gtk_marshal_NONE__NONE,
            GTK_TYPE_NONE, 0);

    iti_signals[EDITING_STARTED] =
        gtk_signal_new (
            "editing_started",
            GTK_RUN_LAST,
            object_class->type,
            GTK_SIGNAL_OFFSET (EIconBarTextItemClass, editing_started),
            gtk_marshal_NONE__NONE,
            GTK_TYPE_NONE, 0);

    iti_signals[EDITING_STOPPED] =
        gtk_signal_new (
            "editing_stopped",
            GTK_RUN_LAST,
            object_class->type,
            GTK_SIGNAL_OFFSET (EIconBarTextItemClass, editing_stopped),
            gtk_marshal_NONE__NONE,
            GTK_TYPE_NONE, 0);

    iti_signals[SELECTION_STARTED] =
        gtk_signal_new (
            "selection_started",
            GTK_RUN_FIRST,
            object_class->type,
            GTK_SIGNAL_OFFSET (EIconBarTextItemClass, selection_started),
            gtk_marshal_NONE__NONE,
            GTK_TYPE_NONE, 0);

    iti_signals[SELECTION_STOPPED] =
        gtk_signal_new (
            "selection_stopped",
            GTK_RUN_FIRST,
            object_class->type,
            GTK_SIGNAL_OFFSET (EIconBarTextItemClass, selection_stopped),
            gtk_marshal_NONE__NONE,
            GTK_TYPE_NONE, 0);

    gtk_object_class_add_signals (object_class, iti_signals, LAST_SIGNAL);

    object_class->destroy = iti_destroy;
    object_class->get_arg = iti_get_arg;
    object_class->set_arg = iti_set_arg;

    item_class->update = iti_update;
    item_class->draw = iti_draw;
    item_class->point = iti_point;
    item_class->bounds = iti_bounds;
    item_class->event = iti_event;

    e_icon_bar_text_item_ellipsis = _("...");
}

/* Object initialization function for the icon text item */
static void
iti_init (EIconBarTextItem *iti)
{
    ItiPrivate *priv;

    priv = g_new0 (ItiPrivate, 1);
    iti->priv = priv;

    iti->xalign = 0.5;
    iti->justification = GTK_JUSTIFY_CENTER;
    iti->max_lines = -1;
    iti->show_ellipsis = TRUE;
}

/**
 * e_icon_bar_text_item_configure:
 * @iti: An #EIconBarTextItem.
 * @x: X position in which to place the item.
 * @y: Y position in which to place the item.
 * @width: Maximum width allowed for this item, to be used for word wrapping.
 * @fontname: Name of the fontset that should be used to display the text.
 * @text: Text that is going to be displayed.
 * @is_static: Whether @text points to a static string or not.
 *
 * This routine is used to configure an #EIconBarTextItem.
 *
 * @x and @y specify the coordinates where the item is placed in the canvas.
 * The @x coordinate should be the leftmost position that the item can
 * assume at any one time, that is, the left margin of the column in which the
 * icon is to be placed.  The @y coordinate specifies the top of the item.
 *
 * @width is the maximum width allowed for this icon text item. The coordinates
 * define the upper-left corner of an item with maximum width; this may
 * actually be outside the bounding box of the item if the text is narrower
 * than the maximum width.
 *
 * If @is_static is true, it means that there is no need for the item to
 * allocate memory for the string (it is a guarantee that the text is allocated
 * by the caller and it will not be deallocated during the lifetime of this
 * item).  This is an optimization to reduce memory usage for large icon sets.
 */
void
e_icon_bar_text_item_configure (EIconBarTextItem *iti, int x, int y,
                int width, const char *fontname,
                const char *text,
                gboolean is_static)
{
    ItiPrivate *priv;

    g_return_if_fail (iti != NULL);
    g_return_if_fail (IS_ITI (iti));
    g_return_if_fail (width > 2 * MARGIN_X);
    g_return_if_fail (text != NULL);

    priv = iti->priv;

    iti->x = x;
    iti->y = y;
    iti->width = width;

    if (iti->text && iti->is_text_allocated)
        g_free (iti->text);

    iti->is_text_allocated = !is_static;

    /* This cast is to shut up the compiler */
    if (is_static)
        iti->text = (char *) text;
    else
        iti->text = g_strdup (text);

    if (iti->fontname)
        g_free (iti->fontname);

    iti->fontname = g_strdup (fontname ? fontname : DEFAULT_FONT_NAME);

    if (priv->font)
        gdk_font_unref (priv->font);

    priv->font = NULL;
    if (fontname)
        priv->font = gdk_fontset_load (iti->fontname);
    if (!priv->font)
        priv->font = get_default_font ();

    /* Request update */

    priv->need_pos_update = TRUE;
    priv->need_font_update = TRUE;
    priv->need_text_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));
}

/**
 * e_icon_bar_text_item_set_width:
 * @iti: An #EIconBarTextItem.
 * @width: Maximum width allowed for this item, to be used for word wrapping.
 *
 * This routine is used to set the maximum width of an #EIconBarTextItem.
 */
void
e_icon_bar_text_item_set_width (EIconBarTextItem *iti, int width)
{
    ItiPrivate *priv;

    g_return_if_fail (iti != NULL);
    g_return_if_fail (IS_ITI (iti));
    g_return_if_fail (width > 2 * MARGIN_X);

    priv = iti->priv;

    if (iti->width == width)
        return;

    iti->width = width;

    /* Request update */
    priv->need_text_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));
}

/**
 * e_icon_bar_text_item_setxy:
 * @iti: An #EIconBarTextItem.
 * @x: X position.
 * @y: Y position.
 *
 * Sets the coordinates at which the #EIconBarTextItem should be placed.
 *
 * See also: e_icon_bar_text_item_configure().
 */
void
e_icon_bar_text_item_setxy (EIconBarTextItem *iti, int x, int y)
{
    ItiPrivate *priv;

    g_return_if_fail (iti != NULL);
    g_return_if_fail (IS_ITI (iti));

    priv = iti->priv;

    iti->x = x;
    iti->y = y;

    priv->need_pos_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));
}

/**
 * e_icon_bar_text_item_select:
 * @iti: An #EIconBarTextItem.
 * @sel: Whether the item should be displayed as selected.
 *
 * This function is used to control whether an icon text item is displayed as
 * selected or not. Mouse events are ignored by the item when it is unselected;
 * when the user clicks on a selected icon text item, it will start the text
 * editing process.
 */
void
e_icon_bar_text_item_select (EIconBarTextItem *iti, int sel)
{
    ItiPrivate *priv;

    g_return_if_fail (iti != NULL);
    g_return_if_fail (IS_ITI (iti));

    priv = iti->priv;

    if (!iti->selected == !sel)
        return;

    iti->selected = sel ? TRUE : FALSE;

    if (!iti->selected && iti->editing)
        iti_edition_accept (iti);

    priv->need_state_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));
}

/**
 * e_icon_bar_text_item_get_text:
 * @iti: An #EIconBarTextItem.
 *
 * Returns the current text.  The client should not free this string, as it is
 * internal to the #EIconBarTextItem.
 */
char *
e_icon_bar_text_item_get_text (EIconBarTextItem *iti)
{
    ItiPrivate *priv;

    g_return_val_if_fail (iti != NULL, NULL);
    g_return_val_if_fail (IS_ITI (iti), NULL);

    priv = iti->priv;

    if (iti->editing)
        return gtk_entry_get_text (priv->entry);
    else
        return iti->text;
}


/**
 * e_icon_bar_text_item_set_text:
 * @iti: An #EIconBarTextItem.
 * @text: Text that is going to be displayed.
 * @is_static: Whether @text points to a static string or not.
 *
 * If @is_static is true, it means that there is no need for the item to
 * allocate memory for the string (it is a guarantee that the text is allocated
 * by the caller and it will not be deallocated during the lifetime of this
 * item).  This is an optimization to reduce memory usage for large icon sets.
 */
void
e_icon_bar_text_item_set_text (EIconBarTextItem *iti, const char *text,
                   gboolean is_static)
{
    ItiPrivate *priv;

    g_return_if_fail (iti != NULL);
    g_return_if_fail (IS_ITI (iti));
    g_return_if_fail (text != NULL);

    priv = iti->priv;

    if (iti->text && iti->is_text_allocated)
        g_free (iti->text);

    iti->is_text_allocated = !is_static;

    /* This cast is to shut up the compiler */
    if (is_static)
        iti->text = (char *) text;
    else
        iti->text = g_strdup (text);

    /* Request update */

    priv->need_text_update = TRUE;
    gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (iti));
}


/**
 * e_icon_bar_text_item_start_editing:
 * @iti: An #EIconBarTextItem.
 *
 * Starts the editing state of an #EIconBarTextItem.
 **/
void
e_icon_bar_text_item_start_editing (EIconBarTextItem *iti)
{
    g_return_if_fail (iti != NULL);
    g_return_if_fail (IS_ITI (iti));

    if (iti->editing)
        return;

    iti->selected = TRUE; /* Ensure that we are selected */
    gnome_canvas_item_grab_focus (GNOME_CANVAS_ITEM (iti));
    iti_start_editing (iti);
}

/**
 * e_icon_bar_text_item_stop_editing:
 * @iti: An #EIconBarTextItem.
 * @accept: Whether to accept the current text or to discard it.
 *
 * Terminates the editing state of an icon text item.  The @accept argument
 * controls whether the item's current text should be accepted or discarded.
 * If it is discarded, then the icon's original text will be restored.
 **/
void
e_icon_bar_text_item_stop_editing (EIconBarTextItem *iti,
                   gboolean accept)
{
    g_return_if_fail (iti != NULL);
    g_return_if_fail (IS_ITI (iti));

    if (!iti->editing)
        return;

    if (accept)
        iti_edition_accept (iti);
    else
        iti_stop_editing (iti);
}


/**
 * e_icon_bar_text_item_get_type:
 *
 * Registers the &EIconBarTextItem class if necessary, and returns the type ID
 * associated to it.
 *
 * Return value: the type ID of the #EIconBarTextItem class.
 **/
GtkType
e_icon_bar_text_item_get_type (void)
{
    static GtkType iti_type = 0;

    if (!iti_type) {
        static const GtkTypeInfo iti_info = {
            "EIconBarTextItem",
            sizeof (EIconBarTextItem),
            sizeof (EIconBarTextItemClass),
            (GtkClassInitFunc) iti_class_init,
            (GtkObjectInitFunc) iti_init,
            NULL, /* reserved_1 */
            NULL, /* reserved_2 */
            (GtkClassInitFunc) NULL
        };

        iti_type = gtk_type_unique (gnome_canvas_item_get_type (), &iti_info);
    }

    return iti_type;
}


static void
free_row (gpointer data, gpointer user_data)
{
    EIconBarTextItemInfoRow *row;

    if (data) {
        row = data;
        g_free (row->text);
        g_free (row->text_wc);
        g_free (row);
    }
}

/*
 * e_icon_bar_text_item_free_info:
 * @ti: An icon text info structure.
 *
 * Frees a &EIconBarTextItemInfo structure.  You should call this instead of
 * freeing the structure yourself.
 */
static void
e_icon_bar_text_item_free_info (EIconBarTextItemInfo *ti)
{
    g_list_foreach (ti->rows, free_row, NULL);
    g_list_free (ti->rows);
    g_free (ti);
}

/*
 * e_icon_bar_text_item_layout_text:
 * @font:       Name of the font that will be used to render the text.
 * @text:       Text to be formatted.
 * @separators: Separators used for word wrapping, can be NULL.
 * @max_width:  Width in pixels to be used for word wrapping.
 * @confine:    Whether it is mandatory to wrap at @max_width.
 *
 * Creates a new &EIconBarTextItemInfo structure by wrapping the specified
 * text.  If non-NULL, the @separators argument defines a set of characters
 * to be used as word delimiters for performing word wrapping.  If it is
 * NULL, then only spaces will be used as word delimiters.
 *
 * The @max_width argument is used to specify the width at which word
 * wrapping will be performed.  If there is a very long word that does not
 * fit in a single line, the @confine argument can be used to specify
 * whether the word should be unconditionally split to fit or whether
 * the maximum width should be increased as necessary.
 *
 * Return value: A newly-created &EIconBarTextItemInfo structure.
 */
static EIconBarTextItemInfo *
e_icon_bar_text_item_layout_text (EIconBarTextItem *iti, GdkFont *font,
                  const gchar *text, const gchar *separators,
                  gint max_width, gboolean confine)
{
    EIconBarTextItemInfo *ti;
    EIconBarTextItemInfoRow *row;
    GdkWChar *row_end;
    GdkWChar *s, *word_start, *word_end, *old_word_end;
    GdkWChar *sub_text;
    int i, w_len, w;
    GdkWChar *text_wc, *text_iter, *separators_wc;
    int text_len_wc, separators_len_wc;
    gboolean restrict_lines;
    int lines;

    g_return_val_if_fail (font != NULL, NULL);
    g_return_val_if_fail (text != NULL, NULL);

    if (!separators)
        separators = " ";

    text_wc = g_new (GdkWChar, strlen (text) + 1);
    text_len_wc = gdk_mbstowcs (text_wc, text, strlen (text));
    if (text_len_wc < 0) text_len_wc = 0;
    text_wc[text_len_wc] = 0;

    separators_wc = g_new (GdkWChar, strlen (separators) + 1);
    separators_len_wc = gdk_mbstowcs (separators_wc, separators, strlen (separators));
    if (separators_len_wc < 0) separators_len_wc = 0;
    separators_wc[separators_len_wc] = 0;
    
    ti = g_new (EIconBarTextItemInfo, 1);

    ti->rows = NULL;
    ti->font = font;
    ti->width = 0;
    ti->height = 0;
    ti->baseline_skip = font->ascent + font->descent;

    word_end = NULL;

    if (!iti->editing && iti->max_lines != -1)
        restrict_lines = TRUE;
    else
        restrict_lines = FALSE;

    text_iter = text_wc;
    lines = 0;
    while (*text_iter) {
        /* If we are restricting the height, and this is the last line,
           and we are displaying the ellipsis, then subtract the width
           of the ellipsis from our max_width. */
        if (restrict_lines && lines == iti->max_lines - 1
            && iti->show_ellipsis) {
            max_width -= gdk_string_measure (font, e_icon_bar_text_item_ellipsis);
        }

        for (row_end = text_iter; *row_end != 0 && *row_end != '\n'; row_end++);

        /* Accumulate words from this row until they don't fit in the max_width */

        s = text_iter;

        while (s < row_end) {
            word_start = s;
            old_word_end = word_end;
            for (word_end = word_start; *word_end; word_end++) {
                GdkWChar *p;
                for (p = separators_wc; *p; p++) {
                    if (*word_end == *p)
                        goto found;
                }
            }
          found:
            if (word_end < row_end)
                word_end++;

            if (gdk_text_width_wc (font, text_iter, word_end - text_iter) > max_width) {
                if (word_start == text_iter
                    || (restrict_lines
                    && lines == iti->max_lines - 1)) {
                    if (confine) {
                        /* We must force-split the word.  Look for a proper
                                                 * place to do it.
                         */

                        w_len = word_end - text_iter;

                        for (i = 1; i < w_len; i++) {
                            w = gdk_text_width_wc (font, text_iter, i);
                            if (w > max_width) {
                                if (i == 1)
                                    /* Shit, not even a single character fits */
                                    max_width = w;
                                else
                                    break;
                            }
                        }

                        /* Create sub-row with the chars that fit */

                        sub_text = g_new (GdkWChar, i);
                        memcpy (sub_text, text_iter, (i - 1) * sizeof (GdkWChar));
                        sub_text[i - 1] = 0;
                        
                        row = g_new (EIconBarTextItemInfoRow, 1);
                        row->text_wc = sub_text;
                        row->text_length = i - 1;
                        row->width = gdk_text_width_wc (font, sub_text, i - 1);
                        row->text = gdk_wcstombs(sub_text);
                        if (row->text == NULL)
                            row->text = g_strdup("");

                        ti->rows = g_list_append (ti->rows, row);

                        if (row->width > ti->width)
                            ti->width = row->width;

                        ti->height += ti->baseline_skip;

                        /* Bump the text pointer */

                        text_iter += i - 1;
                        s = text_iter;

                        lines++;
                        if (restrict_lines
                            && lines >= iti->max_lines)
                            break;

                        continue;
                    } else
                        max_width = gdk_text_width_wc (font, word_start, word_end - word_start);

                    continue; /* Retry split */
                } else {
                    word_end = old_word_end; /* Restore to region that does fit */
                    break; /* Stop the loop because we found something that doesn't fit */
                }
            }

            s = word_end;
        }

        if (restrict_lines && lines >= iti->max_lines)
            break;

        /* Append row */

        if (text_iter == row_end) {
            /* We are on a newline, so append an empty row */

            ti->rows = g_list_append (ti->rows, NULL);
            ti->height += ti->baseline_skip;

            /* Next! */

            text_iter = row_end + 1;

            lines++;
            if (restrict_lines && lines >= iti->max_lines)
                break;

        } else {
            /* Create subrow and append it to the list */

            int sub_len;
            sub_len = word_end - text_iter;

            sub_text = g_new (GdkWChar, sub_len + 1);
            memcpy (sub_text, text_iter, sub_len * sizeof (GdkWChar));
            sub_text[sub_len] = 0;

            row = g_new (EIconBarTextItemInfoRow, 1);
            row->text_wc = sub_text;
            row->text_length = sub_len;
            row->width = gdk_text_width_wc (font, sub_text, sub_len);
            row->text = gdk_wcstombs(sub_text);
            if (row->text == NULL)
                row->text = g_strdup("");

            ti->rows = g_list_append (ti->rows, row);

            if (row->width > ti->width)
                ti->width = row->width;

            ti->height += ti->baseline_skip;

            /* Next! */

            text_iter = word_end;

            lines++;
            if (restrict_lines && lines >= iti->max_lines)
                break;
        }
    }

    /* Check if we've had to clip the text. */
    iti->is_clipped = *text_iter ? TRUE : FALSE;

    g_free (text_wc);
    g_free (separators_wc);
    return ti;
}

/*
 * e_icon_bar_text_item_paint_text:
 * @ti:       An icon text info structure.
 * @drawable: Target drawable.
 * @gc:       GC used to render the string.
 * @x:        Left coordinate for text.
 * @y:        Upper coordinate for text.
 * @just:     Justification for text.
 *
 * Paints the formatted text in the icon text info structure onto a drawable.
 * This is just a sample implementation; applications can choose to use other
 * rendering functions.
 */
static void
e_icon_bar_text_item_paint_text (EIconBarTextItem *iti,
                 EIconBarTextItemInfo *ti,
                 GdkDrawable *drawable, GdkGC *gc,
                 gint x, gint y, GtkJustification just)
{
    GList *item;
    EIconBarTextItemInfoRow *row;
    int xpos, line, width;
    gboolean show_ellipsis;

    g_return_if_fail (ti != NULL);
    g_return_if_fail (drawable != NULL);
    g_return_if_fail (gc != NULL);

    y += ti->font->ascent;

    for (item = ti->rows, line = 1; item; item = item->next, line++) {

        if (item->data) {
            row = item->data;
            width = row->width;
        }

        /* If this is the last line, and the text has been clipped,
           and show_ellipsis is TRUE, display '...' */
        if (line == iti->max_lines && iti->is_clipped) {
            show_ellipsis = TRUE;
            width += gdk_string_measure (ti->font, e_icon_bar_text_item_ellipsis);
        } else {
            show_ellipsis = FALSE;
        }

        switch (just) {
        case GTK_JUSTIFY_LEFT:
            xpos = 0;
            break;

        case GTK_JUSTIFY_RIGHT:
            xpos = ti->width - width;
            break;

        case GTK_JUSTIFY_CENTER:
            xpos = (ti->width - width) / 2;
            break;

        default:
            /* Anyone care to implement GTK_JUSTIFY_FILL? */
            g_warning ("Justification type %d not supported.  Using left-justification.",
                   (int) just);
            xpos = 0;
        }

        if (item->data)
            gdk_draw_text_wc (drawable, ti->font, gc, x + xpos, y, row->text_wc, row->text_length);

        if (show_ellipsis)
            gdk_draw_string (drawable, ti->font, gc,
                     x + xpos + row->width, y,
                     e_icon_bar_text_item_ellipsis);
            
        y += ti->baseline_skip;
    }
}