Codebase list sugar-log-activity / fc1ab00
New icon wrap, separators removed Part of changes in toolbars recommended by Design Team Signed-off-by: Agustin Zubiaga <aguszs97@gmail.com> Reviewed-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Gonzalo Odiard <gonzalo@laptop.org> Manuel Quiñones authored 12 years ago Gonzalo Odiard committed 12 years ago
2 changed file(s) with 43 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
0 <?xml version="1.0" encoding="UTF-8"?>
1 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
2 <!ENTITY stroke_color "#FFFFFF">
3 ]>
4 <svg
5 xmlns="http://www.w3.org/2000/svg"
6 version="1.1"
7 width="55"
8 height="55"
9 viewBox="0 0 55 55.000001"
10 id="svg2"
11 xml:space="preserve"><path
12 d="m 4.2043405,14.774001 37.4365555,0"
13 id="line5"
14 style="fill:#4c4d4f;stroke:&stroke_color;;stroke-width:3.5;display:inline" /><line
15 style="fill:#4c4d4f;stroke:&stroke_color;;stroke-width:3.5;display:inline"
16 id="line7"
17 y2="23.360001"
18 y1="23.360001"
19 x2="35.440342"
20 x1="4.2043405"
21 display="inline" /><line
22 style="fill:#4c4d4f;stroke:&stroke_color;;stroke-width:3.5;display:inline"
23 id="line9"
24 y2="31.945002"
25 y1="31.945002"
26 x2="26.677341"
27 x1="4.2043405"
28 display="inline" /><line
29 style="fill:#4c4d4f;stroke:&stroke_color;;stroke-width:3.5;display:inline"
30 id="line11"
31 y2="40.531002"
32 y1="40.531002"
33 x2="34.954342"
34 x1="4.2043405"
35 display="inline" /><path
36 d="m 43.196156,24.814867 c 2.648216,-3.222567 7.528743,-4.693905 4.035316,-9.873535"
37 id="line3687"
38 style="fill:none;stroke:&stroke_color;;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /><path
39 d="m 49.421192,24.365844 -6.31252,0.536505 0.536505,-6.31252"
40 id="polyline3689"
41 style="fill:none;stroke:&stroke_color;;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /></svg>
358358
359359 toolbar_box.toolbar.insert(activity_button, -1)
360360
361 separator = gtk.SeparatorToolItem()
362 separator.set_draw(False)
363 toolbar_box.toolbar.insert(separator, -1)
364
365361 copy = CopyButton()
366362 copy.connect('clicked', self.__copy_clicked_cb)
367363 toolbar_box.toolbar.insert(copy, -1)
368364
369 wrap_btn = ToggleToolButton('format-justify-left')
365 wrap_btn = ToggleToolButton("format-wrap")
370366 wrap_btn.set_tooltip(_('Word Wrap'))
371367 wrap_btn.connect('clicked', self._wrap_cb)
372368 toolbar_box.toolbar.insert(wrap_btn, -1)
373
374 separator = gtk.SeparatorToolItem()
375 separator.set_draw(False)
376 toolbar_box.toolbar.insert(separator, -1)
377369
378370 search_entry = iconentry.IconEntry()
379371 search_entry.set_size_request(gtk.gdk.screen_width() / 3, -1)
397389 toolbar_box.toolbar.insert(self._search_next, -1)
398390
399391 self._update_search_buttons()
400
401 separator = gtk.SeparatorToolItem()
402 toolbar_box.toolbar.insert(separator, -1)
403392
404393 edit_toolbar = gtk.Toolbar()
405394