Treat editor icons as scalable
|
@ -357,6 +357,16 @@ add_qt_image_dlls() {
|
||||||
QT_IMAGEFORMATS[$CONFIG]="${QT_IMAGEFORMATS[$CONFIG]} $@"
|
QT_IMAGEFORMATS[$CONFIG]="${QT_IMAGEFORMATS[$CONFIG]} $@"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare -A QT_ICONENGINES
|
||||||
|
QT_ICONENGINES["Release"]=""
|
||||||
|
QT_ICONENGINES["Debug"]=""
|
||||||
|
QT_ICONENGINES["RelWithDebInfo"]=""
|
||||||
|
add_qt_icon_dlls() {
|
||||||
|
local CONFIG=$1
|
||||||
|
shift
|
||||||
|
QT_ICONENGINES[$CONFIG]="${QT_ICONENGINES[$CONFIG]} $@"
|
||||||
|
}
|
||||||
|
|
||||||
if [ -z $PLATFORM ]; then
|
if [ -z $PLATFORM ]; then
|
||||||
PLATFORM="$(uname -m)"
|
PLATFORM="$(uname -m)"
|
||||||
fi
|
fi
|
||||||
|
@ -942,6 +952,7 @@ printf "Qt ${QT_VER}... "
|
||||||
|
|
||||||
add_qt_platform_dlls $CONFIGURATION "$(pwd)/plugins/platforms/qwindows${DLLSUFFIX}.dll"
|
add_qt_platform_dlls $CONFIGURATION "$(pwd)/plugins/platforms/qwindows${DLLSUFFIX}.dll"
|
||||||
add_qt_image_dlls $CONFIGURATION "$(pwd)/plugins/imageformats/qsvg${DLLSUFFIX}.dll"
|
add_qt_image_dlls $CONFIGURATION "$(pwd)/plugins/imageformats/qsvg${DLLSUFFIX}.dll"
|
||||||
|
add_qt_icon_dlls $CONFIGURATION "$(pwd)/plugins/iconengines/qsvgicon${DLLSUFFIX}.dll"
|
||||||
done
|
done
|
||||||
echo Done.
|
echo Done.
|
||||||
}
|
}
|
||||||
|
@ -1143,6 +1154,13 @@ fi
|
||||||
cp "$DLL" "${DLL_PREFIX}imageformats"
|
cp "$DLL" "${DLL_PREFIX}imageformats"
|
||||||
done
|
done
|
||||||
echo
|
echo
|
||||||
|
echo "- Qt Icon Engine DLLs..."
|
||||||
|
mkdir -p ${DLL_PREFIX}iconengines
|
||||||
|
for DLL in ${QT_ICONENGINES[$CONFIGURATION]}; do
|
||||||
|
echo " $(basename $DLL)"
|
||||||
|
cp "$DLL" "${DLL_PREFIX}iconengines"
|
||||||
|
done
|
||||||
|
echo
|
||||||
done
|
done
|
||||||
#fi
|
#fi
|
||||||
|
|
||||||
|
|
|
@ -825,6 +825,18 @@ if (OPENMW_OSX_DEPLOYMENT AND APPLE)
|
||||||
get_filename_component(QT_QMACSTYLE_PLUGIN_NAME "${QT_QMACSTYLE_PLUGIN_PATH}" NAME)
|
get_filename_component(QT_QMACSTYLE_PLUGIN_NAME "${QT_QMACSTYLE_PLUGIN_PATH}" NAME)
|
||||||
configure_file("${QT_QMACSTYLE_PLUGIN_PATH}" "${APP_BUNDLE_DIR}/Contents/PlugIns/${QT_QMACSTYLE_PLUGIN_GROUP}/${QT_QMACSTYLE_PLUGIN_NAME}" COPYONLY)
|
configure_file("${QT_QMACSTYLE_PLUGIN_PATH}" "${APP_BUNDLE_DIR}/Contents/PlugIns/${QT_QMACSTYLE_PLUGIN_GROUP}/${QT_QMACSTYLE_PLUGIN_NAME}" COPYONLY)
|
||||||
|
|
||||||
|
get_property(QT_QSVG_PLUGIN_PATH TARGET Qt${QT_VERSION_MAJOR}::QSvgPlugin PROPERTY LOCATION_RELEASE)
|
||||||
|
get_filename_component(QT_QSVG_PLUGIN_DIR "${QT_QSVG_PLUGIN_PATH}" DIRECTORY)
|
||||||
|
get_filename_component(QT_QSVG_PLUGIN_GROUP "${QT_QSVG_PLUGIN_DIR}" NAME)
|
||||||
|
get_filename_component(QT_QSVG_PLUGIN_NAME "${QT_QSVG_PLUGIN_PATH}" NAME)
|
||||||
|
configure_file("${QT_QSVG_PLUGIN_PATH}" "${APP_BUNDLE_DIR}/Contents/PlugIns/${QT_QSVG_PLUGIN_GROUP}/${QT_QSVG_PLUGIN_NAME}" COPYONLY)
|
||||||
|
|
||||||
|
get_property(QT_QSVG_ICON_PLUGIN_PATH TARGET Qt${QT_VERSION_MAJOR}::QSvgIconPlugin PROPERTY LOCATION_RELEASE)
|
||||||
|
get_filename_component(QT_QSVG_ICON_PLUGIN_DIR "${QT_QSVG_ICON_PLUGIN_PATH}" DIRECTORY)
|
||||||
|
get_filename_component(QT_QSVG_ICON_PLUGIN_GROUP "${QT_QSVG_ICON_PLUGIN_DIR}" NAME)
|
||||||
|
get_filename_component(QT_QSVG_ICON_PLUGIN_NAME "${QT_QSVG_ICON_PLUGIN_PATH}" NAME)
|
||||||
|
configure_file("${QT_QSVG_ICON_PLUGIN_PATH}" "${APP_BUNDLE_DIR}/Contents/PlugIns/${QT_QSVG_ICON_PLUGIN_GROUP}/${QT_QSVG_ICON_PLUGIN_NAME}" COPYONLY)
|
||||||
|
|
||||||
configure_file("${OpenMW_SOURCE_DIR}/files/mac/qt.conf" "${APP_BUNDLE_DIR}/Contents/Resources/qt.conf" COPYONLY)
|
configure_file("${OpenMW_SOURCE_DIR}/files/mac/qt.conf" "${APP_BUNDLE_DIR}/Contents/Resources/qt.conf" COPYONLY)
|
||||||
|
|
||||||
if (BUILD_OPENCS)
|
if (BUILD_OPENCS)
|
||||||
|
@ -832,13 +844,9 @@ if (OPENMW_OSX_DEPLOYMENT AND APPLE)
|
||||||
set(OPENCS_BUNDLE_NAME "${OPENCS_BUNDLE_NAME_TMP}.app")
|
set(OPENCS_BUNDLE_NAME "${OPENCS_BUNDLE_NAME_TMP}.app")
|
||||||
configure_file("${QT_COCOA_PLUGIN_PATH}" "${OPENCS_BUNDLE_NAME}/Contents/PlugIns/${QT_COCOA_PLUGIN_GROUP}/${QT_COCOA_PLUGIN_NAME}" COPYONLY)
|
configure_file("${QT_COCOA_PLUGIN_PATH}" "${OPENCS_BUNDLE_NAME}/Contents/PlugIns/${QT_COCOA_PLUGIN_GROUP}/${QT_COCOA_PLUGIN_NAME}" COPYONLY)
|
||||||
configure_file("${QT_QMACSTYLE_PLUGIN_PATH}" "${OPENCS_BUNDLE_NAME}/Contents/PlugIns/${QT_QMACSTYLE_PLUGIN_GROUP}/${QT_QMACSTYLE_PLUGIN_NAME}" COPYONLY)
|
configure_file("${QT_QMACSTYLE_PLUGIN_PATH}" "${OPENCS_BUNDLE_NAME}/Contents/PlugIns/${QT_QMACSTYLE_PLUGIN_GROUP}/${QT_QMACSTYLE_PLUGIN_NAME}" COPYONLY)
|
||||||
configure_file("${OpenMW_SOURCE_DIR}/files/mac/qt.conf" "${OPENCS_BUNDLE_NAME}/Contents/Resources/qt.conf" COPYONLY)
|
|
||||||
|
|
||||||
get_property(QT_QSVG_PLUGIN_PATH TARGET Qt${QT_VERSION_MAJOR}::QSvgPlugin PROPERTY LOCATION_RELEASE)
|
|
||||||
get_filename_component(QT_QSVG_PLUGIN_DIR "${QT_QSVG_PLUGIN_PATH}" DIRECTORY)
|
|
||||||
get_filename_component(QT_QSVG_PLUGIN_GROUP "${QT_QSVG_PLUGIN_DIR}" NAME)
|
|
||||||
get_filename_component(QT_QSVG_PLUGIN_NAME "${QT_QSVG_PLUGIN_PATH}" NAME)
|
|
||||||
configure_file("${QT_QSVG_PLUGIN_PATH}" "${OPENCS_BUNDLE_NAME}/Contents/PlugIns/${QT_QSVG_PLUGIN_GROUP}/${QT_QSVG_PLUGIN_NAME}" COPYONLY)
|
configure_file("${QT_QSVG_PLUGIN_PATH}" "${OPENCS_BUNDLE_NAME}/Contents/PlugIns/${QT_QSVG_PLUGIN_GROUP}/${QT_QSVG_PLUGIN_NAME}" COPYONLY)
|
||||||
|
configure_file("${QT_QSVG_ICON_PLUGIN_PATH}" "${OPENCS_BUNDLE_NAME}/Contents/PlugIns/${QT_QSVG_ICON_PLUGIN_GROUP}/${QT_QSVG_ICON_PLUGIN_NAME}" COPYONLY)
|
||||||
|
configure_file("${OpenMW_SOURCE_DIR}/files/mac/qt.conf" "${OPENCS_BUNDLE_NAME}/Contents/Resources/qt.conf" COPYONLY)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
install(DIRECTORY "${APP_BUNDLE_DIR}" USE_SOURCE_PERMISSIONS DESTINATION "." COMPONENT Runtime)
|
install(DIRECTORY "${APP_BUNDLE_DIR}" USE_SOURCE_PERMISSIONS DESTINATION "." COMPONENT Runtime)
|
||||||
|
|
|
@ -83,7 +83,7 @@ target_link_libraries(openmw-launcher
|
||||||
components_qt
|
components_qt
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(openmw-launcher Qt::Widgets Qt::Core)
|
target_link_libraries(openmw-launcher Qt::Widgets Qt::Core Qt::Svg)
|
||||||
|
|
||||||
if (BUILD_WITH_CODE_COVERAGE)
|
if (BUILD_WITH_CODE_COVERAGE)
|
||||||
target_compile_options(openmw-launcher PRIVATE --coverage)
|
target_compile_options(openmw-launcher PRIVATE --coverage)
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
#include <QScreen>
|
#include <QScreen>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
|
|
||||||
QPushButton* CSVDoc::StartupDialogue::addButton(const QString& label, const QIcon& icon)
|
QPushButton* CSVDoc::StartupDialogue::addButton(const QString& label, const QString& icon)
|
||||||
{
|
{
|
||||||
int column = mColumn--;
|
int column = mColumn--;
|
||||||
|
|
||||||
|
@ -39,13 +39,13 @@ QWidget* CSVDoc::StartupDialogue::createButtons()
|
||||||
mLayout = new QGridLayout(widget);
|
mLayout = new QGridLayout(widget);
|
||||||
|
|
||||||
/// \todo add icons
|
/// \todo add icons
|
||||||
QPushButton* loadDocument = addButton("Edit A Content File", QIcon(":startup/edit-content"));
|
QPushButton* loadDocument = addButton("Edit A Content File", ":startup/edit-content");
|
||||||
connect(loadDocument, &QPushButton::clicked, this, &StartupDialogue::loadDocument);
|
connect(loadDocument, &QPushButton::clicked, this, &StartupDialogue::loadDocument);
|
||||||
|
|
||||||
QPushButton* createAddon = addButton("Create A New Addon", QIcon(":startup/create-addon"));
|
QPushButton* createAddon = addButton("Create A New Addon", ":startup/create-addon");
|
||||||
connect(createAddon, &QPushButton::clicked, this, &StartupDialogue::createAddon);
|
connect(createAddon, &QPushButton::clicked, this, &StartupDialogue::createAddon);
|
||||||
|
|
||||||
QPushButton* createGame = addButton("Create A New Game", QIcon(":startup/create-game"));
|
QPushButton* createGame = addButton("Create A New Game", ":startup/create-game");
|
||||||
connect(createGame, &QPushButton::clicked, this, &StartupDialogue::createGame);
|
connect(createGame, &QPushButton::clicked, this, &StartupDialogue::createGame);
|
||||||
|
|
||||||
for (int i = 0; i < 3; ++i)
|
for (int i = 0; i < 3; ++i)
|
||||||
|
|
|
@ -20,7 +20,7 @@ namespace CSVDoc
|
||||||
int mColumn;
|
int mColumn;
|
||||||
QGridLayout* mLayout;
|
QGridLayout* mLayout;
|
||||||
|
|
||||||
QPushButton* addButton(const QString& label, const QIcon& icon);
|
QPushButton* addButton(const QString& label, const QString& icon);
|
||||||
|
|
||||||
QWidget* createButtons();
|
QWidget* createButtons();
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
class QWidget;
|
class QWidget;
|
||||||
|
|
||||||
CSVRender::InstanceMoveMode::InstanceMoveMode(QWidget* parent)
|
CSVRender::InstanceMoveMode::InstanceMoveMode(QWidget* parent)
|
||||||
: ModeButton(QIcon(QPixmap(":scenetoolbar/transform-move")),
|
: ModeButton(QIcon(":scenetoolbar/transform-move"),
|
||||||
"Move selected instances"
|
"Move selected instances"
|
||||||
"<ul><li>Use {scene-edit-primary} to move instances around freely</li>"
|
"<ul><li>Use {scene-edit-primary} to move instances around freely</li>"
|
||||||
"<li>Use {scene-edit-secondary} to move instances around within the grid</li>"
|
"<li>Use {scene-edit-secondary} to move instances around within the grid</li>"
|
||||||
|
|
|
@ -94,7 +94,7 @@ void CSVWidget::SceneToolMode::showPanel(const QPoint& position)
|
||||||
|
|
||||||
void CSVWidget::SceneToolMode::addButton(const std::string& icon, const std::string& id, const QString& tooltip)
|
void CSVWidget::SceneToolMode::addButton(const std::string& icon, const std::string& id, const QString& tooltip)
|
||||||
{
|
{
|
||||||
ModeButton* button = new ModeButton(QIcon(QPixmap(icon.c_str())), tooltip, mPanel);
|
ModeButton* button = new ModeButton(QIcon(icon.c_str()), tooltip, mPanel);
|
||||||
addButton(button, id);
|
addButton(button, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -60,10 +60,10 @@ CSVWidget::ShapeBrushWindow::ShapeBrushWindow(CSMDoc::Document& document, QWidge
|
||||||
: QFrame(parent, Qt::Popup)
|
: QFrame(parent, Qt::Popup)
|
||||||
, mDocument(document)
|
, mDocument(document)
|
||||||
{
|
{
|
||||||
mButtonPoint = new QPushButton(QIcon(QPixmap(":scenetoolbar/brush-point")), "", this);
|
mButtonPoint = new QPushButton(QIcon(":scenetoolbar/brush-point"), "", this);
|
||||||
mButtonSquare = new QPushButton(QIcon(QPixmap(":scenetoolbar/brush-square")), "", this);
|
mButtonSquare = new QPushButton(QIcon(":scenetoolbar/brush-square"), "", this);
|
||||||
mButtonCircle = new QPushButton(QIcon(QPixmap(":scenetoolbar/brush-circle")), "", this);
|
mButtonCircle = new QPushButton(QIcon(":scenetoolbar/brush-circle"), "", this);
|
||||||
mButtonCustom = new QPushButton(QIcon(QPixmap(":scenetoolbar/brush-custom")), "", this);
|
mButtonCustom = new QPushButton(QIcon(":scenetoolbar/brush-custom"), "", this);
|
||||||
|
|
||||||
mSizeSliders = new ShapeBrushSizeControls("Brush size", this);
|
mSizeSliders = new ShapeBrushSizeControls("Brush size", this);
|
||||||
|
|
||||||
|
@ -201,25 +201,25 @@ void CSVWidget::SceneToolShapeBrush::setButtonIcon(CSVWidget::BrushShape brushSh
|
||||||
{
|
{
|
||||||
case BrushShape_Point:
|
case BrushShape_Point:
|
||||||
|
|
||||||
setIcon(QIcon(QPixmap(":scenetoolbar/brush-point")));
|
setIcon(QIcon(":scenetoolbar/brush-point"));
|
||||||
tooltip += mShapeBrushWindow->toolTipPoint;
|
tooltip += mShapeBrushWindow->toolTipPoint;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BrushShape_Square:
|
case BrushShape_Square:
|
||||||
|
|
||||||
setIcon(QIcon(QPixmap(":scenetoolbar/brush-square")));
|
setIcon(QIcon(":scenetoolbar/brush-square"));
|
||||||
tooltip += mShapeBrushWindow->toolTipSquare;
|
tooltip += mShapeBrushWindow->toolTipSquare;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BrushShape_Circle:
|
case BrushShape_Circle:
|
||||||
|
|
||||||
setIcon(QIcon(QPixmap(":scenetoolbar/brush-circle")));
|
setIcon(QIcon(":scenetoolbar/brush-circle"));
|
||||||
tooltip += mShapeBrushWindow->toolTipCircle;
|
tooltip += mShapeBrushWindow->toolTipCircle;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BrushShape_Custom:
|
case BrushShape_Custom:
|
||||||
|
|
||||||
setIcon(QIcon(QPixmap(":scenetoolbar/brush-custom")));
|
setIcon(QIcon(":scenetoolbar/brush-custom"));
|
||||||
tooltip += mShapeBrushWindow->toolTipCustom;
|
tooltip += mShapeBrushWindow->toolTipCustom;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,10 +90,10 @@ CSVWidget::TextureBrushWindow::TextureBrushWindow(CSMDoc::Document& document, QW
|
||||||
mSelectedBrush = new QLabel(QString::fromStdString(mBrushTextureLabel));
|
mSelectedBrush = new QLabel(QString::fromStdString(mBrushTextureLabel));
|
||||||
}
|
}
|
||||||
|
|
||||||
mButtonPoint = new QPushButton(QIcon(QPixmap(":scenetoolbar/brush-point")), "", this);
|
mButtonPoint = new QPushButton(QIcon(":scenetoolbar/brush-point"), "", this);
|
||||||
mButtonSquare = new QPushButton(QIcon(QPixmap(":scenetoolbar/brush-square")), "", this);
|
mButtonSquare = new QPushButton(QIcon(":scenetoolbar/brush-square"), "", this);
|
||||||
mButtonCircle = new QPushButton(QIcon(QPixmap(":scenetoolbar/brush-circle")), "", this);
|
mButtonCircle = new QPushButton(QIcon(":scenetoolbar/brush-circle"), "", this);
|
||||||
mButtonCustom = new QPushButton(QIcon(QPixmap(":scenetoolbar/brush-custom")), "", this);
|
mButtonCustom = new QPushButton(QIcon(":scenetoolbar/brush-custom"), "", this);
|
||||||
|
|
||||||
mSizeSliders = new BrushSizeControls("Brush size", this);
|
mSizeSliders = new BrushSizeControls("Brush size", this);
|
||||||
|
|
||||||
|
@ -282,25 +282,25 @@ void CSVWidget::SceneToolTextureBrush::setButtonIcon(CSVWidget::BrushShape brush
|
||||||
{
|
{
|
||||||
case BrushShape_Point:
|
case BrushShape_Point:
|
||||||
|
|
||||||
setIcon(QIcon(QPixmap(":scenetoolbar/brush-point")));
|
setIcon(QIcon(":scenetoolbar/brush-point"));
|
||||||
tooltip += mTextureBrushWindow->toolTipPoint;
|
tooltip += mTextureBrushWindow->toolTipPoint;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BrushShape_Square:
|
case BrushShape_Square:
|
||||||
|
|
||||||
setIcon(QIcon(QPixmap(":scenetoolbar/brush-square")));
|
setIcon(QIcon(":scenetoolbar/brush-square"));
|
||||||
tooltip += mTextureBrushWindow->toolTipSquare;
|
tooltip += mTextureBrushWindow->toolTipSquare;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BrushShape_Circle:
|
case BrushShape_Circle:
|
||||||
|
|
||||||
setIcon(QIcon(QPixmap(":scenetoolbar/brush-circle")));
|
setIcon(QIcon(":scenetoolbar/brush-circle"));
|
||||||
tooltip += mTextureBrushWindow->toolTipCircle;
|
tooltip += mTextureBrushWindow->toolTipCircle;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BrushShape_Custom:
|
case BrushShape_Custom:
|
||||||
|
|
||||||
setIcon(QIcon(QPixmap(":scenetoolbar/brush-custom")));
|
setIcon(QIcon(":scenetoolbar/brush-custom"));
|
||||||
tooltip += mTextureBrushWindow->toolTipCustom;
|
tooltip += mTextureBrushWindow->toolTipCustom;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -88,7 +88,7 @@ void CSVWidget::SceneToolToggle2::addButton(
|
||||||
stream << mSingleIcon << id;
|
stream << mSingleIcon << id;
|
||||||
|
|
||||||
PushButton* button = new PushButton(
|
PushButton* button = new PushButton(
|
||||||
QIcon(QPixmap(stream.str().c_str())), PushButton::Type_Toggle, tooltip.isEmpty() ? name : tooltip, mPanel);
|
QIcon(stream.str().c_str()), PushButton::Type_Toggle, tooltip.isEmpty() ? name : tooltip, mPanel);
|
||||||
|
|
||||||
button->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed));
|
button->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed));
|
||||||
button->setIconSize(QSize(mIconSize, mIconSize));
|
button->setIconSize(QSize(mIconSize, mIconSize));
|
||||||
|
|
|
@ -29,7 +29,7 @@ void CSVWorld::DragRecordTable::startDragFromTable(const CSVWorld::DragRecordTab
|
||||||
mime->setIndexAtDragStart(index);
|
mime->setIndexAtDragStart(index);
|
||||||
QDrag* drag = new QDrag(this);
|
QDrag* drag = new QDrag(this);
|
||||||
drag->setMimeData(mime);
|
drag->setMimeData(mime);
|
||||||
drag->setPixmap(QString::fromUtf8(mime->getIcon().c_str()));
|
drag->setPixmap(QIcon(mime->getIcon().c_str()).pixmap(QSize(16, 16)));
|
||||||
drag->exec(Qt::CopyAction);
|
drag->exec(Qt::CopyAction);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ target_link_libraries(openmw-wizard
|
||||||
components_qt
|
components_qt
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(openmw-wizard Qt::Widgets Qt::Core)
|
target_link_libraries(openmw-wizard Qt::Widgets Qt::Core Qt::Svg)
|
||||||
|
|
||||||
if (OPENMW_USE_UNSHIELD)
|
if (OPENMW_USE_UNSHIELD)
|
||||||
target_link_libraries(openmw-wizard ${LIBUNSHIELD_LIBRARIES})
|
target_link_libraries(openmw-wizard ${LIBUNSHIELD_LIBRARIES})
|
||||||
|
|
|
@ -31,7 +31,7 @@ ContentSelectorView::ContentSelector::~ContentSelector() = default;
|
||||||
|
|
||||||
void ContentSelectorView::ContentSelector::buildContentModel(bool showOMWScripts)
|
void ContentSelectorView::ContentSelector::buildContentModel(bool showOMWScripts)
|
||||||
{
|
{
|
||||||
QIcon warningIcon(ui->addonView->style()->standardIcon(QStyle::SP_MessageBoxWarning).pixmap(QSize(16, 15)));
|
QIcon warningIcon(ui->addonView->style()->standardIcon(QStyle::SP_MessageBoxWarning));
|
||||||
mContentModel = new ContentSelectorModel::ContentModel(this, warningIcon, showOMWScripts);
|
mContentModel = new ContentSelectorModel::ContentModel(this, warningIcon, showOMWScripts);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
501
files/opencs/configure.svg
Normal file
|
@ -0,0 +1,501 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
version="1.0"
|
||||||
|
id="Livello_1"
|
||||||
|
width="128"
|
||||||
|
height="128.00018"
|
||||||
|
viewBox="0 0 119.999 120.061"
|
||||||
|
overflow="visible"
|
||||||
|
enable-background="new 0 0 119.999 120.061"
|
||||||
|
xml:space="preserve"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:ns="http://ns.adobe.com/SaveForWeb/1.0/"><defs
|
||||||
|
id="defs127"><linearGradient
|
||||||
|
id="linearGradient3291"><stop
|
||||||
|
style="stop-color:black;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop3293" /><stop
|
||||||
|
style="stop-color:black;stop-opacity:0"
|
||||||
|
offset="1"
|
||||||
|
id="stop3295" /></linearGradient><radialGradient
|
||||||
|
xlink:href="#linearGradient3291"
|
||||||
|
id="radialGradient3336"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,0.197802,0,92.82166)"
|
||||||
|
cx="63.912209"
|
||||||
|
cy="115.70919"
|
||||||
|
fx="33.953373"
|
||||||
|
fy="115.70919"
|
||||||
|
r="63.912209" /><linearGradient
|
||||||
|
xlink:href="#XMLID_11_"
|
||||||
|
id="linearGradient9291"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1250507,0.1245433,0.1244801,1.1244802,-2.8257128,-11.708873)"
|
||||||
|
x1="41.188999"
|
||||||
|
y1="80.101601"
|
||||||
|
x2="27.6451"
|
||||||
|
y2="66.557701" /><linearGradient
|
||||||
|
id="linearGradient6141"><stop
|
||||||
|
style="stop-color:#000000;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop6143" /><stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop6145" /></linearGradient><linearGradient
|
||||||
|
gradientTransform="translate(-3.0255781e-2,3.056501e-4)"
|
||||||
|
id="linearGradient5166"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="77.542931"
|
||||||
|
y1="41.868668"
|
||||||
|
x2="88.108376"
|
||||||
|
y2="31.303225"><stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#323232;stop-opacity:1;"
|
||||||
|
id="stop5168" /><stop
|
||||||
|
offset="0.75739998"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
id="stop5170" /></linearGradient><linearGradient
|
||||||
|
y2="31.303225"
|
||||||
|
x2="88.108376"
|
||||||
|
y1="41.868668"
|
||||||
|
x1="77.542931"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="XMLID_16_"
|
||||||
|
gradientTransform="translate(-3.0255781e-2,3.056501e-4)"><stop
|
||||||
|
id="stop92"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0" /><stop
|
||||||
|
id="stop106"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.01898734;"
|
||||||
|
offset="0.75739998" /></linearGradient><linearGradient
|
||||||
|
xlink:href="#XMLID_18_"
|
||||||
|
id="linearGradient3295"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074656,-0.7074656,0.7071068,0.7071068,-18.749172,36.539651)"
|
||||||
|
x1="-6.165"
|
||||||
|
y1="112.5049"
|
||||||
|
x2="11.0181"
|
||||||
|
y2="112.5049" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient3298"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0002442,-2.5378062e-4,-2.5378062e-4,1.0002442,8.6347844,-24.632129)"
|
||||||
|
x1="38.757801"
|
||||||
|
y1="7.4277"
|
||||||
|
x2="63.923302"
|
||||||
|
y2="7.4277" /><linearGradient
|
||||||
|
xlink:href="#XMLID_16_"
|
||||||
|
id="linearGradient3301"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074656,-0.7074656,0.7071068,0.7071068,-24.896055,39.032512)"
|
||||||
|
x1="76.281174"
|
||||||
|
y1="43.060352"
|
||||||
|
x2="86.611"
|
||||||
|
y2="31.303225" /><linearGradient
|
||||||
|
xlink:href="#XMLID_15_"
|
||||||
|
id="linearGradient3304"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074656,-0.7074656,0.7071068,0.7071068,-24.895791,39.125846)"
|
||||||
|
x1="76.919403"
|
||||||
|
y1="43.1436"
|
||||||
|
x2="100.6411"
|
||||||
|
y2="19.4214" /><linearGradient
|
||||||
|
xlink:href="#XMLID_14_"
|
||||||
|
id="linearGradient3307"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074656,-0.7074656,0.7071068,0.7071068,-18.749172,36.539651)"
|
||||||
|
x1="67.880402"
|
||||||
|
y1="6.4331002"
|
||||||
|
x2="105.3924"
|
||||||
|
y2="43.945599" /><linearGradient
|
||||||
|
xlink:href="#XMLID_13_"
|
||||||
|
id="linearGradient3310"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-0.7074656,0.7074656,-0.7071068,-0.7071068,101.2385,185.78751)"
|
||||||
|
x1="-0.47799999"
|
||||||
|
y1="105.0586"
|
||||||
|
x2="6.3157001"
|
||||||
|
y2="111.8523" /><linearGradient
|
||||||
|
xlink:href="#XMLID_12_"
|
||||||
|
id="linearGradient3313"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-0.7074656,0.7074656,-0.7071068,-0.7071068,107.38512,183.20132)"
|
||||||
|
x1="1.3501"
|
||||||
|
y1="103.2324"
|
||||||
|
x2="8.1437998"
|
||||||
|
y2="110.0261" /><linearGradient
|
||||||
|
id="XMLID_10_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="61.9692"
|
||||||
|
y1="88.430702"
|
||||||
|
x2="40.815899"
|
||||||
|
y2="88.430702"
|
||||||
|
gradientTransform="matrix(0.7074589,0.7071,-0.7074589,0.7071,68.76314,-21.373694)"><stop
|
||||||
|
offset="0.0533"
|
||||||
|
style="stop-color:#555555"
|
||||||
|
id="stop10" /><stop
|
||||||
|
offset="0.21113414"
|
||||||
|
style="stop-color:#BBBBBB"
|
||||||
|
id="stop12" /><stop
|
||||||
|
offset="0.36265489"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
id="stop14" /><stop
|
||||||
|
offset="0.60322773"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
id="stop16" /><stop
|
||||||
|
offset="0.84976584"
|
||||||
|
style="stop-color:#e9e9e9;stop-opacity:1;"
|
||||||
|
id="stop18" /><stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#555555"
|
||||||
|
id="stop20" /></linearGradient><linearGradient
|
||||||
|
xlink:href="#XMLID_10_"
|
||||||
|
id="linearGradient10168"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.5628683,-3.9649986e-4,-3.9652886e-4,1.562754,-20.23462,-103.35726)"
|
||||||
|
x1="61.9692"
|
||||||
|
y1="88.430702"
|
||||||
|
x2="40.815899"
|
||||||
|
y2="88.430702" /><linearGradient
|
||||||
|
xlink:href="#XMLID_10_"
|
||||||
|
id="linearGradient10170"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0663866,2.7056218e-4,-2.7056218e-4,-1.0663866,9.2387294,154.26114)"
|
||||||
|
x1="61.9692"
|
||||||
|
y1="88.430702"
|
||||||
|
x2="40.815899"
|
||||||
|
y2="88.430702" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient10203"
|
||||||
|
x1="56.03125"
|
||||||
|
y1="121.5"
|
||||||
|
x2="72.031251"
|
||||||
|
y2="121.5"
|
||||||
|
gradientUnits="userSpaceOnUse" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient10205"
|
||||||
|
x1="56.03125"
|
||||||
|
y1="110.5"
|
||||||
|
x2="72.031251"
|
||||||
|
y2="110.5"
|
||||||
|
gradientUnits="userSpaceOnUse" /><linearGradient
|
||||||
|
xlink:href="#XMLID_10_"
|
||||||
|
id="linearGradient10219"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0663866,2.7056218e-4,-2.7056218e-4,-1.0663866,9.2387294,154.26114)"
|
||||||
|
x1="61.9692"
|
||||||
|
y1="88.430702"
|
||||||
|
x2="40.815899"
|
||||||
|
y2="88.430702" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient10221"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="56.03125"
|
||||||
|
y1="110.5"
|
||||||
|
x2="72.031251"
|
||||||
|
y2="110.5" /><linearGradient
|
||||||
|
xlink:href="#XMLID_14_"
|
||||||
|
id="linearGradient10223"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074656,-0.7074656,0.7071068,0.7071068,-18.749172,36.539651)"
|
||||||
|
x1="67.880402"
|
||||||
|
y1="6.4331002"
|
||||||
|
x2="105.3924"
|
||||||
|
y2="43.945599" /><linearGradient
|
||||||
|
xlink:href="#XMLID_15_"
|
||||||
|
id="linearGradient10225"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074656,-0.7074656,0.7071068,0.7071068,-24.895791,39.125846)"
|
||||||
|
x1="76.919403"
|
||||||
|
y1="43.1436"
|
||||||
|
x2="100.6411"
|
||||||
|
y2="19.4214" /><linearGradient
|
||||||
|
xlink:href="#XMLID_16_"
|
||||||
|
id="linearGradient10227"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074656,-0.7074656,0.7071068,0.7071068,-24.895791,39.125846)"
|
||||||
|
x1="76.281174"
|
||||||
|
y1="43.060352"
|
||||||
|
x2="86.611"
|
||||||
|
y2="31.303225" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient10229"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0002442,-2.5378062e-4,-2.5378062e-4,1.0002442,8.6347844,-24.632129)"
|
||||||
|
x1="38.757801"
|
||||||
|
y1="7.4277"
|
||||||
|
x2="63.923302"
|
||||||
|
y2="7.4277" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient10231"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="56.03125"
|
||||||
|
y1="121.5"
|
||||||
|
x2="72.031251"
|
||||||
|
y2="121.5" /><linearGradient
|
||||||
|
xlink:href="#XMLID_18_"
|
||||||
|
id="linearGradient10233"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074656,-0.7074656,0.7071068,0.7071068,-18.749172,36.539651)"
|
||||||
|
x1="-6.165"
|
||||||
|
y1="112.5049"
|
||||||
|
x2="11.0181"
|
||||||
|
y2="112.5049" /><linearGradient
|
||||||
|
xlink:href="#XMLID_18_"
|
||||||
|
id="linearGradient10236"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0005075,0,0,1.0000001,6.1427973,2.5178157)"
|
||||||
|
x1="-6.165"
|
||||||
|
y1="112.5049"
|
||||||
|
x2="11.0181"
|
||||||
|
y2="112.5049" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient10239"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="56.03125"
|
||||||
|
y1="121.5"
|
||||||
|
x2="72.031251"
|
||||||
|
y2="121.5"
|
||||||
|
gradientTransform="matrix(0.6632486,0.6632486,-0.6632486,0.6632486,45.21604,-10.083813)" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient10242"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074589,0.7071,-0.7074589,0.7071,68.761161,-21.373784)"
|
||||||
|
x1="38.757801"
|
||||||
|
y1="7.4277"
|
||||||
|
x2="63.923302"
|
||||||
|
y2="7.4277" /><linearGradient
|
||||||
|
xlink:href="#XMLID_16_"
|
||||||
|
id="linearGradient10245"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0005075,0,0,1.0000001,-3.223487e-2,2.1565487e-4)"
|
||||||
|
x1="76.281174"
|
||||||
|
y1="43.060352"
|
||||||
|
x2="86.611"
|
||||||
|
y2="31.303225" /><linearGradient
|
||||||
|
xlink:href="#XMLID_15_"
|
||||||
|
id="linearGradient10248"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0005075,0,0,1.0000001,-3.223487e-2,2.1565487e-4)"
|
||||||
|
x1="76.919403"
|
||||||
|
y1="43.1436"
|
||||||
|
x2="100.6411"
|
||||||
|
y2="19.4214" /><linearGradient
|
||||||
|
xlink:href="#XMLID_14_"
|
||||||
|
id="linearGradient10251"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0005075,0,0,1.0000001,6.1427973,2.5178157)"
|
||||||
|
x1="67.880402"
|
||||||
|
y1="6.4331002"
|
||||||
|
x2="105.3924"
|
||||||
|
y2="43.945599" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient10254"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="56.03125"
|
||||||
|
y1="110.5"
|
||||||
|
x2="72.031251"
|
||||||
|
y2="110.5"
|
||||||
|
gradientTransform="matrix(0.6632486,0.6632486,-0.6632486,0.6632486,45.21604,-10.083813)" /><linearGradient
|
||||||
|
xlink:href="#XMLID_10_"
|
||||||
|
id="linearGradient10257"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7071,0.7074589,0.7071,-0.7074589,-50.969871,98.357246)"
|
||||||
|
x1="61.9692"
|
||||||
|
y1="88.430702"
|
||||||
|
x2="40.815899"
|
||||||
|
y2="88.430702" /><linearGradient
|
||||||
|
xlink:href="#XMLID_17_"
|
||||||
|
id="linearGradient10260"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.7074589,0.7071,-0.7074589,0.7071,68.761161,-21.373784)"
|
||||||
|
x1="51.339096"
|
||||||
|
y1="30.159527"
|
||||||
|
x2="51.326984"
|
||||||
|
y2="-17.582758" /><linearGradient
|
||||||
|
xlink:href="#linearGradient6141"
|
||||||
|
id="linearGradient6147"
|
||||||
|
x1="7.2493796"
|
||||||
|
y1="120.2508"
|
||||||
|
x2="57.625931"
|
||||||
|
y2="69.874252"
|
||||||
|
gradientUnits="userSpaceOnUse" /></defs><metadata
|
||||||
|
id="metadata3"><ns:sfw><ns:slices /><ns:sliceSourceBounds
|
||||||
|
y="3.97"
|
||||||
|
x="4"
|
||||||
|
height="120.061"
|
||||||
|
width="119.999"
|
||||||
|
bottomLeftOrigin="true" /></ns:sfw><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><linearGradient
|
||||||
|
id="XMLID_11_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="41.188999"
|
||||||
|
y1="80.101601"
|
||||||
|
x2="27.6451"
|
||||||
|
y2="66.557701"
|
||||||
|
gradientTransform="translate(8.7075442,3.5814057)"><stop
|
||||||
|
offset="0.40830001"
|
||||||
|
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||||
|
id="stop25" /><stop
|
||||||
|
offset="0.50628459"
|
||||||
|
style="stop-color:#C3C3C3"
|
||||||
|
id="stop27" /><stop
|
||||||
|
offset="0.56008232"
|
||||||
|
style="stop-color:#8b8b8b;stop-opacity:1;"
|
||||||
|
id="stop29" /><stop
|
||||||
|
id="stop12212"
|
||||||
|
style="stop-color:#393939;stop-opacity:1;"
|
||||||
|
offset="0.67944592" /></linearGradient><linearGradient
|
||||||
|
id="XMLID_12_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="1.3501"
|
||||||
|
y1="103.2324"
|
||||||
|
x2="8.1437998"
|
||||||
|
y2="110.0261"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,18.150444,221.94371)"><stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EEEEEE"
|
||||||
|
id="stop36" /><stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#BBBBBB"
|
||||||
|
id="stop38" /></linearGradient><linearGradient
|
||||||
|
id="XMLID_13_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="-0.47799999"
|
||||||
|
y1="105.0586"
|
||||||
|
x2="6.3157001"
|
||||||
|
y2="111.8523"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,11.978544,219.42611)"><stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#BBBBBB"
|
||||||
|
id="stop43" /><stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#555555"
|
||||||
|
id="stop45" /></linearGradient><linearGradient
|
||||||
|
id="XMLID_14_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="67.880402"
|
||||||
|
y1="6.4331002"
|
||||||
|
x2="105.3924"
|
||||||
|
y2="43.945599"
|
||||||
|
gradientTransform="translate(6.1416442,2.5179057)"><stop
|
||||||
|
offset="0.0947"
|
||||||
|
style="stop-color:#666666;stop-opacity:1;"
|
||||||
|
id="stop50" /><stop
|
||||||
|
id="stop3330"
|
||||||
|
style="stop-color:#b7b7b7;stop-opacity:1;"
|
||||||
|
offset="0.40963161" /><stop
|
||||||
|
offset="0.50530702"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
id="stop56" /><stop
|
||||||
|
id="stop3328"
|
||||||
|
style="stop-color:#a3a3a3;stop-opacity:1;"
|
||||||
|
offset="0.63043118" /><stop
|
||||||
|
offset="0.93489999"
|
||||||
|
style="stop-color:#646464;stop-opacity:1;"
|
||||||
|
id="stop62" /></linearGradient><linearGradient
|
||||||
|
id="XMLID_15_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="76.919403"
|
||||||
|
y1="43.1436"
|
||||||
|
x2="100.6411"
|
||||||
|
y2="19.4214"
|
||||||
|
gradientTransform="translate(-3.0255781e-2,3.056501e-4)"><stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#aeaeae;stop-opacity:1;"
|
||||||
|
id="stop67" /><stop
|
||||||
|
offset="0.0602"
|
||||||
|
style="stop-color:#b2b2b2;stop-opacity:1;"
|
||||||
|
id="stop69" /><stop
|
||||||
|
offset="0.18103883"
|
||||||
|
style="stop-color:#d9d9d9;stop-opacity:1;"
|
||||||
|
id="stop71" /><stop
|
||||||
|
offset="0.3195"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
id="stop73" /><stop
|
||||||
|
offset="0.43529999"
|
||||||
|
style="stop-color:#f4f4f4;stop-opacity:1;"
|
||||||
|
id="stop75" /><stop
|
||||||
|
offset="0.6028"
|
||||||
|
style="stop-color:#D4D4D4"
|
||||||
|
id="stop77" /><stop
|
||||||
|
offset="0.7633"
|
||||||
|
style="stop-color:#BBBBBB"
|
||||||
|
id="stop79" /><stop
|
||||||
|
offset="0.80790001"
|
||||||
|
style="stop-color:#b9bcc1;stop-opacity:1;"
|
||||||
|
id="stop81" /><stop
|
||||||
|
offset="0.92970002"
|
||||||
|
style="stop-color:#bdc0c3;stop-opacity:1;"
|
||||||
|
id="stop83" /><stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#b5b9bb;stop-opacity:1;"
|
||||||
|
id="stop85" /></linearGradient><linearGradient
|
||||||
|
id="XMLID_17_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="38.757801"
|
||||||
|
y1="7.4277"
|
||||||
|
x2="63.923302"
|
||||||
|
y2="7.4277"
|
||||||
|
gradientTransform="matrix(0.7071,0.7071,-0.7071,0.7071,68.728244,-21.373694)"><stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#3a3a3a;stop-opacity:1;"
|
||||||
|
id="stop111" /><stop
|
||||||
|
offset="0.60194176"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
id="stop113" /><stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#888888"
|
||||||
|
id="stop115" /></linearGradient><linearGradient
|
||||||
|
id="XMLID_18_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="-6.165"
|
||||||
|
y1="112.5049"
|
||||||
|
x2="11.0181"
|
||||||
|
y2="112.5049"
|
||||||
|
gradientTransform="translate(6.1416442,2.5179057)"><stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#BBBBBB"
|
||||||
|
id="stop120" /><stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000"
|
||||||
|
id="stop122" /></linearGradient><path
|
||||||
|
style="fill:url(#linearGradient10257)"
|
||||||
|
d="M 76.409451,31.804481 C 75.443086,30.924606 74.357677,30.748097 72.740857,32.364097 L 2.6023174,103.87059 C 2.5703077,103.90258 2.569153,103.93922 2.5401379,103.97422 C -0.95363288,107.73022 -0.88972357,113.60492 2.7681296,117.25992 C 6.4259848,120.91592 12.29792,120.98291 16.053828,117.48791 C 16.088848,117.45991 16.126446,117.45673 16.157461,117.42573 L 87.72613,47.307917 C 90.960771,44.076918 86.953486,42.972159 84.679332,40.696158 L 79.373343,35.390169 C 78.234266,34.251669 77.375816,32.684356 76.409451,31.804481 z M 16.053828,104.01567 C 18.984982,106.94689 18.986335,111.69819 16.053828,114.62765 C 13.124457,117.55553 8.3745634,117.55731 5.4418505,114.62765 C 2.5091357,111.69799 2.5109065,106.94669 5.4418505,104.01567 C 8.3727812,101.08623 13.121121,101.086 16.053828,104.01567 z "
|
||||||
|
id="path10166" /><path
|
||||||
|
style="fill:url(#linearGradient10254)"
|
||||||
|
d="M 17.380325,102.68918 C 14.447618,99.759506 9.6992784,99.759734 6.7683477,102.68918 C 6.5428061,102.91472 6.3373933,103.14849 6.1465522,103.39388 C 9.0905761,101.11028 13.348454,101.3131 16.053828,104.01567 C 18.759425,106.72134 18.965866,110.98021 16.675624,113.92295 C 16.920967,113.73233 17.15491,113.52645 17.380325,113.30115 C 20.312833,110.3717 20.31148,105.6204 17.380325,102.68918 z "
|
||||||
|
id="path10186" /><path
|
||||||
|
d="M 118.731,16.620217 L 103.19512,32.150217 C 99.80841,35.534217 93.549236,33.235217 90.160517,29.850217 C 86.776801,26.465216 84.475632,20.211217 87.86035,16.825217 L 103.40023,1.2962158 C 92.523716,-2.8617843 79.067889,3.9452161 74.82974,8.1812158 C 63.636062,19.367217 62.837657,34.722217 74.065352,45.942217 C 85.286043,57.160217 100.64883,56.490217 111.84151,45.303218 C 116.07966,41.066217 122.89111,27.489217 118.731,16.620217 z "
|
||||||
|
id="path64"
|
||||||
|
style="fill:url(#linearGradient10251)" /><path
|
||||||
|
d="M 77.659175,11.009216 C 72.74068,15.925216 70.031306,21.867217 70.031306,27.741217 L 70.030305,27.742217 C 70.031306,33.311217 72.404509,38.626217 76.894787,43.113217 C 81.422083,47.639217 86.7778,50.031218 92.381644,50.031217 L 92.381644,50.031217 C 98.22961,50.031218 104.1346,47.348218 109.01107,42.474217 C 111.8225,39.664217 115.5714,32.245217 115.93458,25.071217 C 111.35626,29.647217 106.02356,34.977217 106.02356,34.977217 C 100.96199,40.037217 92.379643,37.724217 87.331082,32.680217 C 84.259524,29.607217 82.198478,25.228217 82.198477,21.129217 C 82.199478,18.494217 83.050911,15.977216 85.028913,13.997217 C 85.029914,13.996217 90.524701,8.5042158 94.982962,4.049216 C 87.471153,4.3972165 80.050388,8.6212158 77.659175,11.009216 z "
|
||||||
|
id="path87"
|
||||||
|
style="fill:url(#linearGradient10248);fill-opacity:1.0" /><path
|
||||||
|
d="M 85.387095,16.818216 C 81.792271,20.411216 84.661727,27.477217 88.592721,31.406217 C 92.527718,35.337217 99.594302,38.205217 103.19012,34.613217 C 103.19012,34.613217 118.96412,17.234216 118.73,16.620217 L 103.19412,32.150217 C 99.80741,35.534218 93.548235,33.235217 90.159515,29.850217 C 86.775799,26.465216 84.474633,20.211217 87.85935,16.825217 L 103.39923,1.2962158 L 85.387095,16.818216 z "
|
||||||
|
id="path117"
|
||||||
|
style="fill:url(#linearGradient10260)" /><path
|
||||||
|
style="fill:url(#linearGradient10239)"
|
||||||
|
d="M 4.820055,104.72037 C 4.5726725,104.91226 4.3425471,105.11509 4.1153533,105.34217 C 1.1844093,108.27319 1.1826385,113.02448 4.1153533,115.95415 C 7.0480662,118.88381 11.79796,118.88203 14.727331,115.95415 C 14.952993,115.72872 15.158195,115.49477 15.349126,115.24945 C 12.406133,117.53606 8.148893,117.33187 5.4418505,114.62765 C 2.734806,111.92343 2.5308464,107.66392 4.820055,104.72037 z "
|
||||||
|
id="path10190" /><path
|
||||||
|
d="M 2.7691837,116.26123 C 1.0242958,114.51723 0.10383016,112.26923 -0.011225313,109.98622 C -0.15229878,112.60123 0.76716563,115.26323 2.7691816,117.26123 C 6.4270358,120.91723 12.302016,120.99023 16.057925,117.49522 C 16.092943,117.46722 16.134962,117.44623 16.165977,117.41523 L 17.166488,116.41622 C 13.410582,119.90922 6.427038,119.91723 2.7691837,116.26123 z "
|
||||||
|
id="path124"
|
||||||
|
style="fill:url(#linearGradient10236)" /><path
|
||||||
|
style="fill:url(#linearGradient6147);fill-opacity:1.0;fill-rule:nonzero;opacity:0.5"
|
||||||
|
d="M 43.21875 69.5625 L 2.8125 110.75 C 2.7783735 110.78411 2.7809338 110.80644 2.75 110.84375 C -0.97480066 114.84812 -0.93098327 121.10331 2.96875 125 C 6.8684854 128.89776 13.151978 128.97611 17.15625 125.25 C 17.193586 125.22015 17.216934 125.22055 17.25 125.1875 L 57.3125 85.9375 C 53.66929 79.550692 48.861858 73.979783 43.21875 69.5625 z M 11.5 108.5625 C 13.547005 108.56247 15.592932 109.34455 17.15625 110.90625 C 20.281231 114.0313 20.282673 119.09558 17.15625 122.21875 C 14.033171 125.34024 8.9703922 125.34214 5.84375 122.21875 C 2.7171056 119.09537 2.7189937 114.03109 5.84375 110.90625 C 7.406121 109.34467 9.4529953 108.56253 11.5 108.5625 z "
|
||||||
|
id="path2236"
|
||||||
|
transform="matrix(0.9379752,0,0,0.9379752,-3.0914126e-2,0)" /><path
|
||||||
|
d="M 15.537923,96.062539 C 14.713663,96.978699 14.388162,98.22441 14.530816,99.52305 C 14.682682,100.89492 15.361817,102.33182 16.533505,103.50003 C 18.808146,105.77775 22.084895,106.19602 23.991153,104.45332 C 24.002148,104.47231 67.492075,61.01118 77.726913,50.782827 C 77.294045,50.416137 69.737251,42.875414 69.288707,42.347047 C 66.356033,45.277862 15.537923,96.062539 15.537923,96.062539 z "
|
||||||
|
id="path33"
|
||||||
|
style="fill:url(#linearGradient9291);opacity:0.5" /><path
|
||||||
|
style="fill:url(#linearGradient3301)"
|
||||||
|
id="path108"
|
||||||
|
d="M 94.304331,48.937972 C 88.699488,48.937972 83.344772,46.545972 78.817475,42.019972 C 74.327198,37.532972 71.953994,32.217972 71.952993,26.648972 L 71.953994,26.647972 C 71.953994,20.773972 74.663368,14.831973 79.581863,9.9159745 C 80.407282,9.0909731 81.84201,8.0489732 83.661933,7.0219732 C 80.923544,8.3389732 78.759446,9.8199731 77.661889,10.915974 C 72.743394,15.831973 70.034021,21.773972 70.034021,27.647972 L 70.033021,27.648972 C 70.034021,33.217972 72.407224,38.532972 76.897502,43.019972 C 81.424798,47.545972 86.780515,49.937972 92.384357,49.937972 C 96.062223,49.937972 99.7631,48.874972 103.21585,46.874972 C 100.32739,48.224972 97.308855,48.937972 94.304331,48.937972 z " /></svg>
|
After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 505 KiB After Width: | Height: | Size: 505 KiB |
|
@ -89,23 +89,82 @@
|
||||||
x2="76.100182"
|
x2="76.100182"
|
||||||
y2="249"
|
y2="249"
|
||||||
gradientUnits="userSpaceOnUse" />
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="Main-61">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#4d4d4d;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop2082-1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
xlink:href="#Main-6"
|
||||||
|
id="linearGradient2098"
|
||||||
|
x1="52.082603"
|
||||||
|
y1="61.780205"
|
||||||
|
x2="53.181248"
|
||||||
|
y2="61.780205"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(3.7795278,0,0,3.7795278,-189.44141,-219.41797)" />
|
||||||
|
<linearGradient
|
||||||
|
xlink:href="#Main-6"
|
||||||
|
id="linearGradient2096"
|
||||||
|
x1="50.281166"
|
||||||
|
y1="62.838539"
|
||||||
|
x2="52.926998"
|
||||||
|
y2="62.838539"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
xlink:href="#Main-6"
|
||||||
|
id="linearGradient2098-8"
|
||||||
|
x1="52.082603"
|
||||||
|
y1="61.780205"
|
||||||
|
x2="53.181248"
|
||||||
|
y2="61.780205"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
xlink:href="#Main-6"
|
||||||
|
id="linearGradient2096-5"
|
||||||
|
x1="50.286324"
|
||||||
|
y1="62.972603"
|
||||||
|
x2="52.024643"
|
||||||
|
y2="62.967445"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-0.27492098,-0.52917219)" />
|
||||||
|
<linearGradient
|
||||||
|
xlink:href="#Main-6"
|
||||||
|
id="linearGradient2098-4"
|
||||||
|
x1="52.082603"
|
||||||
|
y1="61.780205"
|
||||||
|
x2="53.181248"
|
||||||
|
y2="61.780205"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-1.3228271,-0.79375592)" />
|
||||||
|
<linearGradient
|
||||||
|
xlink:href="#Main-6"
|
||||||
|
id="linearGradient2092"
|
||||||
|
x1="45.243748"
|
||||||
|
y1="62.838539"
|
||||||
|
x2="47.88958"
|
||||||
|
y2="62.838539"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-0.26458362)" />
|
||||||
|
<linearGradient
|
||||||
|
xlink:href="#Main-6"
|
||||||
|
id="linearGradient2094"
|
||||||
|
x1="44.989498"
|
||||||
|
y1="61.780205"
|
||||||
|
x2="46.088139"
|
||||||
|
y2="61.780205"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(0.79373763)" />
|
||||||
</defs>
|
</defs>
|
||||||
<g
|
<g
|
||||||
id="menu-reload"
|
id="menu-reload"
|
||||||
transform="matrix(3.7795278,0,0,3.7795278,-67.999997,-247.99997)"
|
transform="matrix(3.7795278,0,0,3.7795278,-187.99999,-227.99997)"
|
||||||
style="display:inline">
|
style="display:inline">
|
||||||
<rect
|
|
||||||
style="opacity:0;fill:#a51d2d;stroke-width:0.264583px;paint-order:fill markers stroke;stop-color:#000000"
|
|
||||||
id="rect1553"
|
|
||||||
width="4.2333331"
|
|
||||||
height="4.2333331"
|
|
||||||
x="17.991665"
|
|
||||||
y="65.616653"
|
|
||||||
rx="1.9824198e-15" />
|
|
||||||
<path
|
<path
|
||||||
id="circle2129"
|
d="m 52.8211,61.122306 -2.004035,-0.0036 0.217103,-0.201119 c 0.158097,-0.150209 -0.07905,-0.375524 -0.237144,-0.225315 l -0.50101,0.476016 c -0.06587,0.06207 -0.06587,0.163247 0,0.225315 l 0.50101,0.476016 c 0.06533,0.06258 0.171817,0.06258 0.237144,0 0.06587,-0.06207 0.06585,-0.163246 -1.8e-5,-0.225315 L 50.817065,61.383321 H 52.8211 c 0.143894,-0.0027 0.357404,0.162378 0.360144,0.299094 v 0.391921 c 0,0.211563 0.264583,0.211563 0.264583,0 v -0.391921 c -0.0028,-0.311974 -0.296373,-0.566316 -0.624727,-0.563677 z m 0.07432,1.891352 c -0.158096,-0.149435 -0.394425,0.07511 -0.237143,0.225315 l 0.2171,0.261015 h -2.004033 c -0.143895,0.0027 -0.333193,-0.162379 -0.335933,-0.299097 v -0.39192 c -5.38e-4,-0.21105 -0.264046,-0.21105 -0.264584,0 v 0.39192 c 0.0028,0.311975 0.272162,0.56632 0.600517,0.56368 h 2.004035 l -0.217101,0.20112 c -0.06587,0.06207 -0.06587,0.163245 0,0.225314 0.06533,0.06258 0.171816,0.06258 0.237144,0 l 0.501007,-0.476016 c 0.06587,-0.06207 0.06587,-0.163245 0,-0.225314 z"
|
||||||
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient2146);fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;stop-color:#000000;stop-opacity:1"
|
id="path1"
|
||||||
d="m 69.046875,241.90039 a 7.0999998,7.0999998 0 0 0 -3.628906,0.9707 l 3.210937,3.21094 0.800782,-0.80273 -1.892579,-1.89258 A 5.7999999,5.7999999 0 0 1 69,243.19922 5.7999999,5.7999999 0 0 1 74.800781,249 a 5.7999999,5.7999999 0 0 1 -0.697265,2.75586 l 1.144531,0.61719 a 7.0999998,7.0999998 0 0 0 -1.316406,-8.48047 7.0999998,7.0999998 0 0 0 -4.884766,-1.99219 z m -6.294922,3.72656 a 7.0999998,7.0999998 0 0 0 1.316406,8.48047 7.0999998,7.0999998 0 0 0 4.884766,1.99219 7.0999998,7.0999998 0 0 0 3.628906,-0.9707 l -3.210937,-3.21094 -0.800782,0.80273 1.892579,1.89258 A 5.7999999,5.7999999 0 0 1 69,254.80078 5.7999999,5.7999999 0 0 1 63.199219,249 a 5.7999999,5.7999999 0 0 1 0.697265,-2.75586 z"
|
style="display:inline;overflow:hidden;fill:#4d4d4d;fill-opacity:1;stroke-width:0.00381524" />
|
||||||
transform="matrix(0.26458333,0,0,0.26458333,1.8520833,1.8520833)" />
|
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 8.1 KiB |
|
@ -108,11 +108,11 @@
|
||||||
style="display:inline"
|
style="display:inline"
|
||||||
transform="matrix(3.7795278,0,0,3.77117,-148,-187.58427)">
|
transform="matrix(3.7795278,0,0,3.77117,-148,-187.58427)">
|
||||||
<ellipse
|
<ellipse
|
||||||
style="fill:none;stroke:#4d4d4d;stroke-width:0.324753;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#4d4d4d;stroke-width:0.264876;stroke-dasharray:none;stroke-opacity:1"
|
||||||
id="path1"
|
id="path1"
|
||||||
cx="41.274998"
|
cx="41.274998"
|
||||||
cy="51.863022"
|
cy="51.863018"
|
||||||
rx="1.6897067"
|
rx="1.7196451"
|
||||||
ry="1.6938115" />
|
ry="1.7237496" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.1 KiB |
|
@ -116,7 +116,7 @@
|
||||||
gradientTransform="matrix(0.2267857,0,0,0.24804718,6.7279833,5.1097051)" />
|
gradientTransform="matrix(0.2267857,0,0,0.24804718,6.7279833,5.1097051)" />
|
||||||
</defs>
|
</defs>
|
||||||
<g
|
<g
|
||||||
id="script"
|
id="record-edit"
|
||||||
transform="matrix(3.7795278,0,0,3.7795232,-128.00003,-187.99976)"
|
transform="matrix(3.7795278,0,0,3.7795232,-128.00003,-187.99976)"
|
||||||
style="display:inline">
|
style="display:inline">
|
||||||
<path
|
<path
|
||||||
|
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
|
@ -117,27 +117,36 @@
|
||||||
xlink:href="#Main-3"
|
xlink:href="#Main-3"
|
||||||
id="linearGradient2163"
|
id="linearGradient2163"
|
||||||
gradientUnits="userSpaceOnUse"
|
gradientUnits="userSpaceOnUse"
|
||||||
gradientTransform="translate(19.999965,19.999991)"
|
gradientTransform="matrix(0.2267857,0,0,0.24804749,6.7279756,5.1096472)"
|
||||||
x1="122"
|
x1="122"
|
||||||
y1="189"
|
y1="189"
|
||||||
x2="136"
|
x2="136"
|
||||||
y2="189" />
|
y2="189" />
|
||||||
|
<linearGradient
|
||||||
|
xlink:href="#Main-6"
|
||||||
|
id="linearGradient2178"
|
||||||
|
x1="122"
|
||||||
|
y1="189"
|
||||||
|
x2="136"
|
||||||
|
y2="189"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.85714286,0,0,0.93750007,-102.57143,-168.68751)" />
|
||||||
</defs>
|
</defs>
|
||||||
<g
|
<g
|
||||||
id="error-log"
|
id="record-touch"
|
||||||
transform="matrix(3.7795278,0,0,3.7795176,-128.00003,-187.99948)"
|
transform="matrix(3.7795278,0,0,3.7795176,-128.00003,-187.99948)"
|
||||||
style="display:inline">
|
style="display:inline">
|
||||||
<path
|
<path
|
||||||
id="path2008"
|
id="rect2091"
|
||||||
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient2163);fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;stop-color:#000000;stop-opacity:1"
|
style="font-variation-settings:normal;display:inline;vector-effect:none;fill:url(#linearGradient2178);fill-opacity:1;stroke:none;stroke-width:0.89642px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;stop-color:#000000"
|
||||||
d="m 142,201 v 16 h 11.40625 v -1 H 143 v -14 h 12 v 9.18499 h 1 V 201 Z"
|
d="M 2,1 V 16.000002 H 13.999997 V 1 Z M 2.8571402,1.9374994 H 13.142856 V 15.062503 H 2.8571402 Z"
|
||||||
transform="matrix(0.26458333,0,0,0.26458333,-3.4395741,-3.439581)" />
|
transform="matrix(0.26458331,0,0,0.26458402,33.866672,49.74166)" />
|
||||||
<ellipse
|
<ellipse
|
||||||
style="fill:#fdb433;fill-opacity:1;stroke:#000000;stroke-width:0"
|
style="display:inline;fill:#fdb433;fill-opacity:1;stroke:#000000;stroke-width:0"
|
||||||
id="path1"
|
id="path1"
|
||||||
cx="37.184597"
|
cx="37.306255"
|
||||||
cy="53.039677"
|
cy="51.329163"
|
||||||
rx="0.9260416"
|
rx="0.79374993"
|
||||||
ry="0.92604411" />
|
ry="0.79375207" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 7.1 KiB |
|
@ -102,7 +102,7 @@
|
||||||
<file alias="create-addon">raster/startup/big/create-addon.png</file>
|
<file alias="create-addon">raster/startup/big/create-addon.png</file>
|
||||||
<file alias="create-game">raster/startup/big/new-game.png</file>
|
<file alias="create-game">raster/startup/big/new-game.png</file>
|
||||||
<file alias="edit-content">raster/startup/big/edit-content.png</file>
|
<file alias="edit-content">raster/startup/big/edit-content.png</file>
|
||||||
<file alias="configure">raster/startup/small/configure.png</file>
|
<file alias="configure">configure.svg</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="/scenetoolbar">
|
<qresource prefix="/scenetoolbar">
|
||||||
<file alias="night">lighting-moon.svg</file>
|
<file alias="night">lighting-moon.svg</file>
|
||||||
|
|
|
@ -67,14 +67,13 @@
|
||||||
gradientTransform="matrix(0.26458338,0,0,0.26459185,23.018732,7.1420691)" />
|
gradientTransform="matrix(0.26458338,0,0,0.26459185,23.018732,7.1420691)" />
|
||||||
</defs>
|
</defs>
|
||||||
<g
|
<g
|
||||||
id="debug-profile"
|
id="run-log"
|
||||||
transform="matrix(3.7795278,0,0,3.7794065,-207.99997,-207.99282)"
|
transform="matrix(3.7795278,0,0,3.7794065,-207.99997,-207.99282)"
|
||||||
style="display:inline">
|
style="display:inline">
|
||||||
<path
|
<path
|
||||||
style="font-variation-settings:normal;display:inline;vector-effect:none;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;stop-color:#000000"
|
style="font-variation-settings:normal;display:inline;vector-effect:none;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.183633px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;stop-color:#000000"
|
||||||
id="path6526"
|
id="path6526"
|
||||||
d="m 53.055828,51.961969 -2.084719,1.199138 a 0.11547005,0.11547005 30.092328 0 1 -0.173044,-0.100279 l 0.0039,-2.404989 a 0.11547005,0.11547005 150.09233 0 1 0.173366,-0.09972 l 2.080844,1.205851 a 0.11547005,0.11547005 90.092328 0 1 -3.23e-4,0.2 z"
|
d="m 57.904031,57.222619 -1.429163,0.842578 a 0.07915963,0.08113535 0 0 1 -0.118629,-0.07046 l 0.0027,-1.689872 a 0.07915963,0.08113535 0 0 1 0.11885,-0.07007 l 1.426507,0.847294 a 0.07915963,0.08113535 0 0 1 -2.21e-4,0.140531 z" />
|
||||||
transform="matrix(0.97119563,0,0,1.0037896,6.7567971,5.0948873)" />
|
|
||||||
<path
|
<path
|
||||||
id="rect2091"
|
id="rect2091"
|
||||||
style="font-variation-settings:normal;display:inline;vector-effect:none;fill:url(#linearGradient2178);fill-opacity:1;stroke:none;stroke-width:0.264587px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;stop-color:#000000"
|
style="font-variation-settings:normal;display:inline;vector-effect:none;fill:url(#linearGradient2178);fill-opacity:1;stroke:none;stroke-width:0.264587px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;stop-color:#000000"
|
||||||
|
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.3 KiB |
|
@ -120,7 +120,8 @@
|
||||||
x1="17.991667"
|
x1="17.991667"
|
||||||
y1="30.691668"
|
y1="30.691668"
|
||||||
x2="21.960417"
|
x2="21.960417"
|
||||||
y2="30.691668" />
|
y2="30.691668"
|
||||||
|
gradientTransform="matrix(1.5999994,0,0,1,-10.794989,8.2675378e-8)" />
|
||||||
<linearGradient
|
<linearGradient
|
||||||
xlink:href="#Main-3"
|
xlink:href="#Main-3"
|
||||||
id="linearGradient2264"
|
id="linearGradient2264"
|
||||||
|
@ -129,7 +130,7 @@
|
||||||
x2="11.641667"
|
x2="11.641667"
|
||||||
y2="30.691668"
|
y2="30.691668"
|
||||||
gradientUnits="userSpaceOnUse"
|
gradientUnits="userSpaceOnUse"
|
||||||
gradientTransform="matrix(3.7795264,0,0,3.7795263,-27.999988,-107.99997)" />
|
gradientTransform="matrix(1.5,0,0,1.6,6.0324979,-18.415001)" />
|
||||||
</defs>
|
</defs>
|
||||||
<g
|
<g
|
||||||
id="sound"
|
id="sound"
|
||||||
|
@ -145,8 +146,8 @@
|
||||||
rx="1.9824198e-15" />
|
rx="1.9824198e-15" />
|
||||||
<path
|
<path
|
||||||
id="path3127"
|
id="path3127"
|
||||||
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient3131);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
|
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient3131);fill-opacity:1;stroke:none;stroke-width:0.334674px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
|
||||||
d="m 18.520833,28.575001 v 4.233334 h 0.264583 v -4.233334 z m 0.529166,0.529167 v 3.175 h 0.264584 v -3.175 z m 1.058334,0.264583 v 2.645834 h 0.264583 v -2.645834 z m -2.116667,0.529167 v 1.5875 h 0.264583 v -1.5875 z m 1.5875,0 v 1.5875 h 0.264583 v -1.5875 z m 1.058333,0.264583 v 1.058334 h 0.264584 v -1.058334 z m 0.529167,0.264584 v 0.529166 h 0.264583 v -0.529166 z m 0.529167,0 v 0.529166 h 0.264583 v -0.529166 z" />
|
d="m 18.838333,28.575001 v 4.233334 h 0.423332 v -4.233334 z m 0.846662,0.846667 v 2.540001 h 0.423336 v -2.540001 z m 1.693335,0 v 2.540001 h 0.423334 v -2.540001 z m -3.386665,0.423334 v 1.693333 h 0.423333 v -1.693333 z m 2.539997,0 v 1.693333 h 0.423335 v -1.693333 z m 1.693334,0 v 1.693333 h 0.423336 v -1.693333 z" />
|
||||||
<rect
|
<rect
|
||||||
style="display:inline;opacity:0;fill:#a51d2d;stroke-width:0.999998px;paint-order:fill markers stroke;stop-color:#000000"
|
style="display:inline;opacity:0;fill:#a51d2d;stroke-width:0.999998px;paint-order:fill markers stroke;stop-color:#000000"
|
||||||
id="rect1435"
|
id="rect1435"
|
||||||
|
@ -158,8 +159,7 @@
|
||||||
transform="matrix(0.42333331,0,0,0.42333347,16.721665,27.305001)" />
|
transform="matrix(0.42333331,0,0,0.42333347,16.721665,27.305001)" />
|
||||||
<path
|
<path
|
||||||
id="rect1042"
|
id="rect1042"
|
||||||
style="font-variation-settings:normal;display:inline;vector-effect:none;fill:url(#linearGradient2264);fill-opacity:1;stroke:none;stroke-width:0.999998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
|
style="font-variation-settings:normal;display:inline;vector-effect:none;fill:url(#linearGradient2264);fill-opacity:1;stroke:none;stroke-width:0.40989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
|
||||||
d="M 5e-6,0 V 15.999997 H 16 V 0 Z M 1.000003,1.0000022 H 14.999998 V 14.999995 H 1.000003 Z"
|
d="m 17.144998,27.305001 v 6.773334 h 6.35 v -6.773334 z m 0.396874,0.423334 h 5.55625 v 5.926666 h -5.55625 z" />
|
||||||
transform="matrix(0.42333331,0,0,0.42333347,16.721665,27.305001)" />
|
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.1 KiB |