# HG changeset patch # User Torsten Lilge # Date 1645559655 -3600 # Node ID 36dc11ee220d9a31310af6704fd3650c87c33205 # Parent 9a95ccd6c4173a7e10056c213272004b1181a4bb reorganize GUIs icons * FigureWindow.cc (FigureWIndow.cc): use QIcon::fromTheme * ToolBarButton.cc (get_icon): dito * libgui/src/icons/*.png: moved into tango/128x128/, octave/128x128/ or cursor/ * libgui/src/icons/*.svg: moved into tango/scalable/ or octave/scalable/ * libgui/src/cursors/licence.md of cursors * libgui/src/icons/licence.md of icons * libgui/src/icons/icons_license: removed ol file * documentation.cc (construct_toolbar): use standard icon names for zoom icons * m-editor/file-editor.cc (construct): dito * main-window.cc (main_window) call ressource_manger::config_icon_theme * module.mk: update icon paths * octave-dock-widget.cc (label_dock_widget): use QIcon::fromTheme; (octave_dock_widget): use QIcon::fromTheme and update icon paths in css; (make_window): update icon paths in css; (make_widget): update icon paths in css; (set_style): update icon paths in css, use QIcon::fromTheme; * octave-qobject.cc (base_object): call config_icon_theme if no gui is started; * ressource_mamager.cc (config_icon_theme): new function setting the * resource-manager.h: new function config_icon_theme * libgui/src/resource.qrc: update paths of graphics files diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/graphics/FigureWindow.cc --- a/libgui/graphics/FigureWindow.cc Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/graphics/FigureWindow.cc Tue Feb 22 20:54:15 2022 +0100 @@ -38,7 +38,7 @@ : FigureWindowBase (xparent) { // set icon from application resources - setWindowIcon (QIcon (":/actions/icons/graphic_logo_Figure.png")); + setWindowIcon (QIcon::fromTheme ("graphic_logo_Figure")); } FigureWindow::~FigureWindow (void) diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/graphics/ToolBarButton.cc --- a/libgui/graphics/ToolBarButton.cc Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/graphics/ToolBarButton.cc Tue Feb 22 20:54:15 2022 +0100 @@ -155,9 +155,7 @@ template QIcon ToolBarButton::get_icon (const std::string& name) { - octave::resource_manager& rmgr = m_octave_qobj.get_resource_manager (); - - return rmgr.icon (QString::fromStdString (name)); + return QIcon::fromTheme (QString::fromStdString (name)); } } diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/bottom_left_corner.png Binary file libgui/src/cursors/bottom_left_corner.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/bottom_right_corner.png Binary file libgui/src/cursors/bottom_right_corner.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/bottom_side.png Binary file libgui/src/cursors/bottom_side.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/circle.png Binary file libgui/src/cursors/circle.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/circle.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/cursors/circle.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/cross.png Binary file libgui/src/cursors/cross.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/fleur.png Binary file libgui/src/cursors/fleur.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/hand2.png Binary file libgui/src/cursors/hand2.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/left_side.png Binary file libgui/src/cursors/left_side.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/right_side.png Binary file libgui/src/cursors/right_side.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/top_left_corner.png Binary file libgui/src/cursors/top_left_corner.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/top_right_corner.png Binary file libgui/src/cursors/top_right_corner.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/cursors/top_side.png Binary file libgui/src/cursors/top_side.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/documentation.cc --- a/libgui/src/documentation.cc Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/src/documentation.cc Tue Feb 22 20:54:15 2022 +0100 @@ -417,13 +417,13 @@ // Zoom m_tool_bar->addSeparator (); m_action_zoom_in - = add_action (rmgr.icon ("zoom-in"), tr ("Zoom in"), + = add_action (rmgr.icon ("view-zoom-in"), tr ("Zoom in"), SLOT (zoom_in (void)), m_doc_browser, m_tool_bar); m_action_zoom_out - = add_action (rmgr.icon ("zoom-out"), tr ("Zoom out"), + = add_action (rmgr.icon ("view-zoom-out"), tr ("Zoom out"), SLOT (zoom_out (void)), m_doc_browser, m_tool_bar); m_action_zoom_original - = add_action (rmgr.icon ("zoom-original"), tr ("Zoom original"), + = add_action (rmgr.icon ("view-zoom-original"), tr ("Zoom original"), SLOT (zoom_original (void)), m_doc_browser, m_tool_bar); // Bookmarks (connect slots later) diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/applications-system.png Binary file libgui/src/icons/applications-system.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/applications-system.svg --- a/libgui/src/icons/applications-system.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,247 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - System Applications - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - system - applications - group - category - admin - root - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bookmark-new.png Binary file libgui/src/icons/bookmark-new.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bookmark-new.svg --- a/libgui/src/icons/bookmark-new.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,672 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - New Bookmark - - - bookmark - remember - favorite - - - - - - Andreas Nilsson - - - - - - Jakub Steiner - - - create bookmark action - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bottom_left_corner.png Binary file libgui/src/icons/bottom_left_corner.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bottom_right_corner.png Binary file libgui/src/icons/bottom_right_corner.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bottom_side.png Binary file libgui/src/icons/bottom_side.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bp-next.png Binary file libgui/src/icons/bp-next.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bp-next.svg --- a/libgui/src/icons/bp-next.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1072 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Lapo Calamandrei - - - - - - media - player - record - music - sound - video - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bp-prev.png Binary file libgui/src/icons/bp-prev.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bp-prev.svg --- a/libgui/src/icons/bp-prev.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Lapo Calamandrei - - - - - - media - player - record - music - sound - video - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bp-rm-all.png Binary file libgui/src/icons/bp-rm-all.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bp-rm-all.svg --- a/libgui/src/icons/bp-rm-all.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Lapo Calamandrei - - - - - - media - player - record - music - sound - video - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bp-toggle.png Binary file libgui/src/icons/bp-toggle.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/bp-toggle.svg --- a/libgui/src/icons/bp-toggle.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,948 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Lapo Calamandrei - - - - - - media - player - record - music - sound - video - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/circle.png Binary file libgui/src/icons/circle.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/circle.svg --- a/libgui/src/icons/circle.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/cross.png Binary file libgui/src/icons/cross.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-cont.png Binary file libgui/src/icons/db-cont.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-cont.svg --- a/libgui/src/icons/db-cont.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1162 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - system - applications - group - category - admin - root - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-step-in.png Binary file libgui/src/icons/db-step-in.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-step-in.svg --- a/libgui/src/icons/db-step-in.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1185 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Lapo Calamandrei - - - - - - media - stop - playback - video - music - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-step-out.png Binary file libgui/src/icons/db-step-out.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-step-out.svg --- a/libgui/src/icons/db-step-out.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1190 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Lapo Calamandrei - - - - - - media - stop - playback - video - music - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-step.png Binary file libgui/src/icons/db-step.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-step.svg --- a/libgui/src/icons/db-step.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Lapo Calamandrei - - - - - - media - stop - playback - video - music - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-stop.png Binary file libgui/src/icons/db-stop.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/db-stop.svg --- a/libgui/src/icons/db-stop.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,677 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Lapo Calamandrei - - - - - - media - stop - playback - video - music - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/dialog-error.png Binary file libgui/src/icons/dialog-error.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/dialog-error.svg --- a/libgui/src/icons/dialog-error.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,330 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Rodney Dawes - - - - - Jakub Steiner, Garrett LeSage - - - - Dialog Error - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/dialog-information.png Binary file libgui/src/icons/dialog-information.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/dialog-information.svg --- a/libgui/src/icons/dialog-information.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1159 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Info - - - Jakub Steiner - - - - - dialog - info - - - http://jimmac.musichall.cz - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/dialog-warning.png Binary file libgui/src/icons/dialog-warning.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/dialog-warning.svg --- a/libgui/src/icons/dialog-warning.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,373 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Dialog Warning - 2005-10-14 - - - Andreas Nilsson - - - - - Jakub Steiner, Garrett LeSage - - - - - dialog - warning - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-new.png Binary file libgui/src/icons/document-new.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-new.svg --- a/libgui/src/icons/document-new.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,448 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - New Document - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-open.png Binary file libgui/src/icons/document-open.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-open.svg --- a/libgui/src/icons/document-open.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ - \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-print.png Binary file libgui/src/icons/document-print.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-print.svg --- a/libgui/src/icons/document-print.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,532 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Print Document - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - document - lpr - print - local - laser - bubblejet - inkjet - print - output - cups - lpd - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-save-as.png Binary file libgui/src/icons/document-save-as.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-save-as.svg --- a/libgui/src/icons/document-save-as.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,663 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Save As - - - Jakub Steiner - - - - - hdd - hard drive - save as - io - store - - - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-save.png Binary file libgui/src/icons/document-save.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/document-save.svg --- a/libgui/src/icons/document-save.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,619 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Save - - - Jakub Steiner - - - - - hdd - hard drive - save - io - store - - - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-copy.png Binary file libgui/src/icons/edit-copy.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-copy.svg --- a/libgui/src/icons/edit-copy.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,328 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Copy - 2005-10-15 - - - Andreas Nilsson - - - - - edit - copy - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-cut.png Binary file libgui/src/icons/edit-cut.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-cut.svg --- a/libgui/src/icons/edit-cut.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,508 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Cut - - - Garrett Le Sage - - - - - edit - cut - clipboard - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-delete.png Binary file libgui/src/icons/edit-delete.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-delete.svg --- a/libgui/src/icons/edit-delete.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,196 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Delete - 2005-12-28 - - - Andreas Nilsson - - - http://tango-project.org - - - delete - remove - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-find-replace.png Binary file libgui/src/icons/edit-find-replace.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-find-replace.svg --- a/libgui/src/icons/edit-find-replace.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,974 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Find Replace - - - edit - find - locate - search - - - - - - Garrett LeSage - - - - - - Jakub Steiner, Steven Garrity - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-find.png Binary file libgui/src/icons/edit-find.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-find.svg --- a/libgui/src/icons/edit-find.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,750 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Find - - - edit - find - locate - search - - - - - - Steven Garrity - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-paste.png Binary file libgui/src/icons/edit-paste.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-paste.svg --- a/libgui/src/icons/edit-paste.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,531 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Paste - 2005-10-10 - - - Andreas Nilsson - - - - - edit - paste - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-redo.png Binary file libgui/src/icons/edit-redo.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-redo.svg --- a/libgui/src/icons/edit-redo.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,231 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Edit Redo - - - edit - redo - again - reapply - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-undo.png Binary file libgui/src/icons/edit-undo.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/edit-undo.svg --- a/libgui/src/icons/edit-undo.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Edit Undo - - - edit - undo - revert - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-axes.png Binary file libgui/src/icons/figure-axes.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-axes.svg --- a/libgui/src/icons/figure-axes.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,328 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-grid.png Binary file libgui/src/icons/figure-grid.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-grid.svg --- a/libgui/src/icons/figure-grid.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,357 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-pan.png Binary file libgui/src/icons/figure-pan.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-pan.svg --- a/libgui/src/icons/figure-pan.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,971 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - view - refresh - reload - reboot - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-rotate.png Binary file libgui/src/icons/figure-rotate.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-rotate.svg --- a/libgui/src/icons/figure-rotate.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,441 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - View Refresh - - - reload - refresh - view - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-text.png Binary file libgui/src/icons/figure-text.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-text.svg --- a/libgui/src/icons/figure-text.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,639 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Generic font - - - Andreas Nilsson - - - - - the oxygen guys - - - - http://tango-project.org - - - font - type - letter - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-zoom-in.png Binary file libgui/src/icons/figure-zoom-in.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-zoom-in.svg --- a/libgui/src/icons/figure-zoom-in.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1183 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Martin Ruskov - - - http://commons.wikimedia.org/wiki/Tango_icon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-zoom-original.png Binary file libgui/src/icons/figure-zoom-original.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-zoom-original.svg --- a/libgui/src/icons/figure-zoom-original.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,306 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - 1 - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-zoom-out.png Binary file libgui/src/icons/figure-zoom-out.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/figure-zoom-out.svg --- a/libgui/src/icons/figure-zoom-out.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1180 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Martin Ruskov - - - http://commons.wikimedia.org/wiki/Tango_icon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/fleur.png Binary file libgui/src/icons/fleur.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/folder-new.png Binary file libgui/src/icons/folder-new.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/folder-new.svg --- a/libgui/src/icons/folder-new.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ - \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/folder-up.png Binary file libgui/src/icons/folder-up.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/folder-up.svg --- a/libgui/src/icons/folder-up.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ - \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/folder.png Binary file libgui/src/icons/folder.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/folder.svg --- a/libgui/src/icons/folder.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ - \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-down.png Binary file libgui/src/icons/go-down.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-down.svg --- a/libgui/src/icons/go-down.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,200 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Go Down - - - go - lower - down - arrow - pointer - > - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-first.png Binary file libgui/src/icons/go-first.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-first.svg --- a/libgui/src/icons/go-first.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,204 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Go Previous - - - go - previous - left - arrow - pointer - < - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-home.png Binary file libgui/src/icons/go-home.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-home.svg --- a/libgui/src/icons/go-home.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,445 +0,0 @@ - -image/svg+xmlGo HomeJakub Steinerhttp://jimmac.musichall.czhomereturngodefaultuserdirectoryTuomas Kuosmanen - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-last.png Binary file libgui/src/icons/go-last.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-last.svg --- a/libgui/src/icons/go-last.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,204 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Go Next - - - go - next - right - arrow - pointer - > - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-next.png Binary file libgui/src/icons/go-next.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-next.svg --- a/libgui/src/icons/go-next.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,192 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Go Next - - - go - next - right - arrow - pointer - > - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-previous.png Binary file libgui/src/icons/go-previous.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-previous.svg --- a/libgui/src/icons/go-previous.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,854 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Go Previous - - - go - previous - left - arrow - pointer - < - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-up.png Binary file libgui/src/icons/go-up.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/go-up.svg --- a/libgui/src/icons/go-up.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,196 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Go Up - - - go - higher - up - arrow - pointer - > - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_DocumentationDockWidget.png Binary file libgui/src/icons/graphic_logo_DocumentationDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_DocumentationDockWidget.svg --- a/libgui/src/icons/graphic_logo_DocumentationDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,731 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_Figure.png Binary file libgui/src/icons/graphic_logo_Figure.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_Figure.svg --- a/libgui/src/icons/graphic_logo_Figure.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1226 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_FileEditor.png Binary file libgui/src/icons/graphic_logo_FileEditor.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_FileEditor.svg --- a/libgui/src/icons/graphic_logo_FileEditor.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1060 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_FilesDockWidget.png Binary file libgui/src/icons/graphic_logo_FilesDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_FilesDockWidget.svg --- a/libgui/src/icons/graphic_logo_FilesDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1308 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_HistoryDockWidget.png Binary file libgui/src/icons/graphic_logo_HistoryDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_HistoryDockWidget.svg --- a/libgui/src/icons/graphic_logo_HistoryDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1328 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_NewsDockWidget.png Binary file libgui/src/icons/graphic_logo_NewsDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_NewsDockWidget.svg --- a/libgui/src/icons/graphic_logo_NewsDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1156 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_ReleaseWidget.png Binary file libgui/src/icons/graphic_logo_ReleaseWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_ReleaseWidget.svg --- a/libgui/src/icons/graphic_logo_ReleaseWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1156 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_TerminalDockWidget.png Binary file libgui/src/icons/graphic_logo_TerminalDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_TerminalDockWidget.svg --- a/libgui/src/icons/graphic_logo_TerminalDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1744 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_VariableEditor.png Binary file libgui/src/icons/graphic_logo_VariableEditor.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_VariableEditor.svg --- a/libgui/src/icons/graphic_logo_VariableEditor.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1240 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_WorkspaceView.png Binary file libgui/src/icons/graphic_logo_WorkspaceView.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/graphic_logo_WorkspaceView.svg --- a/libgui/src/icons/graphic_logo_WorkspaceView.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1175 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/hand2.png Binary file libgui/src/icons/hand2.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/icons_license --- a/libgui/src/icons/icons_license Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,122 +0,0 @@ -=========================================== -Icons based on the Tango-Desktop-Project -=========================================== - -Tango-Desktop-Project: -http://tango.freedesktop.org/Tango_Desktop_Project - -Archive with base icon set available at: -http://tango.freedesktop.org/releases/tango-icon-theme-0.8.90.tar.gz - -License -=========================================== - -The Tango base icon theme is released to the Public Domain. - -Icons used for Octave -=========================================== - -applications-system.svg -bookmark-new.svg -dialog-error.svg -dialog-information.svg -dialog-warning.svg -document-new.svg -document-open.svg -document-print.svg -document-save.svg -document-save-as.svg -edit-copy.svg -edit-cut.svg -edit-delete.svg -edit-find.svg -edit-find-replace.svg -edit-paste.svg -edit-redo.svg -edit-undo.svg -figure-rotate.svg (original file view-refresh.svg) -figure-text.svg (original file font-x-generic.svg) -figure-zoom-in.svg (original file view-zoom-in.svg) -figure-zoom-original.svg (original file view-zoom-original.svg) -figure-zoom-out.svg (original file view-zoom-out.svg) -folder.svg -folder-new.svg -go-down.svg -go-first.svg -go-home.svg -go-last.svg -go-next.svg -go-previous.svg -go-up.svg -preferences-system.svg -user-home.svg -view-refresh.svg -view-refresh.svg - -=========================================== -Icons created by the Octave developers -=========================================== - -figure-axes.svg -figure-grid.svg -logo.png -widget-close.svg -widget-dock.svg -widget-undock.svg - -Icons with elements from the Tango theme -=========================================== - -figure-pan.svg -graphic_logo_DocumentationDockWidget.svg -graphic_logo_Figure.svg -graphic_logo_FileEditor.svg -graphic_logo_FilesDockWidget.svg -graphic_logo_HistoryDockWidget.svg -graphic_logo_NewsDockWidget.svg -graphic_logo_ReleaseWidget.svg -graphic_logo_TerminalDockWidget.svg -graphic_logo_WorkspaceView.svg -letter_logo_DocumentationDockWidget.svg -letter_logo_FileEditor.svg -letter_logo_FilesDockWidget.svg -letter_logo_HistoryDockWidget.svg -letter_logo_NewsDockWidget.svg -letter_logo_ReleaseWidget.svg -letter_logo_TerminalDockWidget.svg -letter_logo_WorkspaceView.svg - -bp-next.svg -bp-prev.svg -bp-rm_all.svg -bp-toggle.svg -db-cont.svg -db-step-in.svg -db-step-out.svg -db-step.svg -db-stop.svg -plot-xy-curve.svg -system-run.svg - -Cursors from the standard DMZ theme -=================================== - -https://github.com/GalliumOS/dmz-cursor-theme/tree/master/DMZ-White - -bottom_left_corner.png -bottom_right_corner.png -bottom_side.png -cross.png -fleur.png -hand2.png -left_side.png -right_side.png -top_left_corner.png -top_right_corner.png -top_side.png - -Cursor created by the Octave developers -with elements from the DMZ theme: - -circle.png -circle.svg diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/left_side.png Binary file libgui/src/icons/left_side.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_DocumentationDockWidget.png Binary file libgui/src/icons/letter_logo_DocumentationDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_DocumentationDockWidget.svg --- a/libgui/src/icons/letter_logo_DocumentationDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,363 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - D - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_FileEditor.png Binary file libgui/src/icons/letter_logo_FileEditor.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_FileEditor.svg --- a/libgui/src/icons/letter_logo_FileEditor.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,375 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - E - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_FilesDockWidget.png Binary file libgui/src/icons/letter_logo_FilesDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_FilesDockWidget.svg --- a/libgui/src/icons/letter_logo_FilesDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,375 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - F - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_HistoryDockWidget.png Binary file libgui/src/icons/letter_logo_HistoryDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_HistoryDockWidget.svg --- a/libgui/src/icons/letter_logo_HistoryDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,363 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - H - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_NewsDockWidget.png Binary file libgui/src/icons/letter_logo_NewsDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_NewsDockWidget.svg --- a/libgui/src/icons/letter_logo_NewsDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,363 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - N - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_ReleaseWidget.png Binary file libgui/src/icons/letter_logo_ReleaseWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_ReleaseWidget.svg --- a/libgui/src/icons/letter_logo_ReleaseWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,363 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - R - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_TerminalDockWidget.png Binary file libgui/src/icons/letter_logo_TerminalDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_TerminalDockWidget.svg --- a/libgui/src/icons/letter_logo_TerminalDockWidget.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,363 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - C - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_VariableEditor.png Binary file libgui/src/icons/letter_logo_VariableEditor.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_VariableEditor.svg --- a/libgui/src/icons/letter_logo_VariableEditor.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,332 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - V - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_WorkspaceView.png Binary file libgui/src/icons/letter_logo_WorkspaceView.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/letter_logo_WorkspaceView.svg --- a/libgui/src/icons/letter_logo_WorkspaceView.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,375 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - W - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/license.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/license.md Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,78 @@ +# Icons for Octave + +## Icons based on the Tango-Desktop-Project + +The icons in the directory **tango** are taken from the Tango-Desktop-Projekt + +- [Tango-Desktop-Project](http://tango.freedesktop.org/Tango_Desktop_Project) +- [Archive with base icon set}(http://tango.freedesktop.org/releases/tango-icon-theme-0.8.90.tar.gz) + +The Tango base icon theme is released to the Public Domain. + +## Icons by Octave developers + +The icons in the directory **octave** are created by the Octave developers. + +### Completely new icons + +- figure-axes.svg +- figure-grid.svg +- logo.png +- widget-close.svg +- widget-dock.svg +- widget-undock.svg + +### Icons with elements of the Tango theme + +- figure-pan.svg +- graphic_logo_DocumentationDockWidget.svg +- graphic_logo_Figure.svg +- graphic_logo_FileEditor.svg +- graphic_logo_FilesDockWidget.svg +- graphic_logo_HistoryDockWidget.svg +- graphic_logo_NewsDockWidget.svg +- graphic_logo_ReleaseWidget.svg +- graphic_logo_TerminalDockWidget.svg +- graphic_logo_WorkspaceView.svg +- letter_logo_DocumentationDockWidget.svg +- letter_logo_FileEditor.svg +- letter_logo_FilesDockWidget.svg +- letter_logo_HistoryDockWidget.svg +- letter_logo_NewsDockWidget.svg +- letter_logo_ReleaseWidget.svg +- letter_logo_TerminalDockWidget.svg +- letter_logo_WorkspaceView.svg +- bp-next.svg +- bp-prev.svg +- bp-rm_all.svg +- bp-toggle.svg +- db-cont.svg +- db-step-in.svg +- db-step-out.svg +- db-step.svg +- db-stop.svg +- plot-xy-curve.svg +- system-run.svg + +Cursors from the standard DMZ theme +=================================== + +https://github.com/GalliumOS/dmz-cursor-theme/tree/master/DMZ-White + +bottom_left_corner.png +bottom_right_corner.png +bottom_side.png +cross.png +fleur.png +hand2.png +left_side.png +right_side.png +top_left_corner.png +top_right_corner.png +top_side.png + +Cursor created by the Octave developers +with elements from the DMZ theme: + +circle.png +circle.svg diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/logo.png Binary file libgui/src/icons/logo.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/bp-next.png Binary file libgui/src/icons/octave/128x128/bp-next.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/bp-prev.png Binary file libgui/src/icons/octave/128x128/bp-prev.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/bp-rm-all.png Binary file libgui/src/icons/octave/128x128/bp-rm-all.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/bp-toggle.png Binary file libgui/src/icons/octave/128x128/bp-toggle.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/db-cont.png Binary file libgui/src/icons/octave/128x128/db-cont.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/db-step-in.png Binary file libgui/src/icons/octave/128x128/db-step-in.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/db-step-out.png Binary file libgui/src/icons/octave/128x128/db-step-out.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/db-step.png Binary file libgui/src/icons/octave/128x128/db-step.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/db-stop.png Binary file libgui/src/icons/octave/128x128/db-stop.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/figure-axes.png Binary file libgui/src/icons/octave/128x128/figure-axes.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/figure-grid.png Binary file libgui/src/icons/octave/128x128/figure-grid.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/figure-pan.png Binary file libgui/src/icons/octave/128x128/figure-pan.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/figure-rotate.png Binary file libgui/src/icons/octave/128x128/figure-rotate.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/figure-text.png Binary file libgui/src/icons/octave/128x128/figure-text.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/figure-zoom-in.png Binary file libgui/src/icons/octave/128x128/figure-zoom-in.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/figure-zoom-original.png Binary file libgui/src/icons/octave/128x128/figure-zoom-original.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/figure-zoom-out.png Binary file libgui/src/icons/octave/128x128/figure-zoom-out.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_DocumentationDockWidget.png Binary file libgui/src/icons/octave/128x128/graphic_logo_DocumentationDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_Figure.png Binary file libgui/src/icons/octave/128x128/graphic_logo_Figure.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_FileEditor.png Binary file libgui/src/icons/octave/128x128/graphic_logo_FileEditor.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_FilesDockWidget.png Binary file libgui/src/icons/octave/128x128/graphic_logo_FilesDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_HistoryDockWidget.png Binary file libgui/src/icons/octave/128x128/graphic_logo_HistoryDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_NewsDockWidget.png Binary file libgui/src/icons/octave/128x128/graphic_logo_NewsDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_ReleaseWidget.png Binary file libgui/src/icons/octave/128x128/graphic_logo_ReleaseWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_TerminalDockWidget.png Binary file libgui/src/icons/octave/128x128/graphic_logo_TerminalDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_VariableEditor.png Binary file libgui/src/icons/octave/128x128/graphic_logo_VariableEditor.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/graphic_logo_WorkspaceView.png Binary file libgui/src/icons/octave/128x128/graphic_logo_WorkspaceView.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/letter_logo_DocumentationDockWidget.png Binary file libgui/src/icons/octave/128x128/letter_logo_DocumentationDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/letter_logo_FileEditor.png Binary file libgui/src/icons/octave/128x128/letter_logo_FileEditor.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/letter_logo_FilesDockWidget.png Binary file libgui/src/icons/octave/128x128/letter_logo_FilesDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/letter_logo_HistoryDockWidget.png Binary file libgui/src/icons/octave/128x128/letter_logo_HistoryDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/letter_logo_NewsDockWidget.png Binary file libgui/src/icons/octave/128x128/letter_logo_NewsDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/letter_logo_ReleaseWidget.png Binary file libgui/src/icons/octave/128x128/letter_logo_ReleaseWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/letter_logo_TerminalDockWidget.png Binary file libgui/src/icons/octave/128x128/letter_logo_TerminalDockWidget.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/letter_logo_VariableEditor.png Binary file libgui/src/icons/octave/128x128/letter_logo_VariableEditor.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/letter_logo_WorkspaceView.png Binary file libgui/src/icons/octave/128x128/letter_logo_WorkspaceView.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/logo.png Binary file libgui/src/icons/octave/128x128/logo.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/plot-xy-curve.png Binary file libgui/src/icons/octave/128x128/plot-xy-curve.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/system-run.png Binary file libgui/src/icons/octave/128x128/system-run.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/widget-close-light.png Binary file libgui/src/icons/octave/128x128/widget-close-light.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/widget-close.png Binary file libgui/src/icons/octave/128x128/widget-close.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/widget-dock-light.png Binary file libgui/src/icons/octave/128x128/widget-dock-light.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/widget-dock.png Binary file libgui/src/icons/octave/128x128/widget-dock.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/widget-undock-light.png Binary file libgui/src/icons/octave/128x128/widget-undock-light.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/128x128/widget-undock.png Binary file libgui/src/icons/octave/128x128/widget-undock.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/bp-next.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/bp-next.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1072 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + player + record + music + sound + video + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/bp-prev.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/bp-prev.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + player + record + music + sound + video + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/bp-rm-all.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/bp-rm-all.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1243 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + player + record + music + sound + video + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/bp-toggle.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/bp-toggle.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,948 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + player + record + music + sound + video + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/db-cont.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/db-cont.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Jakub Steiner + + + http://jimmac.musichall.cz/ + + + system + applications + group + category + admin + root + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/db-step-in.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/db-step-in.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1185 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/db-step-out.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/db-step-out.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1190 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/db-step.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/db-step.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/db-stop.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/db-stop.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,677 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/figure-axes.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/figure-axes.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,328 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/figure-grid.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/figure-grid.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/figure-pan.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/figure-pan.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,971 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + + + view + refresh + reload + reboot + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/figure-rotate.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/figure-rotate.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,441 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + View Refresh + + + reload + refresh + view + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/figure-text.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/figure-text.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,639 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Generic font + + + Andreas Nilsson + + + + + the oxygen guys + + + + http://tango-project.org + + + font + type + letter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/figure-zoom-in.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/figure-zoom-in.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov + + + http://commons.wikimedia.org/wiki/Tango_icon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/figure-zoom-original.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/figure-zoom-original.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + + + + + + + + + + + + + + + + + + + + + 1 + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/figure-zoom-out.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/figure-zoom-out.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov + + + http://commons.wikimedia.org/wiki/Tango_icon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_DocumentationDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_DocumentationDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,731 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_Figure.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_Figure.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1226 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_FileEditor.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_FileEditor.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1060 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_FilesDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_FilesDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1308 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_HistoryDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_HistoryDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1328 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_NewsDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_NewsDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1156 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_ReleaseWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_ReleaseWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1156 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_TerminalDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_TerminalDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1744 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_VariableEditor.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_VariableEditor.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1240 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/graphic_logo_WorkspaceView.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/graphic_logo_WorkspaceView.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1175 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/letter_logo_DocumentationDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/letter_logo_DocumentationDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,363 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + D + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/letter_logo_FileEditor.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/letter_logo_FileEditor.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,375 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + E + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/letter_logo_FilesDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/letter_logo_FilesDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,375 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + F + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/letter_logo_HistoryDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/letter_logo_HistoryDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,363 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + H + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/letter_logo_NewsDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/letter_logo_NewsDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,363 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/letter_logo_ReleaseWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/letter_logo_ReleaseWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,363 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + R + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/letter_logo_TerminalDockWidget.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/letter_logo_TerminalDockWidget.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,363 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + C + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/letter_logo_VariableEditor.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/letter_logo_VariableEditor.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,332 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + V + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/letter_logo_WorkspaceView.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/letter_logo_WorkspaceView.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,375 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + W + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/plot-xy-curve.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/plot-xy-curve.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1214 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/system-run.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/system-run.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1334 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Jakub Steiner + + + http://jimmac.musichall.cz/ + + + system + applications + group + category + admin + root + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/widget-close-light.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/widget-close-light.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,78 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/widget-close.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/widget-close.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,78 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/widget-dock-light.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/widget-dock-light.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1 @@ + \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/widget-dock.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/widget-dock.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1 @@ + \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/widget-undock-light.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/widget-undock-light.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1 @@ + \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/octave/scalable/widget-undock.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/octave/scalable/widget-undock.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1 @@ + \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/plot-xy-curve.png Binary file libgui/src/icons/plot-xy-curve.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/plot-xy-curve.svg --- a/libgui/src/icons/plot-xy-curve.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Lapo Calamandrei - - - - - - media - stop - playback - video - music - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/preferences-system.png Binary file libgui/src/icons/preferences-system.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/preferences-system.svg --- a/libgui/src/icons/preferences-system.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,398 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Preferences System - - - preferences - settings - control panel - tweaks - system - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/right_side.png Binary file libgui/src/icons/right_side.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/system-run.png Binary file libgui/src/icons/system-run.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/system-run.svg --- a/libgui/src/icons/system-run.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1334 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - system - applications - group - category - admin - root - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/applications-system.png Binary file libgui/src/icons/tango/128x128/applications-system.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/bookmark-new.png Binary file libgui/src/icons/tango/128x128/bookmark-new.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/dialog-error.png Binary file libgui/src/icons/tango/128x128/dialog-error.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/dialog-information.png Binary file libgui/src/icons/tango/128x128/dialog-information.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/dialog-warning.png Binary file libgui/src/icons/tango/128x128/dialog-warning.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/document-new.png Binary file libgui/src/icons/tango/128x128/document-new.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/document-open.png Binary file libgui/src/icons/tango/128x128/document-open.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/document-print.png Binary file libgui/src/icons/tango/128x128/document-print.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/document-save-as.png Binary file libgui/src/icons/tango/128x128/document-save-as.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/document-save.png Binary file libgui/src/icons/tango/128x128/document-save.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/edit-copy.png Binary file libgui/src/icons/tango/128x128/edit-copy.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/edit-cut.png Binary file libgui/src/icons/tango/128x128/edit-cut.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/edit-delete.png Binary file libgui/src/icons/tango/128x128/edit-delete.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/edit-find-replace.png Binary file libgui/src/icons/tango/128x128/edit-find-replace.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/edit-find.png Binary file libgui/src/icons/tango/128x128/edit-find.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/edit-paste.png Binary file libgui/src/icons/tango/128x128/edit-paste.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/edit-redo.png Binary file libgui/src/icons/tango/128x128/edit-redo.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/edit-undo.png Binary file libgui/src/icons/tango/128x128/edit-undo.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/folder-new.png Binary file libgui/src/icons/tango/128x128/folder-new.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/folder-up.png Binary file libgui/src/icons/tango/128x128/folder-up.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/folder.png Binary file libgui/src/icons/tango/128x128/folder.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/go-down.png Binary file libgui/src/icons/tango/128x128/go-down.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/go-first.png Binary file libgui/src/icons/tango/128x128/go-first.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/go-home.png Binary file libgui/src/icons/tango/128x128/go-home.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/go-last.png Binary file libgui/src/icons/tango/128x128/go-last.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/go-next.png Binary file libgui/src/icons/tango/128x128/go-next.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/go-previous.png Binary file libgui/src/icons/tango/128x128/go-previous.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/go-up.png Binary file libgui/src/icons/tango/128x128/go-up.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/preferences-system.png Binary file libgui/src/icons/tango/128x128/preferences-system.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/user-home.png Binary file libgui/src/icons/tango/128x128/user-home.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/view-refresh.png Binary file libgui/src/icons/tango/128x128/view-refresh.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/view-zoom-in.png Binary file libgui/src/icons/tango/128x128/view-zoom-in.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/view-zoom-original.png Binary file libgui/src/icons/tango/128x128/view-zoom-original.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/128x128/view-zoom-out.png Binary file libgui/src/icons/tango/128x128/view-zoom-out.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/applications-system.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/applications-system.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + System Applications + + + Jakub Steiner + + + http://jimmac.musichall.cz/ + + + system + applications + group + category + admin + root + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/bookmark-new.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/bookmark-new.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,672 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + New Bookmark + + + bookmark + remember + favorite + + + + + + Andreas Nilsson + + + + + + Jakub Steiner + + + create bookmark action + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/dialog-error.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/dialog-error.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,330 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Rodney Dawes + + + + + Jakub Steiner, Garrett LeSage + + + + Dialog Error + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/dialog-information.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/dialog-information.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Info + + + Jakub Steiner + + + + + dialog + info + + + http://jimmac.musichall.cz + + + + Garrett LeSage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/dialog-warning.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/dialog-warning.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,373 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Dialog Warning + 2005-10-14 + + + Andreas Nilsson + + + + + Jakub Steiner, Garrett LeSage + + + + + dialog + warning + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/document-new.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/document-new.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,448 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + New Document + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/document-open.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/document-open.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1 @@ + \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/document-print.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/document-print.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,532 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Print Document + + + Jakub Steiner + + + + http://jimmac.musichall.cz + + + document + lpr + print + local + laser + bubblejet + inkjet + print + output + cups + lpd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/document-save-as.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/document-save-as.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,663 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Save As + + + Jakub Steiner + + + + + hdd + hard drive + save as + io + store + + + + + http://jimmac.musichall.cz + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/document-save.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/document-save.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,619 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Save + + + Jakub Steiner + + + + + hdd + hard drive + save + io + store + + + + + http://jimmac.musichall.cz + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/edit-copy.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/edit-copy.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,328 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Edit Copy + 2005-10-15 + + + Andreas Nilsson + + + + + edit + copy + + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/edit-cut.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/edit-cut.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,508 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Edit Cut + + + Garrett Le Sage + + + + + edit + cut + clipboard + + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/edit-delete.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/edit-delete.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Delete + 2005-12-28 + + + Andreas Nilsson + + + http://tango-project.org + + + delete + remove + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/edit-find-replace.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/edit-find-replace.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,974 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Edit Find Replace + + + edit + find + locate + search + + + + + + Garrett LeSage + + + + + + Jakub Steiner, Steven Garrity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/edit-find.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/edit-find.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,750 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Edit Find + + + edit + find + locate + search + + + + + + Steven Garrity + + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/edit-paste.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/edit-paste.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,531 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Edit Paste + 2005-10-10 + + + Andreas Nilsson + + + + + edit + paste + + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/edit-redo.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/edit-redo.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,231 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Edit Redo + + + edit + redo + again + reapply + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/edit-undo.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/edit-undo.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,230 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Edit Undo + + + edit + undo + revert + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/folder-new.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/folder-new.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1 @@ + \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/folder-up.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/folder-up.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1 @@ + \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/folder.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/folder.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1 @@ + \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/go-down.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/go-down.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Go Down + + + go + lower + down + arrow + pointer + > + + + + + Andreas Nilsson + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/go-first.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/go-first.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Go Previous + + + go + previous + left + arrow + pointer + < + + + + + Andreas Nilsson + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/go-home.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/go-home.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,445 @@ + +image/svg+xmlGo HomeJakub Steinerhttp://jimmac.musichall.czhomereturngodefaultuserdirectoryTuomas Kuosmanen + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/go-last.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/go-last.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Go Next + + + go + next + right + arrow + pointer + > + + + + + Andreas Nilsson + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/go-next.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/go-next.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Go Next + + + go + next + right + arrow + pointer + > + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/go-previous.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/go-previous.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,854 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Go Previous + + + go + previous + left + arrow + pointer + < + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/go-up.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/go-up.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Go Up + + + go + higher + up + arrow + pointer + > + + + + + Andreas Nilsson + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/preferences-system.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/preferences-system.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,398 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Preferences System + + + preferences + settings + control panel + tweaks + system + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/user-home.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/user-home.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,1 @@ + \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/view-refresh.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/view-refresh.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,393 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + View Refresh + + + reload + refresh + view + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/view-zoom-in.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/view-zoom-in.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,436 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Add + 2006-01-04 + + + Andreas Nilsson + + + http://tango-project.org + + + add + plus + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/view-zoom-original.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/view-zoom-original.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,371 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2006-01-04 + + + Andreas Nilsson + + + http://tango-project.org + + + add + plus + + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/tango/scalable/view-zoom-out.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/tango/scalable/view-zoom-out.svg Tue Feb 22 20:54:15 2022 +0100 @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Remove + 2006-01-04 + + + Andreas Nilsson + + + http://tango-project.org + + + remove + delete + + + + + + + + + + + + + + + + + diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/top_left_corner.png Binary file libgui/src/icons/top_left_corner.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/top_right_corner.png Binary file libgui/src/icons/top_right_corner.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/top_side.png Binary file libgui/src/icons/top_side.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/user-home.png Binary file libgui/src/icons/user-home.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/user-home.svg --- a/libgui/src/icons/user-home.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ - \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/view-refresh.png Binary file libgui/src/icons/view-refresh.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/view-refresh.svg --- a/libgui/src/icons/view-refresh.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,393 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - View Refresh - - - reload - refresh - view - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-close-light.png Binary file libgui/src/icons/widget-close-light.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-close-light.svg --- a/libgui/src/icons/widget-close-light.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,78 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-close.png Binary file libgui/src/icons/widget-close.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-close.svg --- a/libgui/src/icons/widget-close.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,78 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-dock-light.png Binary file libgui/src/icons/widget-dock-light.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-dock-light.svg --- a/libgui/src/icons/widget-dock-light.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ - \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-dock.png Binary file libgui/src/icons/widget-dock.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-dock.svg --- a/libgui/src/icons/widget-dock.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ - \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-undock-light.png Binary file libgui/src/icons/widget-undock-light.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-undock-light.svg --- a/libgui/src/icons/widget-undock-light.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ - \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-undock.png Binary file libgui/src/icons/widget-undock.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/widget-undock.svg --- a/libgui/src/icons/widget-undock.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ - \ No newline at end of file diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/zoom-in.png Binary file libgui/src/icons/zoom-in.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/zoom-in.svg --- a/libgui/src/icons/zoom-in.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,436 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Add - 2006-01-04 - - - Andreas Nilsson - - - http://tango-project.org - - - add - plus - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/zoom-original.png Binary file libgui/src/icons/zoom-original.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/zoom-original.svg --- a/libgui/src/icons/zoom-original.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,371 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - 2006-01-04 - - - Andreas Nilsson - - - http://tango-project.org - - - add - plus - - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/zoom-out.png Binary file libgui/src/icons/zoom-out.png has changed diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/icons/zoom-out.svg --- a/libgui/src/icons/zoom-out.svg Mon Feb 21 13:26:57 2022 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,424 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Remove - 2006-01-04 - - - Andreas Nilsson - - - http://tango-project.org - - - remove - delete - - - - - - - - - - - - - - - - - diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/m-editor/file-editor.cc --- a/libgui/src/m-editor/file-editor.cc Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/src/m-editor/file-editor.cc Tue Feb 22 20:54:15 2022 +0100 @@ -2202,15 +2202,16 @@ view_menu->addSeparator (); m_zoom_in_action - = add_action (view_menu, rmgr.icon ("zoom-in"), tr ("Zoom &In"), + = add_action (view_menu, rmgr.icon ("view-zoom-in"), tr ("Zoom &In"), SLOT (zoom_in (bool))); m_zoom_out_action - = add_action (view_menu, rmgr.icon ("zoom-out"), tr ("Zoom &Out"), + = add_action (view_menu, rmgr.icon ("view-zoom-out"), tr ("Zoom &Out"), SLOT (zoom_out (bool))); m_zoom_normal_action - = add_action (view_menu, tr ("&Normal Size"), SLOT (zoom_normal (bool))); + = add_action (view_menu, rmgr.icon ("view-zoom-original"), tr ("&Normal Size"), + SLOT (zoom_normal (bool))); view_menu->addSeparator (); diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/main-window.cc --- a/libgui/src/main-window.cc Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/src/main-window.cc Tue Feb 22 20:54:15 2022 +0100 @@ -135,6 +135,8 @@ setObjectName (gui_obj_name_main_window); + rmgr.config_icon_theme (); + rmgr.update_network_settings (); // We provide specific terminal capabilities, so ensure that diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/module.mk --- a/libgui/src/module.mk Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/src/module.mk Tue Feb 22 20:54:15 2022 +0100 @@ -1,114 +1,117 @@ octave_gui_ICONS = \ - %reldir%/icons/applications-system.png \ - %reldir%/icons/bookmark-new.png \ - %reldir%/icons/bottom_left_corner.png \ - %reldir%/icons/bottom_right_corner.png \ - %reldir%/icons/bottom_side.png \ - %reldir%/icons/bp-next.png \ - %reldir%/icons/bp-prev.png \ - %reldir%/icons/bp-rm-all.png \ - %reldir%/icons/bp-toggle.png \ - %reldir%/icons/circle.png \ - %reldir%/icons/cross.png \ - %reldir%/icons/db-cont.png \ - %reldir%/icons/db-step-in.png \ - %reldir%/icons/db-step-out.png \ - %reldir%/icons/db-step.png \ - %reldir%/icons/db-stop.png \ - %reldir%/icons/dialog-error.png \ - %reldir%/icons/dialog-information.png \ - %reldir%/icons/dialog-warning.png \ - %reldir%/icons/document-new.png \ - %reldir%/icons/document-open.png \ - %reldir%/icons/document-print.png \ - %reldir%/icons/document-save.png \ - %reldir%/icons/document-save-as.png \ - %reldir%/icons/edit-copy.png \ - %reldir%/icons/edit-cut.png \ - %reldir%/icons/edit-delete.png \ - %reldir%/icons/edit-find.png \ - %reldir%/icons/edit-find-replace.png \ - %reldir%/icons/edit-paste.png \ - %reldir%/icons/edit-redo.png \ - %reldir%/icons/edit-undo.png \ - %reldir%/icons/figure-axes.png \ - %reldir%/icons/figure-grid.png \ - %reldir%/icons/figure-pan.png \ - %reldir%/icons/figure-rotate.png \ - %reldir%/icons/figure-text.png \ - %reldir%/icons/figure-zoom-in.png \ - %reldir%/icons/figure-zoom-original.png \ - %reldir%/icons/figure-zoom-out.png \ - %reldir%/icons/fleur.png \ - %reldir%/icons/folder.png \ - %reldir%/icons/folder-new.png \ - %reldir%/icons/folder-up.png \ - %reldir%/icons/go-down.png \ - %reldir%/icons/go-first.png \ - %reldir%/icons/go-home.png \ - %reldir%/icons/go-last.png \ - %reldir%/icons/go-next.png \ - %reldir%/icons/go-previous.png \ - %reldir%/icons/go-up.png \ - %reldir%/icons/graphic_logo_DocumentationDockWidget.png \ - %reldir%/icons/graphic_logo_Figure.png \ - %reldir%/icons/graphic_logo_FileEditor.png \ - %reldir%/icons/graphic_logo_FilesDockWidget.png \ - %reldir%/icons/graphic_logo_HistoryDockWidget.png \ - %reldir%/icons/graphic_logo_NewsDockWidget.png \ - %reldir%/icons/graphic_logo_TerminalDockWidget.png \ - %reldir%/icons/graphic_logo_WorkspaceView.png \ - %reldir%/icons/graphic_logo_ReleaseWidget.png \ - %reldir%/icons/graphic_logo_VariableEditor.png \ - %reldir%/icons/graphic_logo_DocumentationDockWidget.svg \ - %reldir%/icons/graphic_logo_FileEditor.svg \ - %reldir%/icons/graphic_logo_FilesDockWidget.svg \ - %reldir%/icons/graphic_logo_HistoryDockWidget.svg \ - %reldir%/icons/graphic_logo_NewsDockWidget.svg \ - %reldir%/icons/graphic_logo_TerminalDockWidget.svg \ - %reldir%/icons/graphic_logo_WorkspaceView.svg \ - %reldir%/icons/graphic_logo_ReleaseWidget.svg \ - %reldir%/icons/graphic_logo_VariableEditor.svg \ - %reldir%/icons/hand2.png \ - %reldir%/icons/icons_license \ - %reldir%/icons/left_side.png \ - %reldir%/icons/letter_logo_DocumentationDockWidget.png \ - %reldir%/icons/letter_logo_FileEditor.png \ - %reldir%/icons/letter_logo_FilesDockWidget.png \ - %reldir%/icons/letter_logo_HistoryDockWidget.png \ - %reldir%/icons/letter_logo_NewsDockWidget.png \ - %reldir%/icons/letter_logo_TerminalDockWidget.png \ - %reldir%/icons/letter_logo_WorkspaceView.png \ - %reldir%/icons/letter_logo_ReleaseWidget.png \ - %reldir%/icons/letter_logo_VariableEditor.png \ - %reldir%/icons/letter_logo_DocumentationDockWidget.svg \ - %reldir%/icons/letter_logo_FileEditor.svg \ - %reldir%/icons/letter_logo_FilesDockWidget.svg \ - %reldir%/icons/letter_logo_HistoryDockWidget.svg \ - %reldir%/icons/letter_logo_NewsDockWidget.svg \ - %reldir%/icons/letter_logo_TerminalDockWidget.svg \ - %reldir%/icons/letter_logo_WorkspaceView.svg \ - %reldir%/icons/letter_logo_ReleaseWidget.svg \ - %reldir%/icons/letter_logo_VariableEditor.svg \ - %reldir%/icons/logo.png \ - %reldir%/icons/plot-xy-curve.png \ - %reldir%/icons/preferences-system.png \ - %reldir%/icons/right_side.png \ - %reldir%/icons/system-run.png \ - %reldir%/icons/top_left_corner.png \ - %reldir%/icons/top_right_corner.png \ - %reldir%/icons/top_side.png \ - %reldir%/icons/user-home.png \ - %reldir%/icons/view-refresh.png \ - %reldir%/icons/widget-close.png \ - %reldir%/icons/widget-dock.png \ - %reldir%/icons/widget-undock.png \ - %reldir%/icons/widget-close-light.png \ - %reldir%/icons/widget-dock-light.png \ - %reldir%/icons/widget-undock-light.png \ - %reldir%/icons/zoom-in.png \ - %reldir%/icons/zoom-original.png \ - %reldir%/icons/zoom-out.png + %reldir%/cursors/license.md \ + %reldir%/cursors/bottom_left_corner.png \ + %reldir%/cursors/bottom_right_corner.png \ + %reldir%/cursors/bottom_side.png \ + %reldir%/cursors/circle.png \ + %reldir%/cursors/cross.png \ + %reldir%/cursors/fleur.png \ + %reldir%/cursors/hand2.png \ + %reldir%/cursors/left_side.png \ + %reldir%/cursors/right_side.png \ + %reldir%/cursors/top_left_corner.png \ + %reldir%/cursors/top_right_corner.png \ + %reldir%/cursors/top_side.png \ + %reldir%/icons/license.md \ + %reldir%/icons/octave/index.theme \ + %reldir%/icons/octave/128x128/bp-next.png \ + %reldir%/icons/octave/128x128/bp-prev.png \ + %reldir%/icons/octave/128x128/bp-rm-all.png \ + %reldir%/icons/octave/128x128/bp-toggle.png \ + %reldir%/icons/octave/128x128/db-cont.png \ + %reldir%/icons/octave/128x128/db-step-in.png \ + %reldir%/icons/octave/128x128/db-step-out.png \ + %reldir%/icons/octave/128x128/db-step.png \ + %reldir%/icons/octave/128x128/db-stop.png \ + %reldir%/icons/octave/128x128/figure-axes.png \ + %reldir%/icons/octave/128x128/figure-grid.png \ + %reldir%/icons/octave/128x128/figure-pan.png \ + %reldir%/icons/octave/128x128/figure-rotate.png \ + %reldir%/icons/octave/128x128/figure-text.png \ + %reldir%/icons/octave/128x128/figure-zoom-in.png \ + %reldir%/icons/octave/128x128/figure-zoom-original.png \ + %reldir%/icons/octave/128x128/figure-zoom-out.png \ + %reldir%/icons/octave/128x128/graphic_logo_DocumentationDockWidget.png \ + %reldir%/icons/octave/128x128/graphic_logo_Figure.png \ + %reldir%/icons/octave/128x128/graphic_logo_FileEditor.png \ + %reldir%/icons/octave/128x128/graphic_logo_FilesDockWidget.png \ + %reldir%/icons/octave/128x128/graphic_logo_HistoryDockWidget.png \ + %reldir%/icons/octave/128x128/graphic_logo_NewsDockWidget.png \ + %reldir%/icons/octave/128x128/graphic_logo_TerminalDockWidget.png \ + %reldir%/icons/octave/128x128/graphic_logo_WorkspaceView.png \ + %reldir%/icons/octave/128x128/graphic_logo_ReleaseWidget.png \ + %reldir%/icons/octave/128x128/graphic_logo_VariableEditor.png \ + %reldir%/icons/octave/128x128/graphic_logo_DocumentationDockWidget.svg \ + %reldir%/icons/octave/128x128/graphic_logo_FileEditor.svg \ + %reldir%/icons/octave/128x128/graphic_logo_FilesDockWidget.svg \ + %reldir%/icons/octave/128x128/graphic_logo_HistoryDockWidget.svg \ + %reldir%/icons/octave/128x128/graphic_logo_NewsDockWidget.svg \ + %reldir%/icons/octave/128x128/graphic_logo_TerminalDockWidget.svg \ + %reldir%/icons/octave/128x128/graphic_logo_WorkspaceView.svg \ + %reldir%/icons/octave/128x128/graphic_logo_ReleaseWidget.svg \ + %reldir%/icons/octave/128x128/graphic_logo_VariableEditor.svg \ + %reldir%/icons/octave/128x128/letter_logo_DocumentationDockWidget.png \ + %reldir%/icons/octave/128x128/letter_logo_FileEditor.png \ + %reldir%/icons/octave/128x128/letter_logo_FilesDockWidget.png \ + %reldir%/icons/octave/128x128/letter_logo_HistoryDockWidget.png \ + %reldir%/icons/octave/128x128/letter_logo_NewsDockWidget.png \ + %reldir%/icons/octave/128x128/letter_logo_TerminalDockWidget.png \ + %reldir%/icons/octave/128x128/letter_logo_WorkspaceView.png \ + %reldir%/icons/octave/128x128/letter_logo_ReleaseWidget.png \ + %reldir%/icons/octave/128x128/letter_logo_VariableEditor.png \ + %reldir%/icons/octave/128x128/letter_logo_DocumentationDockWidget.svg \ + %reldir%/icons/octave/128x128/letter_logo_FileEditor.svg \ + %reldir%/icons/octave/128x128/letter_logo_FilesDockWidget.svg \ + %reldir%/icons/octave/128x128/letter_logo_HistoryDockWidget.svg \ + %reldir%/icons/octave/128x128/letter_logo_NewsDockWidget.svg \ + %reldir%/icons/octave/128x128/letter_logo_TerminalDockWidget.svg \ + %reldir%/icons/octave/128x128/letter_logo_WorkspaceView.svg \ + %reldir%/icons/octave/128x128/letter_logo_ReleaseWidget.svg \ + %reldir%/icons/octave/128x128/letter_logo_VariableEditor.svg \ + %reldir%/icons/octave/128x128/logo.png \ + %reldir%/icons/octave/128x128/plot-xy-curve.png \ + %reldir%/icons/octave/128x128/system-run.png \ + %reldir%/icons/octave/128x128/widget-close.png \ + %reldir%/icons/octave/128x128/widget-dock.png \ + %reldir%/icons/octave/128x128/widget-undock.png \ + %reldir%/icons/octave/128x128/widget-close-light.png \ + %reldir%/icons/octave/128x128/widget-dock-light.png \ + %reldir%/icons/octave/128x128/widget-undock-light.png \ + %reldir%/icons/tango/index.theme \ + %reldir%/icons/tango/128x128/applications-system.png \ + %reldir%/icons/tango/128x128/bookmark-new.png \ + %reldir%/icons/tango/128x128/dialog-error.png \ + %reldir%/icons/tango/128x128/dialog-information.png \ + %reldir%/icons/tango/128x128/dialog-warning.png \ + %reldir%/icons/tango/128x128/document-new.png \ + %reldir%/icons/tango/128x128/document-open.png \ + %reldir%/icons/tango/128x128/document-print.png \ + %reldir%/icons/tango/128x128/document-save.png \ + %reldir%/icons/tango/128x128/document-save-as.png \ + %reldir%/icons/tango/128x128/edit-copy.png \ + %reldir%/icons/tango/128x128/edit-cut.png \ + %reldir%/icons/tango/128x128/edit-delete.png \ + %reldir%/icons/tango/128x128/edit-find.png \ + %reldir%/icons/tango/128x128/edit-find-replace.png \ + %reldir%/icons/tango/128x128/edit-paste.png \ + %reldir%/icons/tango/128x128/edit-redo.png \ + %reldir%/icons/tango/128x128/edit-undo.png \ + %reldir%/icons/tango/128x128/folder.png \ + %reldir%/icons/tango/128x128/folder-new.png \ + %reldir%/icons/tango/128x128/folder-up.png \ + %reldir%/icons/tango/128x128/go-down.png \ + %reldir%/icons/tango/128x128/go-first.png \ + %reldir%/icons/tango/128x128/go-home.png \ + %reldir%/icons/tango/128x128/go-last.png \ + %reldir%/icons/tango/128x128/go-next.png \ + %reldir%/icons/tango/128x128/go-previous.png \ + %reldir%/icons/tango/128x128/go-up.png \ + %reldir%/icons/tango/128x128/preferences-system.png \ + %reldir%/icons/tango/128x128/user-home.png \ + %reldir%/icons/tango/128x128/view-refresh.png \ + %reldir%/icons/tango/128x128/view-zoom-in.png \ + %reldir%/icons/tango/128x128/view-zoom-original.png \ + %reldir%/icons/tango/128x128/view-zoom-out.png octave_gui_MOC = diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/octave-dock-widget.cc --- a/libgui/src/octave-dock-widget.cc Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/src/octave-dock-widget.cc Tue Feb 22 20:54:15 2022 +0100 @@ -77,7 +77,7 @@ m_title_widget = new QWidget (); m_dock_action = new QAction - (QIcon (":/actions/icons/widget-undock.png"), "", this); + (QIcon::fromTheme ("widget-undock"), "", this); m_dock_action->setToolTip (tr ("Undock widget")); m_dock_button = new QToolButton (m_title_widget); m_dock_button->setDefaultAction (m_dock_action); @@ -85,7 +85,7 @@ m_dock_button->setIconSize (QSize (m_icon_size, m_icon_size)); m_close_action = new QAction - (QIcon (":/actions/icons/widget-close.png"), "", this); + (QIcon::fromTheme ("widget-close"), "", this); m_close_action->setToolTip (tr ("Close widget")); m_close_button = new QToolButton (m_title_widget); m_close_button->setDefaultAction (m_close_action); @@ -233,9 +233,9 @@ m_close_action->setToolTip (tr ("Hide widget")); - setStyleSheet (qdockwidget_css (QString (":/actions/icons/widget-close.png"), + setStyleSheet (qdockwidget_css (QString (":/icons/octave/widget-close.png"), QString ("Close widget"), - QString (":/actions/icons/widget-undock.png"), + QString (":/icons/octave/widget-undock.png"), QString ("Undock widget"), m_icon_size, QString (""), @@ -311,8 +311,7 @@ // adjust the (un)dock icon if (titleBarWidget ()) { - m_dock_action->setIcon (QIcon (":/actions/icons/widget-dock" - + m_icon_color + ".png")); + m_dock_action->setIcon (QIcon::fromTheme ("widget-dock" + m_icon_color)); m_dock_action->setToolTip (tr ("Dock widget")); } else @@ -370,8 +369,7 @@ this, &octave_dock_widget::make_window); if (titleBarWidget ()) { - m_dock_action->setIcon (QIcon (":/actions/icons/widget-undock" - + m_icon_color + ".png")); + m_dock_action->setIcon (QIcon::fromTheme ("widget-undock" + m_icon_color)); m_dock_action->setToolTip (tr ("Undock widget")); } else @@ -798,22 +796,22 @@ css_background = QString (""); } - QString full_dock_icon = ":/actions/icons/" + dock_icon + icon_col + ".png"; - QString full_close_icon = ":/actions/icons/widget-close" + icon_col + ".png"; + QString full_dock_icon = dock_icon + icon_col; + QString full_close_icon = "widget-close" + icon_col; if (titleBarWidget ()) { titleBarWidget ()->setStyleSheet (css_foreground + css_background); css_button = QString ("QToolButton {background: transparent; border: 0px;}"); m_dock_button->setStyleSheet (css_button); m_close_button->setStyleSheet (css_button); - m_dock_action->setIcon (QIcon (full_dock_icon)); - m_close_action->setIcon (QIcon (full_close_icon)); + m_dock_action->setIcon (QIcon::fromTheme (full_dock_icon)); + m_close_action->setIcon (QIcon::fromTheme (full_close_icon)); } else { - setStyleSheet (qdockwidget_css (full_close_icon, + setStyleSheet (qdockwidget_css (":/icons/octave/" + full_close_icon + ".png", close_tooltip, - full_dock_icon, + ":/icons/octave/" + full_dock_icon + ".png", dock_tooltip, m_icon_size, css_foreground, diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/octave-qobject.cc --- a/libgui/src/octave-qobject.cc Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/src/octave-qobject.cc Tue Feb 22 20:54:15 2022 +0100 @@ -313,6 +313,7 @@ // After settings. config_translators (); + m_resource_manager.config_icon_theme (); // Initilize the shortcut-manager m_shortcut_manager.init_data (); diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/resource-manager.cc --- a/libgui/src/resource-manager.cc Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/src/resource-manager.cc Tue Feb 22 20:54:15 2022 +0100 @@ -185,6 +185,30 @@ } + void resource_manager::config_icon_theme (void) + { + QStringList fallbacks (QIcon::fallbackSearchPaths ()); + +// FIXME: update fallbacks depending on selection (tango, octave or system) +// Can cursor be moce to :/cursor and added as search path +// By this, we can generate the list of themes from the :/icons dir? + + if (m_settings && (! m_settings->value (global_icon_theme).toBool ())) + { + QIcon::setThemeName ("tango"); + fallbacks << ":/icons/octave/128x128"; + } + else + { + QIcon::setThemeName (""); + fallbacks << ":/icons/octave/128x128"; + } + + fallbacks << ":/cursors"; + + QIcon::setFallbackSearchPaths (fallbacks); + } + gui_settings * resource_manager::get_settings (void) const { return m_settings; @@ -581,18 +605,8 @@ sys::env::putenv ("HTTPS_PROXY", proxy_url_str); } - QIcon resource_manager::icon (const QString& icon_name, bool fallback) + QIcon resource_manager::icon (const QString& icon_name, bool) { - // If system icon theme is not desired, take own icon files - if (! m_settings->value (global_icon_theme).toBool ()) - return QIcon (":/actions/icons/" + icon_name + ".png"); - - // Use system icon theme with own files as fallback except when the - // fallback is explicitly disabled (fallback=false) - if (fallback) - return QIcon::fromTheme (icon_name, - QIcon (":/actions/icons/" + icon_name + ".png")); - else return QIcon::fromTheme (icon_name); } diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/resource-manager.h --- a/libgui/src/resource-manager.h Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/src/resource-manager.h Tue Feb 22 20:54:15 2022 +0100 @@ -61,6 +61,7 @@ void config_translators (QTranslator *qt_tr, QTranslator *qsci_tr, QTranslator *gui_tr); + void config_icon_theme (void); gui_settings * get_settings (void) const; diff -r 9a95ccd6c417 -r 36dc11ee220d libgui/src/resource.qrc --- a/libgui/src/resource.qrc Mon Feb 21 13:26:57 2022 -0500 +++ b/libgui/src/resource.qrc Tue Feb 22 20:54:15 2022 +0100 @@ -1,95 +1,99 @@ - - icons/applications-system.png - icons/bookmark-new.png - icons/bp-toggle.png - icons/bp-rm-all.png - icons/bp-prev.png - icons/bp-next.png - icons/bottom_left_corner.png - icons/bottom_right_corner.png - icons/bottom_side.png - icons/circle.png - icons/cross.png - icons/db-cont.png - icons/db-step.png - icons/db-step-in.png - icons/db-step-out.png - icons/db-stop.png - icons/dialog-error.png - icons/dialog-information.png - icons/dialog-warning.png - icons/document-new.png - icons/document-open.png - icons/document-print.png - icons/document-save.png - icons/document-save-as.png - icons/edit-copy.png - icons/edit-cut.png - icons/edit-delete.png - icons/edit-find.png - icons/edit-find-replace.png - icons/edit-paste.png - icons/edit-redo.png - icons/edit-undo.png - icons/figure-axes.png - icons/figure-grid.png - icons/figure-pan.png - icons/figure-rotate.png - icons/figure-text.png - icons/figure-zoom-in.png - icons/figure-zoom-original.png - icons/figure-zoom-out.png - icons/folder.png - icons/folder-new.png - icons/folder-up.png - icons/go-down.png - icons/go-first.png - icons/go-home.png - icons/go-last.png - icons/go-next.png - icons/go-previous.png - icons/go-up.png - icons/graphic_logo_FilesDockWidget.png - icons/graphic_logo_Figure.png - icons/graphic_logo_FileEditor.png - icons/graphic_logo_NewsDockWidget.png - icons/graphic_logo_TerminalDockWidget.png - icons/graphic_logo_HistoryDockWidget.png - icons/graphic_logo_WorkspaceView.png - icons/graphic_logo_DocumentationDockWidget.png - icons/graphic_logo_ReleaseWidget.png - icons/graphic_logo_VariableEditor.png - icons/fleur.png - icons/hand2.png - icons/left_side.png - icons/letter_logo_FilesDockWidget.png - icons/letter_logo_FileEditor.png - icons/letter_logo_NewsDockWidget.png - icons/letter_logo_TerminalDockWidget.png - icons/letter_logo_HistoryDockWidget.png - icons/letter_logo_WorkspaceView.png - icons/letter_logo_DocumentationDockWidget.png - icons/letter_logo_ReleaseWidget.png - icons/letter_logo_VariableEditor.png - icons/logo.png - icons/plot-xy-curve.png - icons/preferences-system.png - icons/right_side.png - icons/system-run.png - icons/top_left_corner.png - icons/top_right_corner.png - icons/top_side.png - icons/user-home.png - icons/view-refresh.png - icons/widget-close.png - icons/widget-dock.png - icons/widget-undock.png - icons/widget-close-light.png - icons/widget-dock-light.png - icons/widget-undock-light.png - icons/zoom-in.png - icons/zoom-original.png - icons/zoom-out.png + + cursors/bottom_left_corner.png + cursors/bottom_right_corner.png + cursors/bottom_side.png + cursors/circle.png + cursors/cross.png + cursors/fleur.png + cursors/hand2.png + cursors/left_side.png + cursors/right_side.png + cursors/top_left_corner.png + cursors/top_right_corner.png + cursors/top_side.png + icons/octave/128x128/bp-toggle.png + icons/octave/128x128/bp-rm-all.png + icons/octave/128x128/bp-prev.png + icons/octave/128x128/bp-next.png + icons/octave/128x128/db-cont.png + icons/octave/128x128/db-step.png + icons/octave/128x128/db-step-in.png + icons/octave/128x128/db-step-out.png + icons/octave/128x128/db-stop.png + icons/octave/128x128/figure-axes.png + icons/octave/128x128/figure-grid.png + icons/octave/128x128/figure-pan.png + icons/octave/128x128/figure-rotate.png + icons/octave/128x128/figure-text.png + icons/octave/128x128/figure-zoom-in.png + icons/octave/128x128/figure-zoom-original.png + icons/octave/128x128/figure-zoom-out.png + icons/octave/128x128/graphic_logo_FilesDockWidget.png + icons/octave/128x128/graphic_logo_Figure.png + icons/octave/128x128/graphic_logo_FileEditor.png + icons/octave/128x128/graphic_logo_NewsDockWidget.png + icons/octave/128x128/graphic_logo_TerminalDockWidget.png + icons/octave/128x128/graphic_logo_HistoryDockWidget.png + icons/octave/128x128/graphic_logo_WorkspaceView.png + icons/octave/128x128/graphic_logo_DocumentationDockWidget.png + icons/octave/128x128/graphic_logo_ReleaseWidget.png + icons/octave/128x128/graphic_logo_VariableEditor.png + icons/octave/128x128/letter_logo_FilesDockWidget.png + icons/octave/128x128/letter_logo_FileEditor.png + icons/octave/128x128/letter_logo_NewsDockWidget.png + icons/octave/128x128/letter_logo_TerminalDockWidget.png + icons/octave/128x128/letter_logo_HistoryDockWidget.png + icons/octave/128x128/letter_logo_WorkspaceView.png + icons/octave/128x128/letter_logo_DocumentationDockWidget.png + icons/octave/128x128/letter_logo_ReleaseWidget.png + icons/octave/128x128/letter_logo_VariableEditor.png + icons/octave/128x128/logo.png + icons/octave/128x128/plot-xy-curve.png + icons/octave/128x128/system-run.png + icons/octave/128x128/widget-close.png + icons/octave/128x128/widget-dock.png + icons/octave/128x128/widget-undock.png + icons/octave/128x128/widget-close-light.png + icons/octave/128x128/widget-dock-light.png + icons/octave/128x128/widget-undock-light.png + icons/octave/index.theme + icons/tango/128x128/applications-system.png + icons/tango/128x128/applications-system.png + icons/tango/128x128/bookmark-new.png + icons/tango/128x128/dialog-error.png + icons/tango/128x128/dialog-information.png + icons/tango/128x128/dialog-warning.png + icons/tango/128x128/document-new.png + icons/tango/128x128/document-open.png + icons/tango/128x128/document-print.png + icons/tango/128x128/document-save.png + icons/tango/128x128/document-save-as.png + icons/tango/128x128/edit-copy.png + icons/tango/128x128/edit-cut.png + icons/tango/128x128/edit-delete.png + icons/tango/128x128/edit-find.png + icons/tango/128x128/edit-find-replace.png + icons/tango/128x128/edit-paste.png + icons/tango/128x128/edit-redo.png + icons/tango/128x128/edit-undo.png + icons/tango/128x128/folder.png + icons/tango/128x128/folder-new.png + icons/tango/128x128/folder-up.png + icons/tango/128x128/font-x-generic.png + icons/tango/128x128/go-down.png + icons/tango/128x128/go-first.png + icons/tango/128x128/go-home.png + icons/tango/128x128/go-last.png + icons/tango/128x128/go-next.png + icons/tango/128x128/go-previous.png + icons/tango/128x128/go-up.png + icons/tango/128x128/preferences-system.png + icons/tango/128x128/user-home.png + icons/tango/128x128/view-refresh.png + icons/tango/128x128/view-zoom-in.png + icons/tango/128x128/view-zoom-original.png + icons/tango/128x128/view-zoom-out.png + icons/tango/index.theme