/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #include #include #include #include #include //////////////////////////////////////////////////////////////////////////////////////////////////// SdrPreRenderDevice::SdrPreRenderDevice(OutputDevice& rOriginal) : mrOutputDevice(rOriginal) { } SdrPreRenderDevice::~SdrPreRenderDevice() { } void SdrPreRenderDevice::PreparePreRenderDevice() { // compare size of maPreRenderDevice with size of visible area if(maPreRenderDevice.GetOutputSizePixel() != mrOutputDevice.GetOutputSizePixel()) { maPreRenderDevice.SetOutputSizePixel(mrOutputDevice.GetOutputSizePixel()); } // Also compare the MapModes for zoom/scroll changes if(maPreRenderDevice.GetMapMode() != mrOutputDevice.GetMapMode()) { maPreRenderDevice.SetMapMode(mrOutputDevice.GetMapMode()); } // #i29186# maPreRenderDevice.SetDrawMode(mrOutputDevice.GetDrawMode()); maPreRenderDevice.SetSettings(mrOutputDevice.GetSettings()); } void SdrPreRenderDevice::OutputPreRenderDevice(const Region& rExpandedRegion) { // region to pixels Region aRegionPixel(mrOutputDevice.LogicToPixel(rExpandedRegion)); RegionHandle aRegionHandle(aRegionPixel.BeginEnumRects()); Rectangle aRegionRectanglePixel; // MapModes off sal_Bool bMapModeWasEnabledDest(mrOutputDevice.IsMapModeEnabled()); sal_Bool bMapModeWasEnabledSource(maPreRenderDevice.IsMapModeEnabled()); mrOutputDevice.EnableMapMode(sal_False); maPreRenderDevice.EnableMapMode(sal_False); while(aRegionPixel.GetEnumRects(aRegionHandle, aRegionRectanglePixel)) { // for each rectangle, copy the area const Point aTopLeft(aRegionRectanglePixel.TopLeft()); const Size aSize(aRegionRectanglePixel.GetSize()); mrOutputDevice.DrawOutDev( aTopLeft, aSize, aTopLeft, aSize, maPreRenderDevice); #ifdef DBG_UTIL // #i74769# static bool bDoPaintForVisualControlRegion(false); if(bDoPaintForVisualControlRegion) { Color aColor((((((rand()&0x7f)|0x80)<<8L)|((rand()&0x7f)|0x80))<<8L)|((rand()&0x7f)|0x80)); mrOutputDevice.SetLineColor(aColor); mrOutputDevice.SetFillColor(); mrOutputDevice.DrawRect(aRegionRectanglePixel); } #endif } aRegionPixel.EndEnumRects(aRegionHandle); mrOutputDevice.EnableMapMode(bMapModeWasEnabledDest); maPreRenderDevice.EnableMapMode(bMapModeWasEnabledSource); } //////////////////////////////////////////////////////////////////////////////////////////////////// void SdrPaintWindow::impCreateOverlayManager(const bool bUseBuffer) { // When the buffer usage has changed then we have to create a new // overlay manager. Save the current one so that later we can move its // overlay objects to the new one. rtl::Reference xOldOverlayManager; if(mbUseBuffer != bUseBuffer) { mbUseBuffer = bUseBuffer; xOldOverlayManager = mxOverlayManager; mxOverlayManager.clear(); } // not yet one created? if(!mxOverlayManager.is()) { // is it a window? if(OUTDEV_WINDOW == GetOutputDevice().GetOutDevType()) { // decide which OverlayManager to use if(GetPaintView().IsBufferedOverlayAllowed() && mbUseBuffer) { // buffered OverlayManager, buffers its background and refreshes from there // for pure overlay changes (no system redraw). The 3rd parameter specifies // whether that refresh itself will use a 2nd vdev to avoid flickering. // Also hand over the old OverlayManager if existent; this means to take over // the registered OverlayObjects from it mxOverlayManager = ::sdr::overlay::OverlayManagerBuffered::create(GetOutputDevice(), xOldOverlayManager.get(), true); } else { // unbuffered OverlayManager, just invalidates places where changes // take place // Also hand over the old OverlayManager if existent; this means to take over // the registered OverlayObjects from it mxOverlayManager = ::sdr::overlay::OverlayManager::create(GetOutputDevice(), xOldOverlayManager.get()); } OSL_ENSURE(mxOverlayManager.is(), "SdrPaintWindow::SdrPaintWindow: Could not allocate an overlayManager (!)"); // Request a repaint so that the buffered overlay manager fills // its buffer properly. This is a workaround for missing buffer // updates. Window* pWindow = dynamic_cast(&GetOutputDevice()); if (pWindow != NULL) pWindow->Invalidate(); Color aColA(GetPaintView().getOptionsDrawinglayer().GetStripeColorA()); Color aColB(GetPaintView().getOptionsDrawinglayer().GetStripeColorB()); if(Application::GetSettings().GetStyleSettings().GetHighContrastMode()) { aColA = aColB = Application::GetSettings().GetStyleSettings().GetHighlightColor(); aColB.Invert(); } mxOverlayManager->setStripeColorA(aColA); mxOverlayManager->setStripeColorB(aColB); mxOverlayManager->setStripeLengthPixel(GetPaintView().getOptionsDrawinglayer().GetStripeLength()); } } } SdrPaintWindow::SdrPaintWindow(SdrPaintView& rNewPaintView, OutputDevice& rOut) : mrOutputDevice(rOut), mrPaintView(rNewPaintView), mpPreRenderDevice(0L), mbTemporaryTarget(false), // #i72889# mbUseBuffer(true) { } SdrPaintWindow::~SdrPaintWindow() { mxOverlayManager.clear(); DestroyPreRenderDevice(); } rtl::Reference< ::sdr::overlay::OverlayManager > SdrPaintWindow::GetOverlayManager() const { if(!mxOverlayManager.is()) { // Create buffered overlay manager by default. const_cast< SdrPaintWindow* >(this)->impCreateOverlayManager(true); } return mxOverlayManager; } Rectangle SdrPaintWindow::GetVisibleArea() const { Size aVisSizePixel(GetOutputDevice().GetOutputSizePixel()); return Rectangle(GetOutputDevice().PixelToLogic(Rectangle(Point(0,0), aVisSizePixel))); } sal_Bool SdrPaintWindow::OutputToRecordingMetaFile() const { GDIMetaFile* pMetaFile = mrOutputDevice.GetConnectMetaFile(); return (pMetaFile && pMetaFile->IsRecord() && !pMetaFile->IsPause()); } void SdrPaintWindow::PreparePreRenderDevice() { const sal_Bool bPrepareBufferedOutput( mrPaintView.IsBufferedOutputAllowed() && !OutputToPrinter() && !OutputToVirtualDevice() && !OutputToRecordingMetaFile()); if(bPrepareBufferedOutput) { if(!mpPreRenderDevice) { mpPreRenderDevice = new SdrPreRenderDevice(mrOutputDevice); } } else { DestroyPreRenderDevice(); } if(mpPreRenderDevice) { mpPreRenderDevice->PreparePreRenderDevice(); } } void SdrPaintWindow::DestroyPreRenderDevice() { if(mpPreRenderDevice) { delete mpPreRenderDevice; mpPreRenderDevice = 0L; } } void SdrPaintWindow::OutputPreRenderDevice(const Region& rExpandedRegion) { if(mpPreRenderDevice) { mpPreRenderDevice->OutputPreRenderDevice(rExpandedRegion); } } // #i73602# add flag if buffer shall be used void SdrPaintWindow::DrawOverlay(const Region& rRegion, bool bUseBuffer) { // ## force creation of OverlayManager since the first repaint needs to // save the background to get a controlled start into overlay mechanism impCreateOverlayManager(bUseBuffer); if(mxOverlayManager.is() && !OutputToPrinter()) { if(mpPreRenderDevice && bUseBuffer) { mxOverlayManager->completeRedraw(rRegion, &mpPreRenderDevice->GetPreRenderDevice()); } else { mxOverlayManager->completeRedraw(rRegion); } } } const Region& SdrPaintWindow::GetRedrawRegion() const { return maRedrawRegion; } void SdrPaintWindow::SetRedrawRegion(const Region& rNew) { maRedrawRegion = rNew; } //////////////////////////////////////////////////////////////////////////////////////////////////// // eof /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ture/accfixes2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRizal Muttaqin <riz_17_oke@yahoo.co.id>2018-06-24 01:15:38 +0700
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2018-06-24 05:41:52 +0200
commit5211bc416e410ead0827912c12d666643e3eb11e (patch)
tree10780010cb308b4cc400adb33016e02bc79d0ead /icon-themes
parent7414e07f52af87094240f5c3d9a0eb764e8642f5 (diff)
Karasa Jaga: Update many form icons etc
Change-Id: If0153fc42a41a4890a7ba77fe4ff43f9090b14f8 Reviewed-on: https://gerrit.libreoffice.org/56270 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'icon-themes')
-rw-r--r--icon-themes/karasa_jaga/avmedia/res/av02050.pngbin873 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/avmedia/res/av02052.pngbin961 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/avmedia/res/av02054.pngbin791 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/avmedia/res/avl02050.pngbin1481 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/avmedia/res/avl02052.pngbin1684 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/avmedia/res/avl02054.pngbin1288 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/basicshapes.ellipse-pie.pngbin928 -> 805 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/beforeobject.pngbin1363 -> 1256 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/behindobject.pngbin1376 -> 1300 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/choosecontrols.pngbin2601 -> 2612 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/circlepie.pngbin1213 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/combobox.pngbin1236 -> 1016 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/config.pngbin2465 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/controlproperties.pngbin2042 -> 2015 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/distributecolumns.pngbin586 -> 539 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/distributerows.pngbin680 -> 614 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/doubleclicktextedit.pngbin1520 -> 1179 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/drawcaption.pngbin1454 -> 1452 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/edit.pngbin994 -> 797 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/ellipsecut.pngbin1112 -> 983 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/ellipsecut_unfilled.pngbin1022 -> 938 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/entergroup.pngbin1792 -> 1679 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/expandpage.pngbin828 -> 750 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/extrusiondepthfloater.pngbin1262 -> 1246 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/extrusiondirectionfloater.pngbin1340 -> 1340 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-card.pngbin665 -> 524 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-collate.pngbin836 -> 795 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-delay.pngbin784 -> 700 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-direct-access-storage.pngbin1208 -> 1156 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-display.pngbin955 -> 897 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-document.pngbin696 -> 621 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-internal-storage.pngbin602 -> 445 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-magnetic-disk.pngbin1102 -> 1091 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-manual-input.pngbin694 -> 596 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-merge.pngbin1004 -> 948 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-multidocument.pngbin931 -> 678 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-off-page-connector.pngbin692 -> 549 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-or.pngbin1316 -> 1148 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-predefined-process.pngbin541 -> 411 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-punched-tape.pngbin1069 -> 1023 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-sequential-access.pngbin1167 -> 1017 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-sort.pngbin696 -> 732 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-stored-data.pngbin909 -> 846 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-summing-junction.pngbin1325 -> 1345 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-terminator.pngbin951 -> 873 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/formatgroup.pngbin1366 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/formatungroup.pngbin1215 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/grafgamma.pngbin797 -> 725 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/group.pngbin1179 -> 1240 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/groupbox.pngbin764 -> 608 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/hscrollbar.pngbin1010 -> 1066 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/imagebutton.pngbin1268 -> 1223 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/insertfixedtext.pngbin1039 -> 1139 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/insertmasterpage.pngbin893 -> 1046 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/interactivegradient.pngbin724 -> 714 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/interactivetransparence.pngbin743 -> 843 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/leaveallgroups.pngbin1794 -> 1700 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/leavegroup.pngbin1771 -> 1675 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/listbox.pngbin996 -> 925 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/morecontrols.pngbin1846 -> 1816 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/navigationbar.pngbin850 -> 808 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/objectcatalog.pngbin1663 -> 1661 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/presentationminimizer.pngbin2510 -> 2122 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/pushbutton.pngbin1057 -> 1022 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/quickedit.pngbin908 -> 1132 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/rect_rounded_unfilled.pngbin500 -> 429 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/rect_unfilled.pngbin292 -> 220 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/refreshformcontrol.pngbin2473 -> 2460 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/scrollbar.pngbin1167 -> 1171 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/showbookview.pngbin960 -> 776 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/showbrowser.pngbin2266 -> 2221 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/showchanges.pngbin0 -> 2417 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/showmultiplepages.pngbin1499 -> 573 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/showpropbrowser.pngbin2266 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/showtwopages.pngbin945 -> 560 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/smallcaps.pngbin895 -> 896 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/spinbutton.pngbin1130 -> 1131 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/square.pngbin658 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/square_rounded_unfilled.pngbin461 -> 490 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/square_unfilled.pngbin283 -> 242 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/subscript.pngbin1436 -> 919 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/superscript.pngbin1337 -> 913 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/togglegridhorizontal.pngbin311 -> 557 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/togglegridvertical.pngbin307 -> 569 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/transformdialog.pngbin1232 -> 1069 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/ungroup.pngbin1215 -> 1288 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/urlbutton.pngbin1681 -> 1352 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/verticalcaption.pngbin1410 -> 1420 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/viewformasgrid.pngbin824 -> 730 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/32/zoompanning.pngbin1869 -> 2089 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_beforeobject.pngbin1042 -> 845 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_behindobject.pngbin1047 -> 921 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_changedatabasefield.pngbin0 -> 1021 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_choosecontrols.pngbin1533 -> 1456 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_circle_unfilled.pngbin707 -> 660 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_circlepie_unfilled.pngbin700 -> 587 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_combobox.pngbin952 -> 699 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_config.pngbin1533 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_controlproperties.pngbin1272 -> 1231 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_distributecolumns.pngbin591 -> 448 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_distributerows.pngbin629 -> 452 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_doubleclicktextedit.pngbin538 -> 815 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_drawcaption.pngbin1184 -> 920 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_edit.pngbin835 -> 664 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_entergroup.pngbin1274 -> 1123 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_expandpage.pngbin958 -> 625 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_extrusiondepthfloater.pngbin981 -> 900 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_extrusiondirectionfloater.pngbin995 -> 968 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_formatcolumns.pngbin768 -> 580 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_formatgroup.pngbin1054 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_formatungroup.pngbin1003 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_formdesigntools.pngbin1063 -> 927 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_formproperties.pngbin773 -> 723 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_group.pngbin973 -> 941 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_groupbox.pngbin137 -> 500 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_hscrollbar.pngbin836 -> 761 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_imagebutton.pngbin1081 -> 802 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_insertmasterpage.pngbin634 -> 801 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_interactivegradient.pngbin917 -> 544 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_interactivetransparence.pngbin913 -> 681 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_label-old.pngbin260 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_leaveallgroups.pngbin1311 -> 1176 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_leavegroup.pngbin1270 -> 1141 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_listbox.pngbin838 -> 627 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_marks.pngbin532 -> 362 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_matchgroup.pngbin701 -> 706 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_morecontrols.pngbin1225 -> 1210 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_navigationbar.pngbin905 -> 552 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_outlinecollapse.pngbin758 -> 497 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_outlinecollapseall.pngbin834 -> 504 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_outlineexpand.pngbin763 -> 488 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_outlineexpandall.pngbin843 -> 494 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_pie_unfilled.pngbin635 -> 560 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_presentationminimizer.pngbin1414 -> 1342 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_pushbutton.pngbin797 -> 679 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_quickedit.pngbin790 -> 888 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_rect_unfilled.pngbin253 -> 226 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_refreshformcontrol.pngbin1545 -> 1425 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_scrollbar.pngbin828 -> 798 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_setborderstyle.pngbin546 -> 490 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_showbookview.pngbin690 -> 586 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_showbrowser.pngbin1398 -> 1369 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_showchanges.pngbin0 -> 1344 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_showmultiplepages.pngbin942 -> 578 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_showpropbrowser.pngbin1398 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_showtwopages.pngbin570 -> 417 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_smallcaps.pngbin631 -> 617 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_spinbutton.pngbin1002 -> 780 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_splittable.pngbin546 -> 498 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_square.pngbin469 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_square_unfilled.pngbin269 -> 221 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_transformdialog.pngbin853 -> 745 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_urlbutton.pngbin1206 -> 912 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_verticalcaption.pngbin1251 -> 867 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/lc_viewformasgrid.pngbin433 -> 499 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_beforeobject.pngbin797 -> 664 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_behindobject.pngbin724 -> 666 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_choosecontrols.pngbin1021 -> 966 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_circle_unfilled.pngbin562 -> 528 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_circlecut.pngbin712 -> 544 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_circlecut_unfilled.pngbin617 -> 502 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_circlepie_unfilled.pngbin541 -> 484 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_color.pngbin717 -> 710 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_combobox.pngbin729 -> 589 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_config.pngbin1021 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_controlproperties.pngbin910 -> 864 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_distributecolumns.pngbin443 -> 439 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_distributerows.pngbin482 -> 439 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_doubleclicktextedit.pngbin669 -> 635 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_drawcaption.pngbin806 -> 742 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_edit.pngbin527 -> 530 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_entergroup.pngbin900 -> 790 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_expandpage.pngbin676 -> 393 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_extrusiondepthfloater.pngbin722 -> 716 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_extrusiondirectionfloater.pngbin755 -> 709 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_formatcolumns.pngbin592 -> 491 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_formatgroup.pngbin814 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_formatungroup.pngbin803 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_formdesigntools.pngbin790 -> 654 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_formproperties.pngbin603 -> 539 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_group.pngbin800 -> 691 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_groupbox.pngbin133 -> 401 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_hscrollbar.pngbin590 -> 529 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_imagebutton.pngbin703 -> 577 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_insertfixedtext.pngbin251 -> 320 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_insertmasterpage.pngbin583 -> 685 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_interactivegradient.pngbin635 -> 429 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_interactivetransparence.pngbin552 -> 541 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_leaveallgroups.pngbin875 -> 808 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_leavegroup.pngbin897 -> 789 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_listbox.pngbin682 -> 540 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_matchgroup.pngbin598 -> 562 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_morecontrols.pngbin848 -> 851 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_navigationbar.pngbin593 -> 464 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_open_h.pngbin704 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_outlinecollapse.pngbin621 -> 447 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_outlinecollapseall.pngbin661 -> 465 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_outlineexpand.pngbin634 -> 436 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_outlineexpandall.pngbin665 -> 448 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_pie_unfilled.pngbin458 -> 484 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_presentationminimizer.pngbin920 -> 815 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_previewprintoptions.pngbin834 -> 848 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_printpreview.pngbin819 -> 906 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_pushbutton.pngbin542 -> 561 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_quickedit.pngbin547 -> 670 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_rect_unfilled.pngbin251 -> 218 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_refreshformcontrol.pngbin965 -> 974 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_scrollbar.pngbin604 -> 578 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_setborderstyle.pngbin391 -> 389 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_showbookview.pngbin539 -> 389 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_showbrowser.pngbin933 -> 930 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_showchanges.pngbin0 -> 881 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_showmultiplepages.pngbin521 -> 352 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_showpropbrowser.pngbin933 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_showtwopages.pngbin351 -> 311 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_smallcaps.pngbin527 -> 490 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_spinbutton.pngbin751 -> 530 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_splittable.pngbin437 -> 505 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_square.pngbin397 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_square_unfilled.pngbin265 -> 220 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_transformdialog.pngbin682 -> 610 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_ungroup.pngbin803 -> 695 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_urlbutton.pngbin797 -> 607 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_verticalcaption.pngbin880 -> 697 bytes
-rw-r--r--icon-themes/karasa_jaga/cmd/sc_viewformasgrid.pngbin702 -> 441 bytes
-rw-r--r--icon-themes/karasa_jaga/links.txt56
-rw-r--r--icon-themes/karasa_jaga/reportdesign/res/sc30770.pngbin872 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/reportdesign/res/sx11047.pngbin648 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/reportdesign/res/sx12452.pngbin1001 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/res/mainapp_16.pngbin509 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/res/mainapp_32.pngbin746 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/res/sx10144.pngbin816 -> 771 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/displaymode_handoutmaster.pngbin683 -> 724 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/displaymode_notes.pngbin735 -> 571 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/displaymode_notesmaster.pngbin697 -> 761 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/displaymode_outline.pngbin1478 -> 683 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/displaymode_slide.pngbin677 -> 674 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/displaymode_slidemaster.pngbin785 -> 843 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/displaymode_slidesorter.pngbin3372 -> 701 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/effectfade_16.pngbin351 -> 567 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/effectshape_16.pngbin299 -> 625 bytes
-rw-r--r--icon-themes/karasa_jaga/sd/res/minimize_presi_80.pngbin9093 -> 7476 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/extrusion05inch_16.pngbin451 -> 444 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/extrusion0inch_16.pngbin336 -> 276 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/extrusion1inch_16.pngbin520 -> 501 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/extrusion2inch_16.pngbin602 -> 615 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/extrusion4inch_16.pngbin660 -> 654 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/extrusioninfinity_16.pngbin686 -> 707 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/filter3d.pngbin429 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/fw07.pngbin156 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/fw08.pngbin159 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/fw09.pngbin154 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/id08.pngbin683 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/lngcheck.pngbin860 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/objects.pngbin825 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/rotate3d.pngbin967 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/slidezoombutton_10.pngbin192 -> 325 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/slidezoomin_10.pngbin457 -> 422 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/slidezoomout_10.pngbin441 -> 426 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/symphony/lpselected-spacing-1.pngbin118 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/symphony/lpselected-spacing-1_15.pngbin121 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/symphony/lpselected-spacing-1_5.pngbin123 -> 0 bytes
-rw-r--r--icon-themes/karasa_jaga/svx/res/symphony/lpselected-spacing-2.pngbin124 -> 0 bytes
263 files changed, 49 insertions, 7 deletions
diff --git a/icon-themes/karasa_jaga/avmedia/res/av02050.png b/icon-themes/karasa_jaga/avmedia/res/av02050.png
deleted file mode 100644
index cf40d49230db..000000000000
--- a/icon-themes/karasa_jaga/avmedia/res/av02050.png
+++ /dev/null
Binary files differ
diff --git a/icon-themes/karasa_jaga/avmedia/res/av02052.png b/icon-themes/karasa_jaga/avmedia/res/av02052.png
deleted file mode 100644
index c4de626444ce..000000000000
--- a/icon-themes/karasa_jaga/avmedia/res/av02052.png
+++ /dev/null
Binary files differ
diff --git a/icon-themes/karasa_jaga/avmedia/res/av02054.png b/icon-themes/karasa_jaga/avmedia/res/av02054.png
deleted file mode 100644
index e9647a372d3b..000000000000
--- a/icon-themes/karasa_jaga/avmedia/res/av02054.png
+++ /dev/null
Binary files differ
diff --git a/icon-themes/karasa_jaga/avmedia/res/avl02050.png b/icon-themes/karasa_jaga/avmedia/res/avl02050.png
deleted file mode 100644
index 8acafc647267..000000000000
--- a/icon-themes/karasa_jaga/avmedia/res/avl02050.png
+++ /dev/null
Binary files differ
diff --git a/icon-themes/karasa_jaga/avmedia/res/avl02052.png b/icon-themes/karasa_jaga/avmedia/res/avl02052.png
deleted file mode 100644
index 5ca0475eb7c2..000000000000
--- a/icon-themes/karasa_jaga/avmedia/res/avl02052.png
+++ /dev/null
Binary files differ
diff --git a/icon-themes/karasa_jaga/avmedia/res/avl02054.png b/icon-themes/karasa_jaga/avmedia/res/avl02054.png
deleted file mode 100644
index a302b1797fe8..000000000000
--- a/icon-themes/karasa_jaga/avmedia/res/avl02054.png
+++ /dev/null
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/basicshapes.ellipse-pie.png b/icon-themes/karasa_jaga/cmd/32/basicshapes.ellipse-pie.png
index 265f1902746e..3dd5aa54f4eb 100644
--- a/icon-themes/karasa_jaga/cmd/32/basicshapes.ellipse-pie.png
+++ b/icon-themes/karasa_jaga/cmd/32/basicshapes.ellipse-pie.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/beforeobject.png b/icon-themes/karasa_jaga/cmd/32/beforeobject.png
index 8b7e069ef3c9..5b760e8793b6 100644
--- a/icon-themes/karasa_jaga/cmd/32/beforeobject.png
+++ b/icon-themes/karasa_jaga/cmd/32/beforeobject.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/behindobject.png b/icon-themes/karasa_jaga/cmd/32/behindobject.png
index 2e16c3d92a76..27844b9454f9 100644
--- a/icon-themes/karasa_jaga/cmd/32/behindobject.png
+++ b/icon-themes/karasa_jaga/cmd/32/behindobject.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/choosecontrols.png b/icon-themes/karasa_jaga/cmd/32/choosecontrols.png
index f50a779897f1..758a2bd55725 100644
--- a/icon-themes/karasa_jaga/cmd/32/choosecontrols.png
+++ b/icon-themes/karasa_jaga/cmd/32/choosecontrols.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/circlepie.png b/icon-themes/karasa_jaga/cmd/32/circlepie.png
deleted file mode 100644
index 53f8b060bb24..000000000000
--- a/icon-themes/karasa_jaga/cmd/32/circlepie.png
+++ /dev/null
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/combobox.png b/icon-themes/karasa_jaga/cmd/32/combobox.png
index 7b3260691fa7..54b1558ef85f 100644
--- a/icon-themes/karasa_jaga/cmd/32/combobox.png
+++ b/icon-themes/karasa_jaga/cmd/32/combobox.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/config.png b/icon-themes/karasa_jaga/cmd/32/config.png
deleted file mode 100644
index efc8585c90e1..000000000000
--- a/icon-themes/karasa_jaga/cmd/32/config.png
+++ /dev/null
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/controlproperties.png b/icon-themes/karasa_jaga/cmd/32/controlproperties.png
index 4ad88e6cfbe9..895106ce0362 100644
--- a/icon-themes/karasa_jaga/cmd/32/controlproperties.png
+++ b/icon-themes/karasa_jaga/cmd/32/controlproperties.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/distributecolumns.png b/icon-themes/karasa_jaga/cmd/32/distributecolumns.png
index 138bfb09bce6..05b4d2b175bd 100644
--- a/icon-themes/karasa_jaga/cmd/32/distributecolumns.png
+++ b/icon-themes/karasa_jaga/cmd/32/distributecolumns.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/distributerows.png b/icon-themes/karasa_jaga/cmd/32/distributerows.png
index f915e23de010..1a5903ab8cce 100644
--- a/icon-themes/karasa_jaga/cmd/32/distributerows.png
+++ b/icon-themes/karasa_jaga/cmd/32/distributerows.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/doubleclicktextedit.png b/icon-themes/karasa_jaga/cmd/32/doubleclicktextedit.png
index c9d347904164..51e2aec29b40 100644
--- a/icon-themes/karasa_jaga/cmd/32/doubleclicktextedit.png
+++ b/icon-themes/karasa_jaga/cmd/32/doubleclicktextedit.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/drawcaption.png b/icon-themes/karasa_jaga/cmd/32/drawcaption.png
index a4c355612fb4..1adad4a618f5 100644
--- a/icon-themes/karasa_jaga/cmd/32/drawcaption.png
+++ b/icon-themes/karasa_jaga/cmd/32/drawcaption.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/edit.png b/icon-themes/karasa_jaga/cmd/32/edit.png
index 71784a07ab0e..3d413f27c13e 100644
--- a/icon-themes/karasa_jaga/cmd/32/edit.png
+++ b/icon-themes/karasa_jaga/cmd/32/edit.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/ellipsecut.png b/icon-themes/karasa_jaga/cmd/32/ellipsecut.png
index aaf4414da738..834e8aa05ac5 100644
--- a/icon-themes/karasa_jaga/cmd/32/ellipsecut.png
+++ b/icon-themes/karasa_jaga/cmd/32/ellipsecut.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/ellipsecut_unfilled.png b/icon-themes/karasa_jaga/cmd/32/ellipsecut_unfilled.png
index a23668a584b7..3c74aff23eae 100644
--- a/icon-themes/karasa_jaga/cmd/32/ellipsecut_unfilled.png
+++ b/icon-themes/karasa_jaga/cmd/32/ellipsecut_unfilled.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/entergroup.png b/icon-themes/karasa_jaga/cmd/32/entergroup.png
index 6923917f8d39..8b7b7dd047f7 100644
--- a/icon-themes/karasa_jaga/cmd/32/entergroup.png
+++ b/icon-themes/karasa_jaga/cmd/32/entergroup.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/expandpage.png b/icon-themes/karasa_jaga/cmd/32/expandpage.png
index 5d28d2252826..1ea565d62b09 100644
--- a/icon-themes/karasa_jaga/cmd/32/expandpage.png
+++ b/icon-themes/karasa_jaga/cmd/32/expandpage.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/extrusiondepthfloater.png b/icon-themes/karasa_jaga/cmd/32/extrusiondepthfloater.png
index 345bed00dba0..112c9cd007d1 100644
--- a/icon-themes/karasa_jaga/cmd/32/extrusiondepthfloater.png
+++ b/icon-themes/karasa_jaga/cmd/32/extrusiondepthfloater.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/extrusiondirectionfloater.png b/icon-themes/karasa_jaga/cmd/32/extrusiondirectionfloater.png
index c26dedea7cf3..9ca8bfd0896f 100644
--- a/icon-themes/karasa_jaga/cmd/32/extrusiondirectionfloater.png
+++ b/icon-themes/karasa_jaga/cmd/32/extrusiondirectionfloater.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-card.png b/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-card.png
index edfe8101daa6..15573e94c28d 100644
--- a/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-card.png
+++ b/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-card.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-collate.png b/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-collate.png
index 9697dc86facd..7b4f6e7bc3be 100644
--- a/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-collate.png
+++ b/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-collate.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-delay.png b/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-delay.png
index 4eade0d933a9..9ec24fccb171 100644
--- a/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-delay.png
+++ b/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-delay.png
Binary files differ
diff --git a/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-direct-access-storage.png b/icon-themes/karasa_jaga/cmd/32/flowchartshapes.flowchart-direct-access-storage.png