├── cursor
├── sugar
│ ├── .gitignore
│ ├── close.in
│ ├── hand1.in
│ ├── hand2.in
│ ├── link.in
│ ├── minus.in
│ ├── plus.in
│ ├── circle.in
│ ├── eraser.in
│ ├── exchange.in
│ ├── fleur.in
│ ├── left_ptr.in
│ ├── pencil.in
│ ├── xterm.in
│ ├── center_ptr.in
│ ├── crosshair.in
│ ├── forbidden.in
│ ├── hand_open.in
│ ├── paintbrush.in
│ ├── right_ptr.in
│ ├── top_side.in
│ ├── color-picker.in
│ ├── hand_closed.in
│ ├── paint-bucket.in
│ ├── right_side.in
│ ├── sb_up_arrow.in
│ ├── based_arrow_up.in
│ ├── left_ptr_modify.in
│ ├── question_arrow.in
│ ├── sb_down_arrow.in
│ ├── sb_left_arrow.in
│ ├── sb_right_arrow.in
│ ├── based_arrow_down.in
│ ├── based_arrow_left.in
│ ├── based_arrow_right.in
│ ├── sb_h_double_arrow.in
│ ├── sb_v_double_arrow.in
│ ├── bottom_left_corner.in
│ ├── bottom_right_corner.in
│ ├── pngs
│ │ ├── close.png
│ │ ├── fleur.png
│ │ ├── hand1.png
│ │ ├── hand2.png
│ │ ├── link.png
│ │ ├── minus.png
│ │ ├── plus.png
│ │ ├── xterm.png
│ │ ├── busy_0.png
│ │ ├── busy_1.png
│ │ ├── busy_10.png
│ │ ├── busy_11.png
│ │ ├── busy_2.png
│ │ ├── busy_3.png
│ │ ├── busy_4.png
│ │ ├── busy_5.png
│ │ ├── busy_6.png
│ │ ├── busy_7.png
│ │ ├── busy_8.png
│ │ ├── busy_9.png
│ │ ├── circle.png
│ │ ├── eraser.png
│ │ ├── pencil.png
│ │ ├── center_ptr.png
│ │ ├── crosshair.png
│ │ ├── exchange.png
│ │ ├── forbidden.png
│ │ ├── hand_open.png
│ │ ├── left_ptr.png
│ │ ├── paintbrush.png
│ │ ├── right_ptr.png
│ │ ├── right_side.png
│ │ ├── top_side.png
│ │ ├── color-picker.png
│ │ ├── hand_closed.png
│ │ ├── paint-bucket.png
│ │ ├── sb_up_arrow.png
│ │ ├── based_arrow_up.png
│ │ ├── left_ptr_modify.png
│ │ ├── question_arrow.png
│ │ ├── sb_down_arrow.png
│ │ ├── sb_left_arrow.png
│ │ ├── sb_right_arrow.png
│ │ ├── based_arrow_down.png
│ │ ├── based_arrow_left.png
│ │ ├── based_arrow_right.png
│ │ ├── left_ptr_watch_0.png
│ │ ├── left_ptr_watch_1.png
│ │ ├── left_ptr_watch_10.png
│ │ ├── left_ptr_watch_11.png
│ │ ├── left_ptr_watch_2.png
│ │ ├── left_ptr_watch_3.png
│ │ ├── left_ptr_watch_4.png
│ │ ├── left_ptr_watch_5.png
│ │ ├── left_ptr_watch_6.png
│ │ ├── left_ptr_watch_7.png
│ │ ├── left_ptr_watch_8.png
│ │ ├── left_ptr_watch_9.png
│ │ ├── sb_h_double_arrow.png
│ │ ├── sb_v_double_arrow.png
│ │ ├── bottom_left_corner.png
│ │ └── bottom_right_corner.png
│ ├── busy.in
│ └── left_ptr_watch.in
├── Makefile.am
└── sugar-lh
│ ├── link.in
│ ├── plus.in
│ ├── close.in
│ ├── fleur.in
│ ├── hand1.in
│ ├── hand2.in
│ ├── minus.in
│ ├── pencil.in
│ ├── xterm.in
│ ├── circle.in
│ ├── eraser.in
│ ├── exchange.in
│ ├── forbidden.in
│ ├── left_ptr.in
│ ├── top_side.in
│ ├── center_ptr.in
│ ├── crosshair.in
│ ├── hand_open.in
│ ├── paintbrush.in
│ ├── right_ptr.in
│ ├── right_side.in
│ ├── sb_up_arrow.in
│ ├── color-picker.in
│ ├── hand_closed.in
│ ├── paint-bucket.in
│ ├── question_arrow.in
│ ├── sb_down_arrow.in
│ ├── sb_left_arrow.in
│ ├── based_arrow_down.in
│ ├── based_arrow_up.in
│ ├── left_ptr_modify.in
│ ├── sb_right_arrow.in
│ ├── based_arrow_left.in
│ ├── based_arrow_right.in
│ ├── bottom_left_corner.in
│ ├── sb_h_double_arrow.in
│ ├── sb_v_double_arrow.in
│ ├── bottom_right_corner.in
│ ├── pngs
│ ├── link.png
│ ├── plus.png
│ ├── busy_0.png
│ ├── busy_1.png
│ ├── busy_10.png
│ ├── busy_11.png
│ ├── busy_2.png
│ ├── busy_3.png
│ ├── busy_4.png
│ ├── busy_5.png
│ ├── busy_6.png
│ ├── busy_7.png
│ ├── busy_8.png
│ ├── busy_9.png
│ ├── circle.png
│ ├── close.png
│ ├── eraser.png
│ ├── fleur.png
│ ├── hand1.png
│ ├── hand2.png
│ ├── minus.png
│ ├── pencil.png
│ ├── xterm.png
│ ├── crosshair.png
│ ├── exchange.png
│ ├── forbidden.png
│ ├── hand_open.png
│ ├── left_ptr.png
│ ├── right_ptr.png
│ ├── top_side.png
│ ├── center_ptr.png
│ ├── color-picker.png
│ ├── hand_closed.png
│ ├── paint-bucket.png
│ ├── paintbrush.png
│ ├── right_side.png
│ ├── sb_up_arrow.png
│ ├── based_arrow_up.png
│ ├── question_arrow.png
│ ├── sb_down_arrow.png
│ ├── sb_left_arrow.png
│ ├── sb_right_arrow.png
│ ├── based_arrow_down.png
│ ├── based_arrow_left.png
│ ├── based_arrow_right.png
│ ├── left_ptr_modify.png
│ ├── left_ptr_watch_0.png
│ ├── left_ptr_watch_1.png
│ ├── left_ptr_watch_10.png
│ ├── left_ptr_watch_11.png
│ ├── left_ptr_watch_2.png
│ ├── left_ptr_watch_3.png
│ ├── left_ptr_watch_4.png
│ ├── left_ptr_watch_5.png
│ ├── left_ptr_watch_6.png
│ ├── left_ptr_watch_7.png
│ ├── left_ptr_watch_8.png
│ ├── left_ptr_watch_9.png
│ ├── sb_h_double_arrow.png
│ ├── sb_v_double_arrow.png
│ ├── bottom_left_corner.png
│ └── bottom_right_corner.png
│ ├── busy.in
│ └── left_ptr_watch.in
├── gtk3
├── Makefile.am
└── theme
│ ├── assets
│ ├── 72
│ │ ├── checkbox-unchecked.svg
│ │ ├── checkbox-unchecked-selected.svg
│ │ ├── Makefile.am
│ │ ├── viewsource-imageBox-bg.svg
│ │ ├── checkbox-checked.svg
│ │ ├── checkbox-checked-selected.svg
│ │ ├── radio.svg
│ │ └── radio-selected.svg
│ ├── 100
│ │ ├── Makefile.am
│ │ ├── viewsource-imageBox-bg.svg
│ │ ├── checkbox-unchecked.svg
│ │ ├── checkbox-unchecked-selected.svg
│ │ └── radio.svg
│ ├── Makefile.am
│ ├── cursor-handle-top.svg
│ ├── cursor-handle-bottom.svg
│ └── cursor-handle-insertion.svg
│ ├── gtk.css
│ └── settings.ini.em
├── gtk
├── Makefile.am
├── engine
│ ├── Makefile.am
│ └── sugar-utils.h
└── theme
│ └── Makefile.am
├── icons
├── scalable
│ ├── device
│ │ ├── battery-000.icon
│ │ ├── battery-010.icon
│ │ ├── battery-020.icon
│ │ ├── battery-030.icon
│ │ ├── battery-040.icon
│ │ ├── battery-050.icon
│ │ ├── battery-060.icon
│ │ ├── battery-070.icon
│ │ ├── battery-080.icon
│ │ ├── battery-090.icon
│ │ ├── battery-100.icon
│ │ ├── network-mesh.icon
│ │ ├── network-wireless-000.icon
│ │ ├── network-wireless-020.icon
│ │ ├── network-wireless-040.icon
│ │ ├── network-wireless-060.icon
│ │ ├── network-wireless-080.icon
│ │ ├── network-wireless-100.icon
│ │ ├── network-wireless-connected-000.icon
│ │ ├── network-wireless-connected-020.icon
│ │ ├── network-wireless-connected-040.icon
│ │ ├── network-wireless-connected-060.icon
│ │ ├── network-wireless-connected-080.icon
│ │ ├── network-wireless-connected-100.icon
│ │ ├── network-adhoc-1.svg
│ │ ├── battery-100.svg
│ │ ├── battery-000.svg
│ │ ├── network-wireless-000.svg
│ │ ├── network-adhoc-6.svg
│ │ ├── network-mesh.svg
│ │ ├── drive.svg
│ │ ├── media.svg
│ │ ├── drive-harddisk.svg
│ │ ├── drive-harddisk-usb.svg
│ │ ├── media-disk.svg
│ │ ├── media-optical.svg
│ │ ├── network-adhoc-11.svg
│ │ ├── speaker-100.svg
│ │ ├── speaker-muted-000.svg
│ │ ├── speaker-muted-033.svg
│ │ ├── speaker-muted-066.svg
│ │ ├── speaker-muted-100.svg
│ │ ├── microphone.svg
│ │ ├── camera.svg
│ │ ├── media-flash-sd.svg
│ │ ├── user-documents.svg
│ │ ├── battery-010.svg
│ │ ├── battery-020.svg
│ │ ├── battery-030.svg
│ │ ├── battery-040.svg
│ │ ├── battery-050.svg
│ │ ├── battery-060.svg
│ │ ├── battery-070.svg
│ │ ├── battery-080.svg
│ │ ├── battery-090.svg
│ │ ├── speaker-033.svg
│ │ ├── speaker-066.svg
│ │ ├── network-adhoc-1-connected.svg
│ │ ├── network-gsm.svg
│ │ ├── media-audio-input.svg
│ │ ├── battery-charging-100.svg
│ │ ├── network-adhoc-6-connected.svg
│ │ ├── network-wireless-connected-000.svg
│ │ ├── speaker-000.svg
│ │ ├── battery-charging-000.svg
│ │ └── computer.svg
│ ├── Makefile.am
│ ├── apps
│ │ └── Makefile.am
│ ├── categories
│ │ ├── Makefile.am
│ │ └── preferences-system.svg
│ ├── control
│ │ ├── Makefile.am
│ │ └── control-popup-arrow.svg
│ ├── status
│ │ ├── Makefile.am
│ │ ├── data-upload.svg
│ │ ├── data-download.svg
│ │ ├── audio-volume-high.svg
│ │ ├── audio-volume-low.svg
│ │ ├── audio-volume-medium.svg
│ │ └── audio-volume-muted.svg
│ ├── actions
│ │ ├── cell-format.svg
│ │ ├── format-columns-single.svg
│ │ ├── go-next-paired.svg
│ │ ├── activity-stop.svg
│ │ ├── document-send.svg
│ │ ├── go-previous-paired.svg
│ │ ├── media-playback-stop.svg
│ │ ├── zoom-activity.svg
│ │ ├── format-columns-double.svg
│ │ ├── go-next.svg
│ │ ├── format-columns-triple.svg
│ │ ├── transfer-from.svg
│ │ ├── transfer-to.svg
│ │ ├── view-triangle.svg
│ │ ├── go-previous.svg
│ │ ├── media-eject.svg
│ │ ├── activity-start.svg
│ │ ├── format-text-size.svg
│ │ ├── media-seek-forward.svg
│ │ ├── media-seek-backward.svg
│ │ ├── toolbar-colors.svg
│ │ ├── format-text-italic.svg
│ │ ├── zoom-home.svg
│ │ ├── view-radial.svg
│ │ ├── media-record.svg
│ │ ├── go-home.svg
│ │ ├── view-size.svg
│ │ ├── dialog-ok.svg
│ │ ├── zoom-out.svg
│ │ ├── view-freeform.svg
│ │ ├── cell-height.svg
│ │ ├── cell-width.svg
│ │ ├── format-justify-fill.svg
│ │ ├── format-justify-left.svg
│ │ ├── edit-delete.svg
│ │ ├── format-justify-center.svg
│ │ ├── format-justify-right.svg
│ │ ├── list-remove.svg
│ │ ├── edit-undo.svg
│ │ ├── edit-redo.svg
│ │ ├── view-list.svg
│ │ ├── media-playback-stop-insensitive.svg
│ │ ├── edit-clear.svg
│ │ ├── entry-search.svg
│ │ ├── view-refresh.svg
│ │ ├── zoom-in.svg
│ │ ├── zoom-best-fit.svg
│ │ ├── tray-favourite.svg
│ │ ├── tray-hide.svg
│ │ ├── tray-show.svg
│ │ ├── format-text-underline.svg
│ │ ├── insert-table.svg
│ │ ├── toolbar-view.svg
│ │ ├── media-record-insensitive.svg
│ │ ├── media-eject-insensitive.svg
│ │ ├── view-details.svg
│ │ ├── zoom-original.svg
│ │ ├── zoom-groups.svg
│ │ ├── media-playlist-repeat.svg
│ │ ├── view-box.svg
│ │ ├── media-playlist-repeat-insensitive.svg
│ │ ├── row-insert.svg
│ │ ├── media-playback-pause.svg
│ │ ├── entry-stop.svg
│ │ ├── column-insert.svg
│ │ ├── entry-refresh.svg
│ │ ├── list-add.svg
│ │ ├── toolbar-social-help.svg
│ │ ├── dialog-cancel.svg
│ │ ├── edit-duplicate.svg
│ │ ├── format-text-leading.svg
│ │ ├── row-remove.svg
│ │ └── column-remove.svg
│ ├── emblems
│ │ ├── Makefile.am
│ │ ├── emblem-favorite.svg
│ │ ├── emblem-charging.svg
│ │ ├── emblem-locked.svg
│ │ ├── emblem-favorite-locked.svg
│ │ ├── emblem-outofrange.svg
│ │ ├── emblem-warning.svg
│ │ ├── emblem-notification.svg
│ │ └── emblem-busy.svg
│ └── mimetypes
│ │ ├── Makefile.am
│ │ ├── document-generic.svg
│ │ ├── application-octet-stream.svg
│ │ └── application-x-generic.svg
├── Makefile.am
└── index.theme
├── Makefile.am
├── test
├── gtkrcs
│ ├── buildin
│ └── sugar
└── exported
├── autogen.sh
├── README.md
└── .gitignore
/cursor/sugar/.gitignore:
--------------------------------------------------------------------------------
1 | cursors
2 |
--------------------------------------------------------------------------------
/gtk3/Makefile.am:
--------------------------------------------------------------------------------
1 | SUBDIRS = theme
2 |
--------------------------------------------------------------------------------
/gtk/Makefile.am:
--------------------------------------------------------------------------------
1 | SUBDIRS = engine theme
2 |
--------------------------------------------------------------------------------
/cursor/Makefile.am:
--------------------------------------------------------------------------------
1 | SUBDIRS = sugar sugar-lh
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/link.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/link.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/plus.in:
--------------------------------------------------------------------------------
1 | 48 2 2 pngs/plus.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/close.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/close.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/hand1.in:
--------------------------------------------------------------------------------
1 | 48 35 5 pngs/hand1.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/hand2.in:
--------------------------------------------------------------------------------
1 | 48 17 6 pngs/hand2.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/link.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/link.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/minus.in:
--------------------------------------------------------------------------------
1 | 48 2 2 pngs/minus.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/plus.in:
--------------------------------------------------------------------------------
1 | 48 2 2 pngs/plus.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/close.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/close.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/fleur.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/fleur.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/hand1.in:
--------------------------------------------------------------------------------
1 | 48 35 5 pngs/hand1.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/hand2.in:
--------------------------------------------------------------------------------
1 | 48 17 6 pngs/hand2.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/minus.in:
--------------------------------------------------------------------------------
1 | 48 2 2 pngs/minus.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/pencil.in:
--------------------------------------------------------------------------------
1 | 48 7 41 pngs/pencil.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/xterm.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/xterm.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/circle.in:
--------------------------------------------------------------------------------
1 | 48 23 23 pngs/circle.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/eraser.in:
--------------------------------------------------------------------------------
1 | 48 11 42 pngs/eraser.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/exchange.in:
--------------------------------------------------------------------------------
1 | 48 2 2 pngs/exchange.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/fleur.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/fleur.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/left_ptr.in:
--------------------------------------------------------------------------------
1 | 48 2 2 pngs/left_ptr.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/pencil.in:
--------------------------------------------------------------------------------
1 | 48 7 41 pngs/pencil.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/xterm.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/xterm.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/circle.in:
--------------------------------------------------------------------------------
1 | 48 23 23 pngs/circle.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/eraser.in:
--------------------------------------------------------------------------------
1 | 48 11 42 pngs/eraser.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/exchange.in:
--------------------------------------------------------------------------------
1 | 48 2 2 pngs/exchange.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/forbidden.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/forbidden.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/left_ptr.in:
--------------------------------------------------------------------------------
1 | 48 2 2 pngs/left_ptr.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/top_side.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/top_side.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/center_ptr.in:
--------------------------------------------------------------------------------
1 | 48 23 1 pngs/center_ptr.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/crosshair.in:
--------------------------------------------------------------------------------
1 | 48 23 23 pngs/crosshair.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/forbidden.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/forbidden.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/hand_open.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/hand_open.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/paintbrush.in:
--------------------------------------------------------------------------------
1 | 48 7 42 pngs/paintbrush.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/right_ptr.in:
--------------------------------------------------------------------------------
1 | 48 45 2 pngs/right_ptr.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/top_side.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/top_side.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/center_ptr.in:
--------------------------------------------------------------------------------
1 | 48 23 1 pngs/center_ptr.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/crosshair.in:
--------------------------------------------------------------------------------
1 | 48 23 23 pngs/crosshair.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/hand_open.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/hand_open.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/paintbrush.in:
--------------------------------------------------------------------------------
1 | 48 7 42 pngs/paintbrush.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/right_ptr.in:
--------------------------------------------------------------------------------
1 | 48 45 2 pngs/right_ptr.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/right_side.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/right_side.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/sb_up_arrow.in:
--------------------------------------------------------------------------------
1 | 48 23 6 pngs/sb_up_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/color-picker.in:
--------------------------------------------------------------------------------
1 | 48 11 41 pngs/color-picker.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/hand_closed.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/hand_closed.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/paint-bucket.in:
--------------------------------------------------------------------------------
1 | 48 12 42 pngs/paint-bucket.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/right_side.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/right_side.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/sb_up_arrow.in:
--------------------------------------------------------------------------------
1 | 48 23 6 pngs/sb_up_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/color-picker.in:
--------------------------------------------------------------------------------
1 | 48 11 41 pngs/color-picker.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/hand_closed.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/hand_closed.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/paint-bucket.in:
--------------------------------------------------------------------------------
1 | 48 12 42 pngs/paint-bucket.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/question_arrow.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/question_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/sb_down_arrow.in:
--------------------------------------------------------------------------------
1 | 48 23 42 pngs/sb_down_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/sb_left_arrow.in:
--------------------------------------------------------------------------------
1 | 48 6 24 pngs/sb_left_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/based_arrow_up.in:
--------------------------------------------------------------------------------
1 | 48 23 38 pngs/based_arrow_up.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/left_ptr_modify.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/left_ptr_modify.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/question_arrow.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/question_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/sb_down_arrow.in:
--------------------------------------------------------------------------------
1 | 48 23 42 pngs/sb_down_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/sb_left_arrow.in:
--------------------------------------------------------------------------------
1 | 48 6 24 pngs/sb_left_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/sb_right_arrow.in:
--------------------------------------------------------------------------------
1 | 48 41 24 pngs/sb_right_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/based_arrow_down.in:
--------------------------------------------------------------------------------
1 | 48 23 8 pngs/based_arrow_down.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/based_arrow_up.in:
--------------------------------------------------------------------------------
1 | 48 23 38 pngs/based_arrow_up.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/left_ptr_modify.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/left_ptr_modify.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/sb_right_arrow.in:
--------------------------------------------------------------------------------
1 | 48 41 24 pngs/sb_right_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/based_arrow_down.in:
--------------------------------------------------------------------------------
1 | 48 23 8 pngs/based_arrow_down.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/based_arrow_left.in:
--------------------------------------------------------------------------------
1 | 48 38 23 pngs/based_arrow_left.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/based_arrow_right.in:
--------------------------------------------------------------------------------
1 | 48 5 23 pngs/based_arrow_right.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/sb_h_double_arrow.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/sb_h_double_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/sb_v_double_arrow.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/sb_v_double_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/based_arrow_left.in:
--------------------------------------------------------------------------------
1 | 48 38 23 pngs/based_arrow_left.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/based_arrow_right.in:
--------------------------------------------------------------------------------
1 | 48 5 23 pngs/based_arrow_right.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/bottom_left_corner.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/bottom_left_corner.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/sb_h_double_arrow.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/sb_h_double_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/sb_v_double_arrow.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/sb_v_double_arrow.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/bottom_left_corner.in:
--------------------------------------------------------------------------------
1 | 48 23 24 pngs/bottom_left_corner.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar/bottom_right_corner.in:
--------------------------------------------------------------------------------
1 | 48 24 24 pngs/bottom_right_corner.png
2 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/bottom_right_corner.in:
--------------------------------------------------------------------------------
1 | 48 24 24 pngs/bottom_right_corner.png
2 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-000.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-010.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-020.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-030.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-040.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-050.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-060.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-070.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-080.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-090.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-100.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=948,697
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-mesh.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-000.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-020.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-040.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-060.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-080.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-100.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/Makefile.am:
--------------------------------------------------------------------------------
1 | SUBDIRS = cursor icons gtk3
2 |
3 | if WITH_GTK2
4 | SUBDIRS += gtk
5 | endif
6 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-connected-000.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-connected-020.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-connected-040.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-connected-060.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-connected-080.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-connected-100.icon:
--------------------------------------------------------------------------------
1 | [Icon Data]
2 | AttachPoints=970,850
3 |
--------------------------------------------------------------------------------
/icons/scalable/Makefile.am:
--------------------------------------------------------------------------------
1 | SUBDIRS = actions apps control device mimetypes status emblems categories
2 |
--------------------------------------------------------------------------------
/cursor/sugar/pngs/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/close.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/fleur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/fleur.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/hand1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/hand1.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/hand2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/hand2.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/link.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/minus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/minus.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/plus.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/xterm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/xterm.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/link.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/plus.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_0.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_1.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_10.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_11.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_2.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_3.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_4.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_5.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_6.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_7.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_8.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/busy_9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/busy_9.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/circle.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/eraser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/eraser.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/pencil.png
--------------------------------------------------------------------------------
/test/gtkrcs/buildin:
--------------------------------------------------------------------------------
1 |
2 | style "default"
3 | {
4 | engine "" {}
5 | }
6 |
7 | class "GtkWidget" style "default"
8 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_0.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_1.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_10.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_11.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_2.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_3.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_4.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_5.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_6.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_7.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_8.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/busy_9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/busy_9.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/circle.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/close.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/eraser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/eraser.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/fleur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/fleur.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/hand1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/hand1.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/hand2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/hand2.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/minus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/minus.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/pencil.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/xterm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/xterm.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/center_ptr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/center_ptr.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/crosshair.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/crosshair.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/exchange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/exchange.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/forbidden.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/forbidden.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/hand_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/hand_open.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/paintbrush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/paintbrush.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/right_ptr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/right_ptr.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/right_side.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/right_side.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/top_side.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/top_side.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/crosshair.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/crosshair.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/exchange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/exchange.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/forbidden.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/forbidden.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/hand_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/hand_open.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/right_ptr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/right_ptr.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/top_side.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/top_side.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/color-picker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/color-picker.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/hand_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/hand_closed.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/paint-bucket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/paint-bucket.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/sb_up_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/sb_up_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/center_ptr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/center_ptr.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/color-picker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/color-picker.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/hand_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/hand_closed.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/paint-bucket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/paint-bucket.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/paintbrush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/paintbrush.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/right_side.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/right_side.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/sb_up_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/sb_up_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/based_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/based_arrow_up.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_modify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_modify.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/question_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/question_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/sb_down_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/sb_down_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/sb_left_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/sb_left_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/sb_right_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/sb_right_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/based_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/based_arrow_up.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/question_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/question_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/sb_down_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/sb_down_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/sb_left_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/sb_left_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/sb_right_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/sb_right_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/based_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/based_arrow_down.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/based_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/based_arrow_left.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/based_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/based_arrow_right.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_0.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_1.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_10.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_11.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_2.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_3.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_4.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_5.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_6.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_7.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_8.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/left_ptr_watch_9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/left_ptr_watch_9.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/sb_h_double_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/sb_h_double_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/sb_v_double_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/sb_v_double_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/based_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/based_arrow_down.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/based_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/based_arrow_left.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/based_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/based_arrow_right.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_modify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_modify.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_0.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_1.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_10.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_11.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_2.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_3.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_4.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_5.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_6.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_7.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_8.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/left_ptr_watch_9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/left_ptr_watch_9.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/sb_h_double_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/sb_h_double_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/sb_v_double_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/sb_v_double_arrow.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/bottom_left_corner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/bottom_left_corner.png
--------------------------------------------------------------------------------
/cursor/sugar/pngs/bottom_right_corner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar/pngs/bottom_right_corner.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/bottom_left_corner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/bottom_left_corner.png
--------------------------------------------------------------------------------
/cursor/sugar-lh/pngs/bottom_right_corner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarlabs/sugar-artwork/HEAD/cursor/sugar-lh/pngs/bottom_right_corner.png
--------------------------------------------------------------------------------
/icons/Makefile.am:
--------------------------------------------------------------------------------
1 | SUBDIRS = scalable
2 |
3 | themedir = ${datadir}/icons/sugar
4 | theme_DATA = index.theme
5 |
6 | EXTRA_DIST = $(theme_DATA)
7 |
--------------------------------------------------------------------------------
/autogen.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | test -n "${srcdir}" || srcdir=`dirname "$0"`
4 | test -n "${srcdir}" || srcdir="$(pwd)"
5 |
6 | olddir="$(pwd)"
7 | cd "$srcdir"
8 |
9 | autoreconf -i
10 |
11 | cd "$olddir"
12 | "$srcdir/configure" --enable-maintainer-mode "$@"
13 |
--------------------------------------------------------------------------------
/icons/scalable/apps/Makefile.am:
--------------------------------------------------------------------------------
1 | iconsize=scalable
2 | category=apps
3 | icondir = $(datadir)/icons/sugar/$(iconsize)/$(category)
4 |
5 | icon_DATA = \
6 | activity-journal.svg
7 |
8 | EXTRA_DIST = $(icon_DATA)
9 |
10 | install-data-local: install-iconDATA
11 | (cd $(DESTDIR)$(icondir)/.. && $(ICONMAP) -c $(category))
12 |
--------------------------------------------------------------------------------
/icons/scalable/categories/Makefile.am:
--------------------------------------------------------------------------------
1 | iconsize=scalable
2 | category=categories
3 | icondir = $(datadir)/icons/sugar/$(iconsize)/$(category)
4 |
5 | icon_DATA = \
6 | preferences-system.svg
7 |
8 | EXTRA_DIST = $(icon_DATA)
9 |
10 | install-data-local: install-iconDATA
11 | (cd $(DESTDIR)$(icondir)/.. && $(ICONMAP) -c $(category))
12 |
--------------------------------------------------------------------------------
/icons/scalable/control/Makefile.am:
--------------------------------------------------------------------------------
1 | iconsize=scalable
2 | category=control
3 | icondir = $(datadir)/icons/sugar/$(iconsize)/$(category)
4 |
5 | icon_DATA = \
6 | control-popup-arrow.svg \
7 | color-preview.svg
8 |
9 | EXTRA_DIST = $(icon_DATA)
10 |
11 | install-data-local: install-iconDATA
12 | (cd $(DESTDIR)$(icondir)/.. && $(ICONMAP) -c $(category))
13 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/Makefile.am:
--------------------------------------------------------------------------------
1 | SUBDIRS = 100 72
2 |
3 | assets = \
4 | cursor-handle-insertion.svg \
5 | cursor-handle-bottom.svg \
6 | cursor-handle-top.svg
7 |
8 |
9 | sugar72dir = $(datadir)/themes/sugar-72/gtk-3.0/assets
10 | sugar100dir = $(datadir)/themes/sugar-100/gtk-3.0/assets
11 |
12 | dist_sugar72_DATA = $(assets)
13 | dist_sugar100_DATA = $(assets)
14 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/busy.in:
--------------------------------------------------------------------------------
1 | 48 24 23 pngs/busy_0.png 60
2 | 48 24 23 pngs/busy_1.png 60
3 | 48 24 23 pngs/busy_2.png 60
4 | 48 24 23 pngs/busy_3.png 60
5 | 48 24 23 pngs/busy_4.png 60
6 | 48 24 23 pngs/busy_5.png 60
7 | 48 24 23 pngs/busy_6.png 60
8 | 48 24 23 pngs/busy_7.png 60
9 | 48 24 23 pngs/busy_8.png 60
10 | 48 24 23 pngs/busy_9.png 60
11 | 48 24 23 pngs/busy_10.png 60
12 | 48 24 23 pngs/busy_11.png 60
13 |
--------------------------------------------------------------------------------
/cursor/sugar/busy.in:
--------------------------------------------------------------------------------
1 | 48 24 23 pngs/busy_0.png 60
2 | 48 24 23 pngs/busy_1.png 60
3 | 48 24 23 pngs/busy_2.png 60
4 | 48 24 23 pngs/busy_3.png 60
5 | 48 24 23 pngs/busy_4.png 60
6 | 48 24 23 pngs/busy_5.png 60
7 | 48 24 23 pngs/busy_6.png 60
8 | 48 24 23 pngs/busy_7.png 60
9 | 48 24 23 pngs/busy_8.png 60
10 | 48 24 23 pngs/busy_9.png 60
11 | 48 24 23 pngs/busy_10.png 60
12 | 48 24 23 pngs/busy_11.png 60
13 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/72/checkbox-unchecked.svg:
--------------------------------------------------------------------------------
1 |
3 | ]>
4 |
7 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/72/checkbox-unchecked-selected.svg:
--------------------------------------------------------------------------------
1 |
3 | ]>
4 |
7 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/100/Makefile.am:
--------------------------------------------------------------------------------
1 | assets_DATA = \
2 | checkbox-unchecked.svg \
3 | checkbox-unchecked-selected.svg \
4 | checkbox-checked.svg \
5 | checkbox-checked-selected.svg \
6 | radio.svg \
7 | radio-selected.svg \
8 | radio-active.svg \
9 | radio-active-selected.svg \
10 | scale-slider.svg \
11 | scale-slider-active.svg \
12 | viewsource-imageBox-bg.svg
13 |
14 | assetsdir = $(datadir)/themes/sugar-100/gtk-3.0/assets
15 |
16 | EXTRA_DIST = $(assets_DATA)
17 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/72/Makefile.am:
--------------------------------------------------------------------------------
1 | assets_DATA = \
2 | checkbox-unchecked.svg \
3 | checkbox-unchecked-selected.svg \
4 | checkbox-checked.svg \
5 | checkbox-checked-selected.svg \
6 | radio.svg \
7 | radio-selected.svg \
8 | radio-active.svg \
9 | radio-active-selected.svg \
10 | scale-slider.svg \
11 | scale-slider-active.svg \
12 | viewsource-imageBox-bg.svg
13 |
14 | assetsdir = $(datadir)/themes/sugar-72/gtk-3.0/assets
15 |
16 | EXTRA_DIST = $(assets_DATA)
17 |
--------------------------------------------------------------------------------
/icons/scalable/status/Makefile.am:
--------------------------------------------------------------------------------
1 | iconsize=scalable
2 | category=status
3 | icondir = $(datadir)/icons/sugar/$(iconsize)/$(category)
4 |
5 | icon_DATA = \
6 | audio-volume-high.svg \
7 | audio-volume-low.svg \
8 | audio-volume-medium.svg \
9 | audio-volume-muted.svg \
10 | data-download.svg \
11 | data-upload.svg \
12 | image-missing.svg
13 |
14 | EXTRA_DIST = $(icon_DATA)
15 |
16 | install-data-local: install-iconDATA
17 | (cd $(DESTDIR)$(icondir)/.. && $(ICONMAP) -c $(category))
18 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/72/viewsource-imageBox-bg.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
10 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Sugar Artwork
2 | =============
3 |
4 | Sugar Artwork provides icons, and GTK+ CSS to build activities and
5 | other Sugar components on Linux based computers.
6 |
7 | https://www.sugarlabs.org/
8 |
9 | https://wiki.sugarlabs.org/
10 |
11 | Building
12 | --------
13 |
14 | Sugar Artwork follows the [GNU Coding
15 | Standards](https://www.gnu.org/prep/standards/).
16 |
17 | Install all dependencies.
18 |
19 | Clone the repository, run `autogen.sh`, then `make` and `make
20 | install`.
21 |
--------------------------------------------------------------------------------
/cursor/sugar-lh/left_ptr_watch.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/left_ptr_watch_0.png 60
2 | 48 3 2 pngs/left_ptr_watch_1.png 60
3 | 48 3 2 pngs/left_ptr_watch_2.png 60
4 | 48 3 2 pngs/left_ptr_watch_3.png 60
5 | 48 3 2 pngs/left_ptr_watch_4.png 60
6 | 48 3 2 pngs/left_ptr_watch_5.png 60
7 | 48 3 2 pngs/left_ptr_watch_6.png 60
8 | 48 3 2 pngs/left_ptr_watch_7.png 60
9 | 48 3 2 pngs/left_ptr_watch_8.png 60
10 | 48 3 2 pngs/left_ptr_watch_9.png 60
11 | 48 3 2 pngs/left_ptr_watch_10.png 60
12 | 48 3 2 pngs/left_ptr_watch_11.png 60
13 |
--------------------------------------------------------------------------------
/cursor/sugar/left_ptr_watch.in:
--------------------------------------------------------------------------------
1 | 48 3 2 pngs/left_ptr_watch_0.png 60
2 | 48 3 2 pngs/left_ptr_watch_1.png 60
3 | 48 3 2 pngs/left_ptr_watch_2.png 60
4 | 48 3 2 pngs/left_ptr_watch_3.png 60
5 | 48 3 2 pngs/left_ptr_watch_4.png 60
6 | 48 3 2 pngs/left_ptr_watch_5.png 60
7 | 48 3 2 pngs/left_ptr_watch_6.png 60
8 | 48 3 2 pngs/left_ptr_watch_7.png 60
9 | 48 3 2 pngs/left_ptr_watch_8.png 60
10 | 48 3 2 pngs/left_ptr_watch_9.png 60
11 | 48 3 2 pngs/left_ptr_watch_10.png 60
12 | 48 3 2 pngs/left_ptr_watch_11.png 60
13 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/100/viewsource-imageBox-bg.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
10 |
--------------------------------------------------------------------------------
/icons/scalable/actions/cell-format.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/gtk/engine/Makefile.am:
--------------------------------------------------------------------------------
1 | AM_CPPFLAGS = \
2 | $(ENGINE_CFLAGS) $(WARN_CFLAGS)
3 |
4 | enginedir = $(libdir)/gtk-2.0/$(GTK_VERSION)/engines
5 | engine_LTLIBRARIES = libsugar.la
6 |
7 | libsugar_la_SOURCES = \
8 | sugar.c \
9 | sugar-rc-style.c \
10 | sugar-rc-style.h \
11 | sugar-style.h \
12 | sugar-style.c \
13 | sugar-info.h \
14 | sugar-info.c \
15 | sugar-utils.h \
16 | sugar-utils.c \
17 | sugar-drawing.h \
18 | sugar-drawing.c
19 |
20 | libsugar_la_LDFLAGS = \
21 | -avoid-version -no-undefined -module \
22 | $(ENGINE_LIBS)
23 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/cursor-handle-top.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/cursor-handle-bottom.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/cursor-handle-insertion.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
--------------------------------------------------------------------------------
/icons/scalable/status/data-upload.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
--------------------------------------------------------------------------------
/icons/scalable/status/data-download.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
--------------------------------------------------------------------------------
/icons/scalable/emblems/Makefile.am:
--------------------------------------------------------------------------------
1 | iconsize=scalable
2 | category=emblems
3 | icondir = $(datadir)/icons/sugar/$(iconsize)/$(category)
4 |
5 | icon_DATA = \
6 | emblem-busy.svg \
7 | emblem-charging.svg \
8 | emblem-downloads.svg \
9 | emblem-favorite.svg \
10 | emblem-locked.svg \
11 | emblem-favorite-locked.svg \
12 | emblem-notification.svg \
13 | emblem-outofrange.svg \
14 | emblem-question.svg \
15 | emblem-view-source.svg \
16 | emblem-warning.svg
17 |
18 | EXTRA_DIST = $(icon_DATA)
19 |
20 | install-data-local: install-iconDATA
21 | (cd $(DESTDIR)$(icondir)/.. && $(ICONMAP) -c $(category))
22 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/72/checkbox-checked.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
5 |
9 |
--------------------------------------------------------------------------------
/icons/scalable/actions/format-columns-single.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/72/checkbox-checked-selected.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
5 |
9 |
--------------------------------------------------------------------------------
/icons/scalable/mimetypes/Makefile.am:
--------------------------------------------------------------------------------
1 | iconsize=scalable
2 | category=mimetypes
3 | icondir = $(datadir)/icons/sugar/$(iconsize)/$(category)
4 |
5 | icon_DATA = \
6 | application-octet-stream.svg \
7 | application-x-generic.svg \
8 | application-x-squeak-project.svg \
9 | audio-x-generic.svg \
10 | document-generic.svg \
11 | project-box.svg \
12 | image-x-generic.svg \
13 | text-uri-list.svg \
14 | text-x-generic.svg \
15 | text-x-python.svg \
16 | video-x-generic.svg
17 |
18 | EXTRA_DIST = $(icon_DATA)
19 |
20 | install-data-local: install-iconDATA
21 | (cd $(DESTDIR)$(icondir)/.. && $(ICONMAP) -c $(category))
22 |
--------------------------------------------------------------------------------
/icons/scalable/actions/go-next-paired.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/activity-stop.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/document-send.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
--------------------------------------------------------------------------------
/icons/scalable/actions/go-previous-paired.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/media-playback-stop.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/zoom-activity.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/format-columns-double.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/go-next.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/network-adhoc-1.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
5 |
11 |
--------------------------------------------------------------------------------
/icons/scalable/actions/format-columns-triple.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/transfer-from.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/transfer-to.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/view-triangle.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
8 |
--------------------------------------------------------------------------------
/icons/scalable/emblems/emblem-favorite.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/go-previous.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/media-eject.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/test/exported:
--------------------------------------------------------------------------------
1 | #! /bin/sh
2 |
3 | ALLOWED_SYMBOLS="\(g_module_check_init\|theme_create_rc_style\|theme_exit\|theme_init\)"
4 |
5 | # exit with status 77 if nm does not exist
6 | which nm >/dev/null || exit 77
7 |
8 | ENGINE="`basename $0 | cut -d '_' -f 2`"
9 | ENGINE_FILE="engines/lib$ENGINE.so"
10 |
11 | nm -gD --defined-only $ENGINE_FILE | cut -d ' ' -f 2,3 | cut -d ' ' -f 2 | grep -v '^_' | grep -v "$ALLOWED_SYMBOLS" >symbols/$ENGINE
12 |
13 | if [ -s symbols/$ENGINE ]; then
14 | exit 1;
15 | else
16 | if [ -f symbols/$ENGINE ]; then
17 | # No point in keeping an empty file around
18 | rm symbols/$ENGINE
19 | else
20 | # Something wen't wrong, there is no file?!?
21 | # This should never happen ...
22 | exit 1
23 | fi
24 | fi
25 |
26 |
--------------------------------------------------------------------------------
/icons/scalable/actions/activity-start.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-100.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/format-text-size.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/media-seek-forward.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-000.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-000.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/media-seek-backward.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/toolbar-colors.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/control/control-popup-arrow.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 | ]>
7 |
12 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-adhoc-6.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
5 |
12 |
--------------------------------------------------------------------------------
/icons/scalable/actions/format-text-italic.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
--------------------------------------------------------------------------------
/icons/scalable/actions/zoom-home.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/view-radial.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/network-mesh.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/media-record.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/drive.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/media.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/emblems/emblem-charging.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/drive-harddisk.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/go-home.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
12 |
--------------------------------------------------------------------------------
/icons/scalable/device/drive-harddisk-usb.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/view-size.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
14 |
--------------------------------------------------------------------------------
/icons/scalable/device/media-disk.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | INSTALL
2 | Makefile
3 | Makefile.in
4 | aclocal.m4
5 | *.stamp
6 | *.o
7 | autom4te.cache
8 | config.guess
9 | config.h
10 | config.h.in
11 | config.log
12 | config.status
13 | config.sub
14 | configure
15 | depcomp
16 | *.la
17 | *.lo
18 | install-sh
19 | intltool-*
20 | libtool
21 | ltmain.sh
22 | missing
23 | mkinstalldirs
24 | Makefile.in.in
25 | .deps
26 | .libs
27 | stamp-h1
28 | *~
29 | gtk/theme/sugar.gtkrc
30 | gtk/theme/sugar-xo.gtkrc
31 | compile
32 | test/engines
33 | test/symbols
34 | test/valgrind-logs
35 | test/torturetest
36 | test/torture_*
37 | test/exported_*
38 | .DS_Store
39 | gtk/theme/sugar-100.gtkrc
40 | gtk/theme/sugar-72.gtkrc
41 |
42 | gtk3/theme/gtk-widgets-100.css
43 | gtk3/theme/gtk-widgets-72.css
44 | gtk3/theme/settings-100.ini
45 | gtk3/theme/settings-72.ini
46 | gtk3/theme/3.20/gtk-widgets-100.css
47 | gtk3/theme/3.20/gtk-widgets-72.css
48 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/72/radio.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
18 |
--------------------------------------------------------------------------------
/icons/scalable/device/media-optical.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/network-adhoc-11.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
5 |
13 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/100/checkbox-unchecked.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 | ]>
5 |
23 |
--------------------------------------------------------------------------------
/icons/scalable/actions/dialog-ok.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/test/gtkrcs/sugar:
--------------------------------------------------------------------------------
1 |
2 | style "default"
3 | {
4 | GtkWidget::interior-focus = 0
5 | engine "sugar" { }
6 | }
7 |
8 |
9 | style "comboboxentry"
10 | {
11 | engine "sugar" {
12 | hint = "comboboxentry"
13 | }
14 | }
15 |
16 | style "vscale"
17 | {
18 | engine "sugar" {
19 | hint = "vscale"
20 | }
21 | }
22 |
23 | style "hscale"
24 | {
25 | engine "sugar" {
26 | hint = "hscale"
27 | }
28 | }
29 |
30 | style "scrollbar"
31 | {
32 | engine "sugar" {
33 | hint = "scrollbar"
34 | }
35 | }
36 |
37 | style "spinbutton"
38 | {
39 | engine "sugar" {
40 | hint = "spinbutton"
41 | }
42 | }
43 |
44 |
45 | class "GtkWidget" style "default"
46 | class "GtkScrollBar" style "scrollbar"
47 | class "GtkHScale" style "hscale"
48 | class "GtkVScale" style "vscale"
49 | class "GtkSpinButton" style "spinbutton"
50 | widget_class "**" style "comboboxentry"
51 |
--------------------------------------------------------------------------------
/icons/scalable/actions/zoom-out.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/device/speaker-100.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/speaker-muted-000.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/gtk3/theme/assets/72/radio-selected.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
18 |
--------------------------------------------------------------------------------
/icons/scalable/status/audio-volume-high.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/view-freeform.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
11 |
--------------------------------------------------------------------------------
/icons/scalable/device/speaker-muted-033.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/speaker-muted-066.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/gtk3/theme/assets/100/checkbox-unchecked-selected.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 | ]>
5 |
23 |
--------------------------------------------------------------------------------
/icons/scalable/actions/cell-height.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/cell-width.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/device/speaker-muted-100.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/emblems/emblem-locked.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/format-justify-fill.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/format-justify-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/edit-delete.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/format-justify-center.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/format-justify-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/list-remove.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/edit-undo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
16 |
--------------------------------------------------------------------------------
/icons/scalable/actions/edit-redo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
17 |
--------------------------------------------------------------------------------
/icons/scalable/device/microphone.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/view-list.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/camera.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/media-playback-stop-insensitive.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/edit-clear.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
7 |
--------------------------------------------------------------------------------
/icons/scalable/actions/entry-search.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 | ]>
7 |
15 |
--------------------------------------------------------------------------------
/icons/scalable/actions/view-refresh.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/zoom-in.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/emblems/emblem-favorite-locked.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
9 |
--------------------------------------------------------------------------------
/icons/scalable/device/media-flash-sd.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/mimetypes/document-generic.svg:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 | ]>
7 |
8 |
26 |
--------------------------------------------------------------------------------
/icons/scalable/device/user-documents.svg:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 | ]>
7 |
16 |
--------------------------------------------------------------------------------
/icons/index.theme:
--------------------------------------------------------------------------------
1 | [Icon Theme]
2 | Name=Sugar
3 | Comment=Default Sugar Theme
4 |
5 | Directories=scalable/mimetypes,scalable/device,scalable/control,scalable/actions,scalable/status,scalable/emblems,scalable/categories
6 |
7 | [scalable/actions]
8 | Size=55
9 | MinSize=32
10 | MaxSize=256
11 | Context=Actions
12 | Type=Scalable
13 |
14 | [scalable/mimetypes]
15 | Size=55
16 | MinSize=32
17 | MaxSize=256
18 | Context=MimeTypes
19 | Type=Scalable
20 |
21 | [scalable/device]
22 | Size=55
23 | MinSize=32
24 | MaxSize=256
25 | Context=Device
26 | Type=Scalable
27 |
28 | [scalable/control]
29 | Size=55
30 | MinSize=32
31 | MaxSize=256
32 | Context=Control
33 | Type=Scalable
34 |
35 | [scalable/status]
36 | Size=55
37 | MinSize=32
38 | MaxSize=256
39 | Context=Status
40 | Type=Scalable
41 |
42 | [scalable/emblems]
43 | Size=55
44 | MinSize=32
45 | MaxSize=256
46 | Context=Emblems
47 | Type=Scalable
48 |
49 | [scalable/categories]
50 | Size=55
51 | MinSize=32
52 | MaxSize=256
53 | Context=Categories
54 | Type=Scalable
55 |
--------------------------------------------------------------------------------
/gtk3/theme/assets/100/radio.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
22 |
--------------------------------------------------------------------------------
/icons/scalable/actions/zoom-best-fit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-010.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-020.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-030.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-040.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-050.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-060.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-070.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-080.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-090.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/speaker-033.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/speaker-066.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/gtk3/theme/gtk.css:
--------------------------------------------------------------------------------
1 |
2 | /* Sugar colors */
3 | @define-color black #000000;
4 | @define-color toolbar_grey #282828;
5 | @define-color button_grey /*#ff0000*/ #808080 ;
6 | @define-color selection_grey #A6A6A6;
7 | @define-color panel_grey #C0C0C0;
8 | @define-color text_field_grey #E5E5E5;
9 | @define-color row_even #E5E5E5;
10 | @define-color row_odd #D5D5D5;
11 | @define-color white #FFFFFF;
12 | @define-color zoom_views_prelight #E8E8E8;
13 | @define-color zoom_views_active #B3B3B3;
14 |
15 | /* Default color scheme */
16 | @define-color base_color #ffffff;
17 | @define-color bg_color #ededed;
18 | @define-color tooltip_bg_color #343434;
19 | @define-color selected_bg_color #4a90d9;
20 | @define-color text_color #2e3436;
21 | @define-color fg_color #2e3436;
22 | @define-color tooltip_fg_color #ffffff;
23 | @define-color selected_fg_color #ffffff;
24 |
25 | /* Colormap actually used by the theme, to be overridden in other css files */
26 | @define-color theme_base_color @base_color;
27 |
28 | @import url("gtk-widgets.css");
29 |
30 |
--------------------------------------------------------------------------------
/icons/scalable/actions/tray-favourite.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
7 |
26 |
--------------------------------------------------------------------------------
/icons/scalable/actions/tray-hide.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
16 |
--------------------------------------------------------------------------------
/icons/scalable/actions/tray-show.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
16 |
--------------------------------------------------------------------------------
/icons/scalable/emblems/emblem-outofrange.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/emblems/emblem-warning.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/status/audio-volume-low.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/status/audio-volume-medium.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/format-text-underline.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
15 |
--------------------------------------------------------------------------------
/icons/scalable/actions/insert-table.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-adhoc-1-connected.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
5 |
13 |
--------------------------------------------------------------------------------
/icons/scalable/device/network-gsm.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/gtk/theme/Makefile.am:
--------------------------------------------------------------------------------
1 | sugar-72.gtkrc: gtkrc.em
2 | $(PYTHON) -m em -p $$ -D scaling=\'72\' $(srcdir)/gtkrc.em > \
3 | $(top_builddir)/gtk/theme/sugar-72.gtkrc
4 |
5 | sugar-100.gtkrc: gtkrc.em
6 | $(PYTHON) -m em -p $$ -D scaling=\'100\' $(srcdir)/gtkrc.em > \
7 | $(top_builddir)/gtk/theme/sugar-100.gtkrc
8 |
9 | clean:
10 | $(RM) sugar-72.gtkrc
11 | $(RM) sugar-100.gtkrc
12 |
13 | GTKRC_FILES = \
14 | sugar-72.gtkrc \
15 | sugar-100.gtkrc
16 |
17 | install-data-local: $(GTKRC_FILES)
18 | $(mkinstalldirs) $(DESTDIR)$(datadir)/themes/sugar-72/gtk-2.0
19 | $(INSTALL_DATA) $(top_builddir)/gtk/theme/sugar-72.gtkrc \
20 | $(DESTDIR)$(datadir)/themes/sugar-72/gtk-2.0/gtkrc
21 | $(mkinstalldirs) $(DESTDIR)$(datadir)/themes/sugar-100/gtk-2.0
22 | $(INSTALL_DATA) $(top_builddir)/gtk/theme/sugar-100.gtkrc \
23 | $(DESTDIR)$(datadir)/themes/sugar-100/gtk-2.0/gtkrc
24 |
25 | uninstall-local:
26 | rm -rf $(DESTDIR)$(datadir)/themes/sugar-72/gtk-2.0
27 | rm -rf $(DESTDIR)$(datadir)/themes/sugar-100/gtk-2.0
28 |
29 | EXTRA_DIST = gtkrc.em
30 | CLEANFILES = $(GTKRC_FILES)
31 |
--------------------------------------------------------------------------------
/icons/scalable/device/media-audio-input.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/toolbar-view.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/gtk3/theme/settings.ini.em:
--------------------------------------------------------------------------------
1 | ${
2 |
3 | # These sizes are copied from gtk2 rc files ...
4 | if scaling == "100":
5 | icon_base = 11
6 | else: # About 72% of the XO size, adjusted so that eg. toolbuttons work
7 | icon_base = 8 # 7.92
8 |
9 | icon_small = icon_base * 3
10 | icon_large = icon_base * 5
11 |
12 | }
13 |
14 | [Settings]
15 | gtk-auto-mnemonics = 1
16 | gtk-menu-images = 1
17 | gtk-button-images = 1
18 | gtk-toolbar-style = GTK_TOOLBAR_BOTH_HORIZ
19 | gtk-cursor-theme-name = sugar
20 | gtk-primary-button-warps-slider = 0
21 |
22 | ${
23 | icon_small = icon_base * 3
24 | icon_large = icon_base * 5
25 |
26 | small_icons = [ "gtk-menu", "gtk-dnd", "gtk-small-toolbar", "gtk-button" ]
27 | large_icons = [ "gtk-large-toolbar" ]
28 |
29 | icon_sizes = []
30 | for icon in small_icons:
31 | icon_sizes += [icon + "=" + str(icon_small) + ',' + str(icon_small)]
32 | for icon in large_icons:
33 | icon_sizes += [icon + "=" + str(icon_large) + ',' + str(icon_large)]
34 |
35 | icon_sizes = ":".join(icon_sizes)
36 |
37 | }
38 |
39 | gtk-icon-sizes = $icon_sizes
40 |
--------------------------------------------------------------------------------
/icons/scalable/actions/media-record-insensitive.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/emblems/emblem-notification.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/media-eject-insensitive.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/view-details.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/zoom-original.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/zoom-groups.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/battery-charging-100.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
11 |
--------------------------------------------------------------------------------
/icons/scalable/actions/media-playlist-repeat.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/view-box.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
12 |
--------------------------------------------------------------------------------
/gtk/engine/sugar-utils.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (C) 2007, Benjamin Berg
3 | *
4 | * This library is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2 of the License, or (at your option) any later version.
8 | *
9 | * This library is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with this library; if not, write to the
16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 | * Boston, MA 02111-1307, USA.
18 | */
19 |
20 | #include
21 |
22 | G_GNUC_INTERNAL GdkPixbuf* sugar_pixbuf_scale_or_ref (GdkPixbuf *pixbuf, gint width, gint height);
23 | G_GNUC_INTERNAL GdkPixbuf* sugar_get_insensitive_icon (GdkPixbuf *icon, guint range, guint base);
24 |
25 |
--------------------------------------------------------------------------------
/icons/scalable/categories/preferences-system.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/network-adhoc-6-connected.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
5 |
14 |
--------------------------------------------------------------------------------
/icons/scalable/actions/media-playlist-repeat-insensitive.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/row-insert.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/media-playback-pause.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/network-wireless-connected-000.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/entry-stop.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
18 |
--------------------------------------------------------------------------------
/icons/scalable/actions/column-insert.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/entry-refresh.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | ]>
6 |
15 |
--------------------------------------------------------------------------------
/icons/scalable/actions/list-add.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/toolbar-social-help.svg:
--------------------------------------------------------------------------------
1 |
4 |
5 | ]>
6 |
7 |
15 |
--------------------------------------------------------------------------------
/icons/scalable/actions/dialog-cancel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/device/speaker-000.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/mimetypes/application-octet-stream.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/mimetypes/application-x-generic.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/edit-duplicate.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
5 |
15 |
--------------------------------------------------------------------------------
/icons/scalable/device/battery-charging-000.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
20 |
--------------------------------------------------------------------------------
/icons/scalable/status/audio-volume-muted.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/format-text-leading.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/actions/row-remove.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/emblems/emblem-busy.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------
/icons/scalable/actions/column-remove.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scalable/device/computer.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
--------------------------------------------------------------------------------