Compare commits
No commits in common. "ce2e6b04dade671e7757e1e675daebddf86ba848" and "9172b61eab320062e06f452ca7c5553e82a645f7" have entirely different histories.
ce2e6b04da
...
9172b61eab
@ -251,7 +251,6 @@ BoxSingleWidget::BoxSingleWidget(BoxScroller * const parent) :
|
||||
|
||||
mBlendModeCombo = createCombo(this);
|
||||
mMainLayout->addWidget(mBlendModeCombo);
|
||||
mBlendModeCombo->setObjectName("blendModeCombo");
|
||||
|
||||
for(int modeId = int(SkBlendMode::kSrcOver);
|
||||
modeId <= int(SkBlendMode::kLastMode); modeId++) {
|
||||
|
@ -38,6 +38,7 @@ BrushLabel::BrushLabel(BrushesContext* const ctxt) : TriggerLabel(nullptr) {
|
||||
});
|
||||
setStyleSheet("QWidget {"
|
||||
"background: white;"
|
||||
"border: 1px solid black;"
|
||||
"}");
|
||||
setFixedSize(48, 48);
|
||||
}
|
||||
|
@ -69,6 +69,7 @@ RenderWidget::RenderWidget(QWidget *parent) : QWidget(parent) {
|
||||
mContLayout->setSpacing(0);
|
||||
mContWidget->setLayout(mContLayout);
|
||||
mScrollArea = new ScrollArea(this);
|
||||
mScrollArea->setStyleSheet("QScrollArea { border-top: 1px solid black; }");
|
||||
mScrollArea->setWidget(mContWidget);
|
||||
mScrollArea->setWidgetResizable(true);
|
||||
mScrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
|
@ -84,7 +84,7 @@ SettingsDialog::SettingsDialog(QWidget * const parent) :
|
||||
} catch(const std::exception& e) {
|
||||
gPrintExceptionCritical(e);
|
||||
}
|
||||
statusBar->showMessage("Settings Applied, you might have to restart", 1500);
|
||||
statusBar->showMessage("Settings Applied", 1500);
|
||||
});
|
||||
|
||||
updateSettings();
|
||||
|
@ -65,16 +65,16 @@ AnimationDockWidget::AnimationDockWidget(QWidget *parent,
|
||||
keysView, &KeysView::graphResetValueScaleAndMinShownAction);
|
||||
|
||||
const auto valueLines = SwitchButton::sCreate2Switch(
|
||||
"toolbarButtons/horizontalLinesChecked.png",
|
||||
"toolbarButtons/horizontalLinesUnchecked.png",
|
||||
gSingleLineTooltip("Show/Hide Value Lines"),
|
||||
"toolbarButtons/horizontalLinesOn.png",
|
||||
"toolbarButtons/horizontalLinesOff.png",
|
||||
gSingleLineTooltip("Disable Value Lines"),
|
||||
this);
|
||||
connect(valueLines, &SwitchButton::toggled,
|
||||
keysView, &KeysView::graphSetValueLinesDisabled);
|
||||
|
||||
const auto selectedVisible = SwitchButton::sCreate2Switch(
|
||||
"toolbarButtons/onlySelectedVisibleUnchecked.png",
|
||||
"toolbarButtons/onlySelectedVisibleChecked.png",
|
||||
"toolbarButtons/notOnlySelectedVisible.png",
|
||||
"toolbarButtons/onlySelectedVisible.png",
|
||||
gSingleLineTooltip("View Only Selected Objects' Properties"),
|
||||
this);
|
||||
connect(selectedVisible, &SwitchButton::toggled,
|
||||
@ -93,9 +93,9 @@ AnimationDockWidget::AnimationDockWidget(QWidget *parent,
|
||||
addWidget(selectedVisible);
|
||||
|
||||
setStyleSheet("QToolBar {"
|
||||
"border: 1px solid black;"
|
||||
"padding: 10px;"
|
||||
"margin-bottom: -1px;"
|
||||
"border: 3px solid rgb(25, 25, 25);"
|
||||
"margin-bottom: -1px"
|
||||
"}");
|
||||
}
|
||||
|
||||
|
@ -47,7 +47,7 @@ void FrameScrollBar::setCurrentCanvas(Canvas * const canvas) {
|
||||
|
||||
void FrameScrollBar::paintEvent(QPaintEvent *) {
|
||||
QPainter p(this);
|
||||
p.fillRect(rect(), QColor(25, 25, 25));
|
||||
p.fillRect(rect(), QColor(60, 60, 60));
|
||||
|
||||
const int dFrame = mFrameRange.fMax - mFrameRange.fMin + (mRange ? 0 : 1);
|
||||
if(dFrame <= 0) return;
|
||||
@ -62,6 +62,23 @@ void FrameScrollBar::paintEvent(QPaintEvent *) {
|
||||
const int maxFrame = mFrameRange.fMax + f1;
|
||||
const qreal w1 = width() - 1.5*eSizesUI::widget + f1*pixPerFrame - x0;
|
||||
|
||||
QRect canvasMinRect;
|
||||
canvasMinRect.setLeft(qRound(x0));
|
||||
canvasMinRect.setTop(0);
|
||||
const int cRightFrames = mCanvasRange.fMin - minFrame;
|
||||
canvasMinRect.setRight(qRound(x0 + cRightFrames*pixPerFrame));
|
||||
canvasMinRect.setBottom(height());
|
||||
p.fillRect(canvasMinRect, QColor(30, 30, 30));
|
||||
|
||||
QRect canvasMaxRect;
|
||||
const int cLeftFrames = mCanvasRange.fMax - minFrame + (mRange ? 0 : 1);
|
||||
const qreal left = cLeftFrames*pixPerFrame + x0;
|
||||
canvasMaxRect.setLeft(qMax(0, qRound(left)));
|
||||
canvasMaxRect.setTop(0);
|
||||
canvasMaxRect.setWidth(width());
|
||||
canvasMaxRect.setBottom(height());
|
||||
p.fillRect(canvasMaxRect, QColor(30, 30, 30));
|
||||
|
||||
QColor col = mHandleColor;
|
||||
if(mPressed) {
|
||||
col.setHsv(col.hue(), col.saturation(), qMin(255, col.value() + 40));
|
||||
@ -122,6 +139,10 @@ void FrameScrollBar::paintEvent(QPaintEvent *) {
|
||||
QString::number(mFirstViewedFrame));
|
||||
}
|
||||
|
||||
p.setPen(QPen(Qt::black, 1));
|
||||
if(mRange) p.drawLine(0, 0, width(), 0);
|
||||
else p.drawLine(0, height() - 1, width(), height() - 1);
|
||||
|
||||
p.end();
|
||||
}
|
||||
|
||||
|
@ -8,6 +8,8 @@ BookmarkedWidget::BookmarkedWidget(const bool vertical,
|
||||
QWidget(parent), mVertical(vertical), mDimension(dimension) {
|
||||
mUpArrow = new QPushButton(this);
|
||||
mDownArrow = new QPushButton(this);
|
||||
mUpArrow->setObjectName("darkButton");
|
||||
mDownArrow->setObjectName("darkButton");
|
||||
if(mVertical) {
|
||||
setFixedWidth(dimension);
|
||||
mUpArrow->setFixedWidth(dimension);
|
||||
|
@ -46,8 +46,8 @@ void ChangeWidthWidget::paintEvent(QPaintEvent *) {
|
||||
}
|
||||
|
||||
void ChangeWidthWidget::mouseMoveEvent(QMouseEvent *event) {
|
||||
const int newWidth = mCurrentWidth + event->x() - mPressX;
|
||||
mCurrentWidth = clamp(newWidth, 10*eSizesUI::widget, 40*eSizesUI::widget);
|
||||
int newWidth = mCurrentWidth + event->x() - mPressX;
|
||||
mCurrentWidth = clamp(newWidth, 10*eSizesUI::widget, 20*eSizesUI::widget);
|
||||
emit widthSet(mCurrentWidth);
|
||||
//mBoxesList->setFixedWidth(newWidth);
|
||||
updatePos();
|
||||
|
@ -458,7 +458,7 @@ void KeysView::paintEvent(QPaintEvent *) {
|
||||
else p.fillRect(rect(), QColor(60, 60, 60));
|
||||
|
||||
if(mPixelsPerFrame < 0.001) return;
|
||||
if(!mGraphViewed) {
|
||||
if(!mGraphViewed) {
|
||||
int currY = eSizesUI::widget;
|
||||
p.setPen(QPen(QColor(40, 40, 40), 1));
|
||||
while(currY < height()) {
|
||||
@ -515,7 +515,7 @@ void KeysView::paintEvent(QPaintEvent *) {
|
||||
drawKeys(&p, mPixelsPerFrame, viewedFrameRange);
|
||||
p.restore();
|
||||
if(mSelecting) {
|
||||
p.setPen(QPen(Qt::white, 1.5, Qt::DotLine));
|
||||
p.setPen(QPen(Qt::blue, 2, Qt::DotLine));
|
||||
p.setBrush(Qt::NoBrush);
|
||||
p.drawRect(QRectF((mSelectionRect.x() - mMinViewedFrame)*mPixelsPerFrame,
|
||||
mSelectionRect.y() - mViewedTop,
|
||||
|
@ -111,17 +111,10 @@ MainWindow::MainWindow(Document& document,
|
||||
setWindowIcon(QIcon(iconDir + "/enve.png"));
|
||||
const auto downArr = iconDir + "/down-arrow.png";
|
||||
const auto upArr = iconDir + "/up-arrow.png";
|
||||
const auto dockClose = iconDir + "/dockClose.png";
|
||||
const auto dockMaximize = iconDir + "/dockMaximize.png";
|
||||
|
||||
const QString iconSS =
|
||||
"QComboBox::down-arrow { image: url(" + downArr + "); }"
|
||||
"QScrollBar::sub-line { image: url(" + upArr + "); }"
|
||||
"QScrollBar::add-line { image: url(" + downArr + "); }"
|
||||
"QDockWidget {"
|
||||
"titlebar-close-icon: url(" + dockClose + ");"
|
||||
"titlebar-normal-icon: url(" + dockMaximize + ");"
|
||||
"}";
|
||||
"QComboBox::down-arrow { image: url(" + downArr + "); }" +
|
||||
"QScrollBar::sub-line { image: url(" + upArr + "); }" +
|
||||
"QScrollBar::add-line { image: url(" + downArr + "); }";
|
||||
|
||||
QFile customSS(eSettings::sSettingsDir() + "/stylesheet.qss");
|
||||
if(customSS.exists()) {
|
||||
@ -842,6 +835,7 @@ void MainWindow::updateSettingsForCurrentCanvas(Canvas* const scene) {
|
||||
#include <QSpacerItem>
|
||||
void MainWindow::setupStatusBar() {
|
||||
mUsageWidget = new UsageWidget(this);
|
||||
mUsageWidget->setStyleSheet("QStatusBar { border-top: 1px solid black; }");
|
||||
setStatusBar(mUsageWidget);
|
||||
}
|
||||
|
||||
|
@ -57,6 +57,24 @@ class CloseSignalingDockWidget;
|
||||
class PaintColorWidget;
|
||||
//class SoundComposition;
|
||||
|
||||
const QString MENU_STYLESHEET =
|
||||
"QMenu {\
|
||||
background-color: rgb(255, 255, 255);\
|
||||
border: 1px solid black;\
|
||||
}\
|
||||
\
|
||||
QMenu::item {\
|
||||
spacing: 3px;\
|
||||
padding: 2px 25px 2px 25px;\
|
||||
background: transparent;\
|
||||
color: black;\
|
||||
}\
|
||||
\
|
||||
QMenu::item:selected {\
|
||||
background-color: rgb(200, 200, 200);\
|
||||
color: black;\
|
||||
};";
|
||||
|
||||
class MainWindow : public QMainWindow {
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
@ -170,15 +170,23 @@ TimelineWidget::TimelineWidget(Document &document,
|
||||
connect(mGraphAct, &QAction::toggled,
|
||||
this, &TimelineWidget::setGraphEnabled);
|
||||
|
||||
mCornerMenuBar->setStyleSheet("QWidget#menuBarWidget {"
|
||||
"border-right: 1px solid black;"
|
||||
"}");
|
||||
mCornerMenuBar->setContentsMargins(0, 0, 1, 0);
|
||||
|
||||
mSearchLine = new QLineEdit("", mBoxesListMenuBar);
|
||||
mSearchLine->setMinimumHeight(0);
|
||||
mSearchLine->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
|
||||
MainWindow::sGetInstance()->installLineFilter(mSearchLine);
|
||||
mSearchLine->setStyleSheet("border-radius: 0;"
|
||||
"border: 0;");
|
||||
mSearchLine->setPlaceholderText("search");
|
||||
mSearchLine->setStyleSheet("background-color: white;"
|
||||
"color: black;"
|
||||
"border-radius: 0;"
|
||||
"border: 0;"
|
||||
"border-right: 1px solid black;"
|
||||
"border-left: 1px solid black;"
|
||||
"border-bottom: 1px solid black;"
|
||||
"margin: 0;");
|
||||
connect(mSearchLine, &QLineEdit::textChanged,
|
||||
this, &TimelineWidget::setSearchText);
|
||||
mSearchLine->setFocusPolicy(Qt::ClickFocus);
|
||||
|
@ -31,7 +31,7 @@ TipsWidget::TipsWidget(QWidget* const parent) : QWidget(parent) {
|
||||
|
||||
const QString iconsDir = eSettings::sIconsDir();
|
||||
|
||||
const QIcon leftIcon(iconsDir + "/left-arrow.png");
|
||||
const QIcon leftIcon(iconsDir + "/left-arrow-black.png");
|
||||
const auto leftButton = new QPushButton(leftIcon, "");
|
||||
leftButton->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
|
||||
connect(leftButton, &QPushButton::released,
|
||||
@ -42,7 +42,7 @@ TipsWidget::TipsWidget(QWidget* const parent) : QWidget(parent) {
|
||||
mNumber->setAlignment(Qt::AlignCenter);
|
||||
titleLayout->addWidget(mNumber);
|
||||
|
||||
const QIcon rightIcon(iconsDir + "/right-arrow.png");
|
||||
const QIcon rightIcon(iconsDir + "/right-arrow-black.png");
|
||||
const auto rightButton = new QPushButton(rightIcon, "");
|
||||
rightButton->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
|
||||
connect(rightButton, &QPushButton::released,
|
||||
|
@ -70,17 +70,17 @@ void generateButtons(const int minWidgetDim, const int buttonDim) {
|
||||
|
||||
QImage uncheckedBase(buttonSize, QImage::Format_ARGB32);
|
||||
uncheckedBase.fill(Qt::transparent);
|
||||
renderSvg(":/icons/toolbarButtons/uncheckedBg.svg", uncheckedBase);
|
||||
renderSvg(":/icons/toolbarButtons/uncheckedBg", uncheckedBase);
|
||||
|
||||
QImage checkedBase(buttonSize, QImage::Format_ARGB32);
|
||||
checkedBase.fill(Qt::transparent);
|
||||
renderSvg(":/icons/toolbarButtons/checkedBg.svg", checkedBase);
|
||||
renderSvg(":/icons/toolbarButtons/checkedBg", checkedBase);
|
||||
|
||||
const QString dir = eSettings::sSettingsDir() + "/" + mkPath;
|
||||
QDirIterator checkableIt(":/icons/toolbarButtons/checkable");
|
||||
while(checkableIt.hasNext()) {
|
||||
const auto path = checkableIt.next();
|
||||
const auto fileName = checkableIt.fileName().chopped(4);
|
||||
const auto fileName = checkableIt.fileName();
|
||||
const auto pngFileName = fileName + ".png";
|
||||
|
||||
if(fileName.contains("Checked")) {
|
||||
@ -98,45 +98,19 @@ void generateButtons(const int minWidgetDim, const int buttonDim) {
|
||||
QDirIterator plainIt(":/icons/toolbarButtons/plain");
|
||||
while(plainIt.hasNext()) {
|
||||
const auto path = plainIt.next();
|
||||
const auto fileName = plainIt.fileName().chopped(4);;
|
||||
const auto fileName = plainIt.fileName();
|
||||
generate(path, uncheckedBase, dir + "/" + fileName + ".png");
|
||||
}
|
||||
}
|
||||
|
||||
void IconLoader::generateAll(const int minWidgetDim, const int buttonDim) {
|
||||
const QString minDimStr = QString::number(minWidgetDim);
|
||||
const QDir eDir(eSettings::sSettingsDir());
|
||||
QDir iconsDir(eSettings::sSettingsDir() + "/icons");
|
||||
#ifdef QT_DEBUG
|
||||
iconsDir.removeRecursively();
|
||||
#endif
|
||||
const QString mkPath = "icons/" + minDimStr;
|
||||
const QString mkPath = "icons/" + QString::number(minWidgetDim);
|
||||
if(!eDir.mkpath(mkPath)) RuntimeThrow("Failed to mkpath '" + mkPath + "'");
|
||||
QDir iconsSizeDir(eSettings::sIconsDir());
|
||||
|
||||
const int enveIconsVersion = 0;
|
||||
QFile verFile(iconsSizeDir.filePath("ver"));
|
||||
bool removeIcons = false;
|
||||
if(!verFile.exists()) {
|
||||
removeIcons = true;
|
||||
} else {
|
||||
const auto verData = verFile.readAll();
|
||||
const int foundVersion = verData.toInt();
|
||||
if(enveIconsVersion != foundVersion) {
|
||||
removeIcons = true;
|
||||
}
|
||||
}
|
||||
if(removeIcons) {
|
||||
iconsSizeDir.removeRecursively();
|
||||
if(!eDir.mkpath(mkPath)) RuntimeThrow("Failed to mkpath '" + mkPath + "'");
|
||||
}
|
||||
|
||||
if(verFile.open(QIODevice::WriteOnly)) {
|
||||
const auto verIntData = reinterpret_cast<const char*>(&enveIconsVersion);
|
||||
const auto verData = QByteArray::fromRawData(verIntData, sizeof(int));
|
||||
verFile.write(verData);
|
||||
verFile.close();
|
||||
}
|
||||
|
||||
QDirIterator noInterIt(":/icons/noInterpolation");
|
||||
while(noInterIt.hasNext()) {
|
||||
@ -146,15 +120,15 @@ void IconLoader::generateAll(const int minWidgetDim, const int buttonDim) {
|
||||
int targetWidth = qCeil(img.width()*minWidgetDim/22.);
|
||||
if(qAbs(targetWidth - img.width()) % 2 == 1) targetWidth--;
|
||||
const auto scaled = img.scaledToWidth(targetWidth, Qt::TransformationMode::SmoothTransformation);
|
||||
scaled.save(iconsSizeDir.filePath(fileName));
|
||||
scaled.save(iconsDir.filePath(QString::number(minWidgetDim) + "/" + fileName));
|
||||
}
|
||||
|
||||
QDirIterator baseIt(":/icons");
|
||||
while(baseIt.hasNext()) {
|
||||
const auto path = baseIt.next();
|
||||
if(baseIt.fileInfo().isDir()) continue;
|
||||
const auto fileName = baseIt.fileName().chopped(4);
|
||||
const auto pngPath = iconsSizeDir.filePath(fileName + ".png");
|
||||
const auto fileName = baseIt.fileName();
|
||||
const auto pngPath = iconsDir.filePath(QString::number(minWidgetDim) + "/" + fileName + ".png");
|
||||
generate(path, minWidgetDim/22., pngPath);
|
||||
}
|
||||
generateButtons(minWidgetDim, buttonDim);
|
||||
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.0 KiB |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 4.4979169 4.4979168"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="capFlat.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -26,8 +26,8 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="-16.175581"
|
||||
inkscape:cy="2.1077702"
|
||||
inkscape:cx="-0.28272344"
|
||||
inkscape:cy="2.4649131"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
@ -36,8 +36,8 @@
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -73,7 +73,7 @@
|
||||
x="899.5"
|
||||
y="158.25" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.25763988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.25763988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5822"
|
||||
width="11.22234"
|
||||
height="12.832749"
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 4.4979169 4.4979168"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="capRound.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -26,7 +26,7 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="-16.354152"
|
||||
inkscape:cx="-0.28272344"
|
||||
inkscape:cy="2.4649131"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
@ -36,8 +36,8 @@
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -73,7 +73,7 @@
|
||||
x="899.5"
|
||||
y="158.25" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.25763988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.25763988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 901.0094,163.95876 h 12.47178 c 0,0 5.64998,0.59535 5.64998,6.41545 0,5.8201 -5.64998,6.41544 -5.64998,6.41544 H 901.0094 Z"
|
||||
id="rect5844"
|
||||
inkscape:connector-curvature="0"
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 4.4979169 4.4979168"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="capSquare.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -26,7 +26,7 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="-16.354152"
|
||||
inkscape:cx="-0.28272344"
|
||||
inkscape:cy="2.4649131"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
@ -36,8 +36,8 @@
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -78,7 +78,7 @@
|
||||
height="12.830889"
|
||||
width="18.121752"
|
||||
id="rect5834"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.25763988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.25763988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.0 KiB |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 5.2916669 5.2916668"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="childRecording.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -26,8 +26,8 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="-2.267756"
|
||||
inkscape:cy="12.898408"
|
||||
inkscape:cx="8.857244"
|
||||
inkscape:cy="13.148408"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
@ -36,8 +36,8 @@
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -59,7 +59,7 @@
|
||||
id="layer1"
|
||||
transform="translate(-48.702232,-29.95982)">
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path2599"
|
||||
cx="51.348064"
|
||||
cy="32.605652"
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 2.3812501 2.6458334"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="close.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -26,8 +26,8 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.4"
|
||||
inkscape:cx="0.30498671"
|
||||
inkscape:cy="10.108056"
|
||||
inkscape:cx="-1.4660076"
|
||||
inkscape:cy="7.7227616"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
@ -36,8 +36,8 @@
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -61,12 +61,12 @@
|
||||
<g
|
||||
id="g1466"
|
||||
transform="matrix(0.28235426,0,0,0.28235426,-18.638593,165.5932)"
|
||||
style="stroke-width:0.93706161;stroke-miterlimit:4;stroke-dasharray:none;fill:none;stroke:#ffffff;stroke-opacity:1"
|
||||
style="stroke-width:0.93706161;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:export-filename="/home/ailuropoda/Dev/enve/src/app/pixmaps/icons/close.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.93706161;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.93706161;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 240.12067,-468.9038 5.1875,5.1875"
|
||||
id="path1461"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -74,7 +74,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1459"
|
||||
d="m 245.30817,-468.90379 -5.1875,5.1875"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.93706161;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
style="fill:none;stroke:#000000;stroke-width:0.93706161;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.6 KiB |
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="15"
|
||||
height="16"
|
||||
viewBox="0 0 3.9687502 4.2333334"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="dockMaximize.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="44.8"
|
||||
inkscape:cx="4.652176"
|
||||
inkscape:cy="9.6250023"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1497">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-48.702232,-31.018153)">
|
||||
<g
|
||||
id="g1466"
|
||||
transform="matrix(0.39517617,0,0,0.39517617,-45.251383,217.43247)"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.93706161;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:export-filename="/home/ailuropoda/Dev/enve/src/app/pixmaps/icons/close.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.93706161;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 245.30817,-463.7163 -5.1875,10e-6 v -5.18751 l 5.1875,10e-6 z"
|
||||
id="path1461"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 4.4979169 4.4979168"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="joinBevel.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -26,18 +26,18 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.4"
|
||||
inkscape:cx="-9.4124362"
|
||||
inkscape:cy="7.5441902"
|
||||
inkscape:cx="-1.4660076"
|
||||
inkscape:cy="7.7227616"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g5801"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -73,7 +73,7 @@
|
||||
id="rect5797"
|
||||
style="display:inline;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99951541;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.32808173;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.32808173;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 904.77247,168.88608 -3.9641,4.01144 5.60173,5.66687 5.13482,-5.19388 5.1348,5.19388 5.59885,-5.66687 -3.96408,-4.01144 z"
|
||||
id="path5799"
|
||||
inkscape:connector-curvature="0" />
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 4.4979169 4.4979168"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="joinMiter.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -26,18 +26,18 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.4"
|
||||
inkscape:cx="-9.4124362"
|
||||
inkscape:cy="7.5441902"
|
||||
inkscape:cx="-1.4660076"
|
||||
inkscape:cy="7.7227616"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="ink_join_miter"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -73,7 +73,7 @@
|
||||
x="899.5"
|
||||
y="158.25" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34054947;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.34054947;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 911.48074,162.14469 -10.83603,10.96493 5.65352,5.72078 5.18251,-5.24415 5.18251,5.24415 5.65353,-5.72078 z"
|
||||
id="rect2111"
|
||||
inkscape:connector-curvature="0" />
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 4.4979169 4.4979168"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="joinRound.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -25,19 +25,19 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="-5.8869361"
|
||||
inkscape:cy="2.7879313"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="-0.21257552"
|
||||
inkscape:cy="-26.176757"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g5814"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -76,7 +76,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5812"
|
||||
d="m 911.41737,164.65644 c -7.16078,-0.12674 -10.87733,8.36833 -10.87733,8.36833 l 5.67507,5.74258 5.20226,-5.26414 5.20226,5.26414 5.67508,-5.74258 c 0,0 -3.71656,-8.24159 -10.87734,-8.36833 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34493458;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.34493458;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
sodipodi:nodetypes="zcccccz" />
|
||||
</g>
|
||||
</g>
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
64
src/app/icons/left-arrow-black
Normal file
@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="5"
|
||||
height="7"
|
||||
viewBox="0 0 1.3229166 1.8520834"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="left-arrow-black.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="32"
|
||||
inkscape:cx="-8.6391385"
|
||||
inkscape:cy="4.5128602"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-295.1479)">
|
||||
<path
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1.3613854,296.99545 0.00128536,296.05838 1.3613854,295.15243 Z"
|
||||
id="path852"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 309 B After Width: | Height: | Size: 345 B |
Before Width: | Height: | Size: 140 B After Width: | Height: | Size: 179 B |
Before Width: | Height: | Size: 175 B After Width: | Height: | Size: 214 B |
Before Width: | Height: | Size: 272 B After Width: | Height: | Size: 334 B |
Before Width: | Height: | Size: 179 B After Width: | Height: | Size: 192 B |
Before Width: | Height: | Size: 167 B After Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 225 B |
Before Width: | Height: | Size: 140 B After Width: | Height: | Size: 179 B |
Before Width: | Height: | Size: 155 B After Width: | Height: | Size: 193 B |
Before Width: | Height: | Size: 158 B After Width: | Height: | Size: 151 B |
Before Width: | Height: | Size: 170 B After Width: | Height: | Size: 182 B |
Before Width: | Height: | Size: 169 B After Width: | Height: | Size: 184 B |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 5.2916669 5.2916668"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="notRecording.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -26,8 +26,8 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="-2.267756"
|
||||
inkscape:cy="12.898408"
|
||||
inkscape:cx="8.857244"
|
||||
inkscape:cy="13.148408"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
@ -36,8 +36,8 @@
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -59,7 +59,7 @@
|
||||
id="layer1"
|
||||
transform="translate(-48.702232,-29.95982)">
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path2599"
|
||||
cx="51.348064"
|
||||
cy="32.605652"
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
@ -14,7 +14,7 @@
|
||||
viewBox="0 0 5.2916669 5.2916668"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="recording.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
@ -25,9 +25,9 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="-9.0622981"
|
||||
inkscape:cy="6.402742"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="7.7472143"
|
||||
inkscape:cy="28.298054"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
@ -36,8 +36,8 @@
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
@ -49,7 +49,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -59,7 +59,7 @@
|
||||
id="layer1"
|
||||
transform="translate(-48.702232,-29.95982)">
|
||||
<circle
|
||||
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path2599"
|
||||
cx="51.348064"
|
||||
cy="32.605652"
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
64
src/app/icons/right-arrow-black
Normal file
@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="5"
|
||||
height="7"
|
||||
viewBox="0 0 1.3229166 1.8520834"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="right-arrow-black.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="32"
|
||||
inkscape:cx="-11.098943"
|
||||
inkscape:cy="1.4413441"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-295.1479)">
|
||||
<path
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M -0.03671703,296.99545 1.323383,296.05838 -0.03671703,295.15243 Z"
|
||||
id="path852"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
21
src/app/icons/toolbarButtons/checkable/boxTransform.svg → src/app/icons/toolbarButtons/checkable/boxTransform
Normal file → Executable file
@ -1,4 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
@ -12,7 +14,7 @@
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="boxTransform.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
@ -23,19 +25,18 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="9.8999638"
|
||||
inkscape:cy="14.585356"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="28.829119"
|
||||
inkscape:cy="-2.4404302"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
@ -54,8 +55,8 @@
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.337001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 1.286798,291.6722 1.3383045,3.9257 0.7128345,-1.22027 0.9275672,1.33555 1.0622804,-1.06227 -1.3341693,-0.9271 1.2188808,-0.7133 z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="m 1.7184816,292.10388 1.0523723,3.08697 0.5605356,-0.95956 0.7293901,1.05021 0.8353214,-0.83532 -1.0491206,-0.72902 0.9584638,-0.5609 z"
|
||||
id="path1456"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccc" />
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
29
src/app/icons/toolbarButtons/plain/preview.svg → src/app/icons/toolbarButtons/checkable/circleCreate
Normal file → Executable file
@ -1,4 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
@ -12,8 +14,8 @@
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="preview.svg">
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="circleCreate.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
@ -23,19 +25,18 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.4"
|
||||
inkscape:cx="11.688227"
|
||||
inkscape:cy="13.941293"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="16.994446"
|
||||
inkscape:cy="7.1012752"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
@ -53,9 +54,11 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="rect4586-3"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 1.4758986,292.31192 h 0.8205032 v 2.76153 H 1.4758986 Z m 1.3084193,-2e-5 v 2.76159 l 2.3543789,-1.3808 z" />
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
id="path4906"
|
||||
cx="3.3072917"
|
||||
cy="293.69269"
|
||||
r="1.5875" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 1.9 KiB |
@ -1,61 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="circleCreateUnchecked.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="31.678384"
|
||||
inkscape:cx="16.12342"
|
||||
inkscape:cy="12.498663"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="path4906"
|
||||
style="opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.372986;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 3.3072917,291.45459 a 2.2379143,2.2379143 0 0 0 -2.2381062,2.2381 2.2379143,2.2379143 0 0 0 2.2381062,2.23811 2.2379143,2.2379143 0 0 0 2.2381062,-2.23811 2.2379143,2.2379143 0 0 0 -2.2381062,-2.2381 z m -0.027905,0.45578 a 1.7824545,1.7824545 0 0 1 0.027905,0 1.7824545,1.7824545 0 0 1 1.7823201,1.78232 1.7824545,1.7824545 0 0 1 -1.7823201,1.78232 1.7824545,1.7824545 0 0 1 -1.7823201,-1.78232 1.7824545,1.7824545 0 0 1 1.7544151,-1.78232 z" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.3 KiB |
44
src/app/icons/toolbarButtons/checkable/colorize.svg → src/app/icons/toolbarButtons/checkable/colorize
Normal file → Executable file
@ -1,4 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
@ -23,19 +25,18 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="-106.08842"
|
||||
inkscape:cy="44.198727"
|
||||
inkscape:zoom="7.9195959"
|
||||
inkscape:cx="-1.5810603"
|
||||
inkscape:cy="4.88463"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g830"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-height="1031"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
@ -44,7 +45,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -57,23 +58,18 @@
|
||||
id="g830"
|
||||
transform="translate(-0.03838452,-0.02416624)">
|
||||
<circle
|
||||
style="fill:#ff5f5f;fill-rule:evenodd;stroke-width:0.222408;fill-opacity:1"
|
||||
id="path833"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.29092306;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="circle874"
|
||||
cx="3.3456762"
|
||||
cy="292.69403"
|
||||
r="1.4636458" />
|
||||
<circle
|
||||
style="mix-blend-mode:normal;fill:#83ff5f;fill-opacity:1;fill-rule:evenodd;stroke-width:0.222408"
|
||||
id="circle835"
|
||||
cx="4.4723654"
|
||||
cy="294.73969"
|
||||
r="1.4636458" />
|
||||
<circle
|
||||
style="mix-blend-mode:normal;fill:#6a5fff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.222408"
|
||||
id="circle837"
|
||||
cx="2.218987"
|
||||
cy="294.73969"
|
||||
r="1.4636458" />
|
||||
cy="293.71686"
|
||||
r="2.1611428" />
|
||||
<path
|
||||
id="path870"
|
||||
d="m 2.0013836,294.41459 a 1.8445939,1.8445939 0 0 0 1.8445207,-1.84453 1.8445939,1.8445939 0 0 0 -0.2138787,-0.85989 2.0374825,2.0374825 0 0 0 -0.2786755,-0.0219 2.0374825,2.0374825 0 0 0 -2.03745,2.03745 2.0374825,2.0374825 0 0 0 0.088182,0.58756 1.8445939,1.8445939 0 0 0 0.5973011,0.10134 z"
|
||||
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27427647;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-x="0.8519216"
|
||||
inkscape:transform-center-y="-0.66817619" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.8 KiB |
102
src/app/icons/toolbarButtons/checkable/drawPath
Executable file
@ -0,0 +1,102 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="pathDraw.svg">
|
||||
<defs
|
||||
id="defs1462">
|
||||
<inkscape:path-effect
|
||||
effect="powerstroke"
|
||||
id="path-effect949"
|
||||
is_visible="true"
|
||||
offset_points="0,1.0154412"
|
||||
sort_points="true"
|
||||
interpolator_type="CubicBezierJohan"
|
||||
interpolator_beta="0.2"
|
||||
start_linecap_type="zerowidth"
|
||||
linejoin_type="extrp_arc"
|
||||
miter_limit="4"
|
||||
end_linecap_type="zerowidth" />
|
||||
<inkscape:path-effect
|
||||
effect="spiro"
|
||||
id="path-effect861"
|
||||
is_visible="true" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.959798"
|
||||
inkscape:cx="-22.702524"
|
||||
inkscape:cy="-21.55718"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1029"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g963"
|
||||
transform="matrix(1.1938621,0.15407048,-0.15407048,1.1938621,43.755436,-57.345924)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path951"
|
||||
d="m 4.9491257,291.24765 -2.5151503,2.87935 -0.1240232,1.63865 1.5568357,-0.70072 2.1334003,-2.95209 -0.2203961,-0.77023 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path953"
|
||||
d="m 2.4339754,294.127 0.6902341,-0.0622 0.029529,0.46657 0.5964936,-0.0413 0.1165553,0.57494"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path955"
|
||||
d="m 2.4332217,294.92702 0.2234311,0.33574 0.3730626,0.0954 -0.631175,0.31891 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path957"
|
||||
d="m 3.1537386,294.53137 2.6260535,-3.18876"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
@ -1,78 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="drawPathUnchecked.svg">
|
||||
<defs
|
||||
id="defs1462">
|
||||
<inkscape:path-effect
|
||||
effect="powerstroke"
|
||||
id="path-effect949"
|
||||
is_visible="true"
|
||||
offset_points="0,1.0154412"
|
||||
sort_points="true"
|
||||
interpolator_type="CubicBezierJohan"
|
||||
interpolator_beta="0.2"
|
||||
start_linecap_type="zerowidth"
|
||||
linejoin_type="extrp_arc"
|
||||
miter_limit="4"
|
||||
end_linecap_type="zerowidth" />
|
||||
<inkscape:path-effect
|
||||
effect="spiro"
|
||||
id="path-effect861"
|
||||
is_visible="true" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="4.6423559"
|
||||
inkscape:cy="14.986457"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="path862"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
||||
d="m 5.062721,294.2646 a 0.1322915,0.1322915 0 0 0 -0.086603,0.16526 c 0,0 0.074164,0.25835 0.04819,0.49697 -0.012987,0.11931 -0.048707,0.22711 -0.1183742,0.30142 -0.06967,0.0743 -0.1755981,0.12903 -0.3759055,0.1286 -0.2267089,-4.9e-4 -0.3748724,-0.002 -0.4733047,10e-4 -0.049217,0.002 -0.085837,0.003 -0.1224903,0.011 -0.018287,0.004 -0.036937,0.01 -0.060616,0.0227 -0.023751,0.0127 -0.056168,0.0381 -0.071831,0.0782 -0.015664,0.0401 -0.00985,0.0801 -0.00212,0.1038 0.00773,0.0237 0.017883,0.0377 0.02567,0.0497 0.015575,0.024 0.028682,0.0397 0.041934,0.0574 0.026502,0.0355 0.049842,0.0743 0.061769,0.12286 0.00855,0.0348 0.00354,0.0352 -0.010827,0.0495 -0.014337,0.0144 -0.049064,0.0322 -0.093489,0.0358 -0.088981,0.007 -0.1828473,-0.0257 -0.2147283,-0.14196 -0.034051,-0.1242 -0.1196953,-0.21955 -0.2201393,-0.266 -0.1004466,-0.0464 -0.2118153,-0.0506 -0.3146635,-0.0257 -0.2056963,0.0497 -0.399638,0.24304 -0.3728724,0.50426 a 0.1322915,0.1322915 0 0 0 0.1455382,0.11829 0.1322915,0.1322915 0 0 0 0.1182806,-0.14554 c -0.012896,-0.12585 0.067475,-0.19354 0.1712579,-0.21865 0.052021,-0.0121 0.1053033,-0.009 0.1418264,0.008 0.036523,0.0169 0.061266,0.0396 0.076345,0.0946 0.066398,0.24215 0.295901,0.35121 0.4883515,0.33671 0.096234,-0.007 0.1896703,-0.0402 0.2611169,-0.11157 0.071473,-0.0713 0.1095499,-0.18902 0.081886,-0.30161 -0.01325,-0.0539 -0.036872,-0.0797 -0.058346,-0.11772 0.089353,-0.002 0.2037826,-0.002 0.4003312,-0.002 0.2536372,5.2e-4 0.4469014,-0.0806 0.5698651,-0.21175 0.1229639,-0.13119 0.1712945,-0.29886 0.1881814,-0.45401 0.033774,-0.31029 -0.058405,-0.60146 -0.058405,-0.60146 a 0.1322915,0.1322915 0 0 0 -0.1657684,-0.0885 z m 0.2441679,-2.70878 c -0.2333984,-0.2259 -0.5185753,-0.39827 -0.62119,-0.29273 l -0.3868179,0.39783 c 0.2037104,0.1041 0.3820796,0.23361 0.5330056,0.3886 0.1518973,0.15599 0.2773628,0.33598 0.3856842,0.53036 l 0.3996654,-0.41106 c 0.1046713,-0.10765 -0.076949,-0.38709 -0.3103473,-0.613 z m -0.618041,0.63738 c -0.15058,-0.15506 -0.3285919,-0.28201 -0.5385497,-0.37946 l -2.522556,2.5944 -0.376859,0.92553 c 0.042543,-0.0146 0.087639,-0.0257 0.1394006,-0.0198 0.075939,0.009 0.1568211,0.07 0.1866305,0.15575 0.035197,0.10127 0.022254,0.19592 0.011869,0.28033 l 0.9704956,-0.43607 2.5099883,-2.58147 c -0.1063168,-0.20217 -0.2300599,-0.38433 -0.380425,-0.53917 z m -3.2081782,3.60529 c 0.00884,-0.10199 0.028592,-0.21081 -7.476e-4,-0.29521 -0.019996,-0.0576 -0.056905,-0.0826 -0.1010581,-0.0875 -0.044045,-0.004 -0.095588,0.0102 -0.1443296,0.0323 -0.021834,0.01 -0.021335,0.0147 -0.041281,0.0263 l -0.22623084,0.55509 z" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 6.0 KiB |
64
src/app/icons/toolbarButtons/checkable/erase
Executable file
@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="erase.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="-137.66376"
|
||||
inkscape:cy="-17.284785"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1031"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.33072916;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1.0309707,292.97872 2.6930805,3.012 1.8544454,-1.58276 -2.7875742,-3.01202 z"
|
||||
id="path815"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@ -1,79 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="eraseUnchecked.svg">
|
||||
<defs
|
||||
id="defs1462">
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect839"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,0,1,0,0.3895933,0,1 @ F,0,1,1,0,0.3895933,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="0"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="8.652592"
|
||||
inkscape:cy="16.075902"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="rect835"
|
||||
style="fill:#f9f9f9;fill-rule:evenodd;stroke-width:0.168373"
|
||||
d="m 4.5788789,296.22489 1.0248154,-0.86512 a 0.36141651,0.36141651 0 0 0 0.042989,-0.50931 l -0.8085104,-0.95774 -1.577153,1.33139 0.8085202,0.95775 a 0.36141651,0.36141651 0 0 0 0.5092894,0.043 z m -3.69624684,-3.81821 1.57715304,-1.3314 2.2135674,2.62215 -1.5771432,1.3314 z" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.5 KiB |
@ -1,61 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="horizontalLinesOn.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="21.2"
|
||||
inkscape:cx="12.5"
|
||||
inkscape:cy="12.806604"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="rect4580"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 5.4558183,293.38852 v 0.60789 h -2.87965 v -0.60789 z m -3.49628,0 v 0.60789 h -0.80078 v -0.60789 z m 3.49628,-1.63941 v 0.60789 h -2.87965 v -0.60789 z m -3.49628,0 v 0.60789 h -0.80078 v -0.60789 z m 3.49628,3.27927 v 0.60789 h -2.87965 v -0.60789 z m -3.49628,0 v 0.60789 h -0.80078 v -0.60789 z" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
74
src/app/icons/toolbarButtons/checkable/lockAlpha
Executable file
@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="lockAlpha.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.9195959"
|
||||
inkscape:cx="-6.5242054"
|
||||
inkscape:cy="0.10132988"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1031"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g830"
|
||||
transform="translate(-0.03838452,-0.02416624)">
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.29092306;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="circle874"
|
||||
cx="3.3456762"
|
||||
cy="293.71686"
|
||||
r="2.1611428" />
|
||||
<path
|
||||
id="path870"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0,290.3854)"
|
||||
d="m 18.064453,9.8300781 a 7.3948247,7.3948247 0 0 0 -7.394531,7.3945309 7.3948247,7.3948247 0 0 0 0.857422,3.447266 8.1680989,8.1680989 0 0 0 1.117187,0.08789 8.1680989,8.1680989 0 0 0 8.167969,-8.167969 8.1680989,8.1680989 0 0 0 -0.353516,-2.355469 7.3948247,7.3948247 0 0 0 -2.394531,-0.4062489 z"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09955168;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
54
src/app/icons/dockClose.svg → src/app/icons/toolbarButtons/checkable/loop
Executable file → Normal file
@ -9,15 +9,15 @@
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="15"
|
||||
height="16"
|
||||
viewBox="0 0 3.9687502 4.2333334"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1500"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="dockClose.svg">
|
||||
sodipodi:docname="loop.svg">
|
||||
<defs
|
||||
id="defs1494" />
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
@ -25,16 +25,12 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.4"
|
||||
inkscape:cx="-1.4360847"
|
||||
inkscape:cy="7.2509132"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="12.207722"
|
||||
inkscape:cy="-2.0658206"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
@ -42,14 +38,14 @@
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1497">
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -57,24 +53,22 @@
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-48.702232,-31.018153)">
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g1466"
|
||||
transform="matrix(0.41359325,0,0,0.41359325,-49.694896,225.99397)"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.93706161;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:export-filename="/home/ailuropoda/Dev/enve/src/app/pixmaps/icons/close.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.93706161;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 240.12067,-468.9038 5.1875,5.1875"
|
||||
id="path1461"
|
||||
inkscape:connector-curvature="0" />
|
||||
id="g836"
|
||||
transform="translate(0.02088182,0.15272167)">
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="m 2.7198769,295.51998 -1.5646979,-0.77134 1.5646979,-0.77133 v 0.48753 l 1.9988357,0.0138 0.00812,-0.76745 0.6824415,0.002 0.00835,1.28624 -2.6977518,0.0167 z"
|
||||
id="path832"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1459"
|
||||
d="m 245.30817,-468.90379 -5.1875,5.1875"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.93706161;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4671"
|
||||
d="m 3.8529428,291.55996 1.5646979,0.77134 -1.5646979,0.77133 v -0.48753 l -1.9988357,-0.0138 -0.00812,0.76745 -0.6824415,-0.002 -0.00835,-1.28624 2.6977518,-0.0167 z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.8 KiB |
@ -1,64 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="loopUnchecked.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="5.1248394"
|
||||
inkscape:cy="16.82147"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-object-midpoints="true" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="path845"
|
||||
style="fill:#f9f9f9;fill-rule:evenodd;stroke-width:0.254253"
|
||||
inkscape:transform-center-x="0.36641322"
|
||||
inkscape:transform-center-y="-1.8575466e-06"
|
||||
d="m 1.0448303,295.09297 2.1983978,1.26928 v -0.79802 c 0.4713006,-0.0221 0.8899425,-0.0945 1.2658042,-0.29398 0.4726278,-0.25095 0.8174076,-0.6975 1.056244,-1.29709 a 0.4804788,0.4804788 0 0 0 -0.2701441,-0.6252 0.4804788,0.4804788 0 0 0 -0.6232188,0.26865 c -0.1880689,0.47216 -0.3685695,0.67504 -0.6132868,0.80497 -0.1864031,0.099 -0.4497686,0.15763 -0.8153985,0.18026 v -0.77815 z m 4.5546965,-2.80056 -2.1983978,-1.26928 v 0.79802 c -0.4713006,0.0221 -0.8899424,0.0945 -1.2658042,0.29398 -0.4726278,0.25095 -0.8174075,0.6975 -1.0562439,1.29709 a 0.4804788,0.4804788 0 0 0 0.2701441,0.6252 0.4804788,0.4804788 0 0 0 0.6232188,-0.26865 c 0.1880689,-0.47216 0.3685695,-0.67504 0.6132867,-0.80497 0.1864031,-0.099 0.4497687,-0.15763 0.8153985,-0.18026 v 0.77815 z" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.6 KiB |
74
src/app/icons/toolbarButtons/checkable/paint
Executable file
@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="paint.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="16.994446"
|
||||
inkscape:cy="7.1012752"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g5235"
|
||||
transform="matrix(0.30110792,0,0,0.30110792,-52.856908,341.55949)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5215"
|
||||
d="m 185.58104,-159.19609 3.57972,-7.38043 4.15426,1.59099 -6.09881,6.8501 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 178.94485,-151.24969 c 4.65905,-0.60403 1.83874,-4.76781 3.27037,-6.54074 1.14905,-1.32583 2.56327,-2.03293 3.88909,-1.41422 1.32583,0.61872 2.47487,3.71231 0.0884,6.01041 -2.38649,2.2981 -7.24785,1.94455 -7.24785,1.94455 z"
|
||||
id="path5209"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
@ -1,71 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="paintUnchecked.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="2.1670099"
|
||||
inkscape:cy="13.819115"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g849"
|
||||
transform="matrix(0.89216558,0,0,0.89216558,0.35910105,32.129136)"
|
||||
style="fill:#f9f9f9">
|
||||
<path
|
||||
id="rect835"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke-width:1.05784"
|
||||
d="m 20.720703,-0.12695312 c -0.450808,-0.0730989 -1.016546,0.12588358 -1.513672,0.70898437 L 9.9960938,11.394531 c 0.7003312,-0.07229 1.4122972,0.04241 2.0957032,0.361328 0.747898,0.349014 1.385975,1.062567 1.748047,1.982422 L 21.146484,2 C 21.900695,0.87362992 21.47205,-0.00512168 20.720703,-0.12695312 Z M 10.189453,12.464844 c -0.138601,0.006 -0.2774241,0.02777 -0.4140624,0.05859 l 3.1972654,2.335937 c -0.0021,-0.01313 2.58e-4,-0.02795 -0.002,-0.04102 -0.168495,-0.995489 -0.827194,-1.780982 -1.359375,-2.029297 -0.493238,-0.230173 -0.962954,-0.344063 -1.421875,-0.324218 z"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0,290.3854)" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.301108px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
|
||||
d="m 0.90956054,296.00265 c 1.07386236,-0.32125 0.33560126,-1.20181 0.98473426,-1.96947 0.345988,-0.39922 0.7481974,-0.48173 1.1474123,-0.29543 0.3992179,0.1863 0.7688264,0.9874 0.050241,1.67938 -0.718591,0.69198 -2.18238496,0.58552 -2.18238496,0.58552 z"
|
||||
id="path840" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.1 KiB |
82
src/app/icons/toolbarButtons/checkable/paintCrop
Executable file
@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="paintCrop.svg">
|
||||
<defs
|
||||
id="defs1462">
|
||||
<linearGradient
|
||||
id="linearGradient5716">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5718" />
|
||||
<stop
|
||||
style="stop-color:#d9d9d9;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5720" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.919596"
|
||||
inkscape:cx="35.882567"
|
||||
inkscape:cy="-29.575248"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1031"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5291667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 1.398288,291.78369 v 0.20094 3.41612 0.20094 h 0.2009477 3.4161114 0.2009483 v -0.20094 -3.41612 -0.20094 H 5.0153471 1.5992357 Z m 0.4018954,0.4019 h 3.0142162 v 3.01421 H 1.8001834 Z"
|
||||
id="path927" />
|
||||
<path
|
||||
id="path6250"
|
||||
d="m 1.398288,291.78369 v 0.20094 3.41612 0.20094 h 0.2009477 3.4161114 0.2009483 v -0.20094 -3.41612 -0.20094 H 5.0153471 1.5992357 Z m 0.4018954,0.4019 h 3.0142162 v 3.01421 H 1.8001834 Z"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5291667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
156
src/app/icons/toolbarButtons/checkable/paintMove
Executable file
@ -0,0 +1,156 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="paintMove.svg">
|
||||
<defs
|
||||
id="defs1462">
|
||||
<linearGradient
|
||||
id="linearGradient5716">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5718" />
|
||||
<stop
|
||||
style="stop-color:#d9d9d9;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5720" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.919596"
|
||||
inkscape:cx="-6.8060687"
|
||||
inkscape:cy="9.3979517"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1031"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-22.358359,287.72391)"
|
||||
style="display:inline"
|
||||
id="g6307">
|
||||
<path
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 90.50931,20.441699 c -0.41929,0.325312 -0.77948,1.269645 -0.97019,2.367189 0,0 -0.0039,3.113232 -0.0039,3.113232 0,1.522767 1.14906,2.696756 2.03294,2.696756 0,0 11.57887,-0.03173 11.57887,-0.03173 0.97228,-0.06345 1.32582,-1.179214 1.32582,-2.22089 0,0 0,-5.901711 0,-5.901711 -0.77743,-1.213302 -1.68892,-1.241129 -2.78645,-1.145775 -0.12343,-0.584753 -0.34207,-1.62636 -1.13388,-1.954521 l -2.10301,-0.0054 C 98.38816,16.903433 98.06694,16.534672 97.62273,16.5 l -1.24188,0.03172 c -0.5711,0.01209 -0.98618,0.613585 -0.98078,1.001609 h -1.86059 c -0.69909,0.06473 -1.06158,0.807899 -1.08747,1.323185 v 4.718004 c 0,0 -0.01869,-3.132823 -0.01869,-3.132823 0,0 -1.74724,0 -1.92401,0 z"
|
||||
id="path5899"
|
||||
sodipodi:nodetypes="ccscsscccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
d="m 95.10511,17.873477 0.35355,2.766038 0.41984,-2.743941 -0.77339,-0.0221 z"
|
||||
id="path5903"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path5905"
|
||||
d="m 98.02236,17.795495 0.57452,2.729427 0.37565,-2.751524 -0.95017,0.0221 z"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
d="M 101.07132,18.978331 101.35858,21 l 0.57452,-2.110058 -0.86178,0.08839 z"
|
||||
id="path5907"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(-13.757501,10.972612)"
|
||||
id="g5909">
|
||||
<ellipse
|
||||
ry="1.0275146"
|
||||
rx="1.0054175"
|
||||
cy="13.090322"
|
||||
cx="108.99388"
|
||||
id="path5911"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
|
||||
<ellipse
|
||||
ry="1.0275146"
|
||||
rx="1.0054175"
|
||||
cy="13.090322"
|
||||
cx="108.99388"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
id="path5913"
|
||||
transform="translate(0,-0.2872621)" />
|
||||
</g>
|
||||
<g
|
||||
id="g5915"
|
||||
transform="translate(-10.796491,10.972612)">
|
||||
<ellipse
|
||||
ry="1.0275146"
|
||||
rx="1.0054175"
|
||||
cy="13.090322"
|
||||
cx="108.99388"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
id="path5917" />
|
||||
<ellipse
|
||||
ry="1.0275146"
|
||||
rx="1.0054175"
|
||||
cy="13.090322"
|
||||
cx="108.99388"
|
||||
id="path5919"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
transform="translate(0,-0.2872621)" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-7.857579,10.972612)"
|
||||
id="g5921">
|
||||
<ellipse
|
||||
ry="1.0275146"
|
||||
rx="1.0054175"
|
||||
cy="13.090322"
|
||||
cx="108.99388"
|
||||
id="path5923"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
|
||||
<ellipse
|
||||
ry="1.0275146"
|
||||
rx="1.0054175"
|
||||
cy="13.090322"
|
||||
cx="108.99388"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
id="path5925"
|
||||
transform="translate(0,-0.2872621)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
@ -1,107 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="paintMoveUnchecked.svg">
|
||||
<defs
|
||||
id="defs1462">
|
||||
<linearGradient
|
||||
id="linearGradient5716">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5718" />
|
||||
<stop
|
||||
style="stop-color:#d9d9d9;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5720" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="10.418018"
|
||||
inkscape:cy="12.443008"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g899"
|
||||
style="stroke:#f9f9f9"
|
||||
transform="translate(0,-6.8339624e-5)">
|
||||
<path
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f9f9f9;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 1.5888956,293.13244 c -0.1109371,0.0861 -0.2062374,0.33593 -0.2566961,0.62632 0,0 -0.00103,0.82371 -0.00103,0.82371 0,0.4029 0.3040221,0.71352 0.537882,0.71352 0,0 3.063576,-0.008 3.063576,-0.008 0.2572491,-0.0168 0.3507898,-0.312 0.3507898,-0.58761 0,0 0,-1.56149 0,-1.56149 -0.205695,-0.32102 -0.44686,-0.32838 -0.7372482,-0.30316 -0.032658,-0.15471 -0.090506,-0.4303 -0.3000057,-0.51713 l -0.5564214,-10e-4 c -0.016234,-0.12132 -0.1012235,-0.21889 -0.218754,-0.22807 l -0.3285808,0.008 c -0.1511035,0.003 -0.2609267,0.16234 -0.259498,0.26501 H 2.3906281 c -0.1849676,0.0171 -0.2808764,0.21375 -0.2877264,0.35009 v 1.2483 c 0,0 -0.00495,-0.82889 -0.00495,-0.82889 0,0 -0.4622906,0 -0.509061,0 z"
|
||||
id="path5899"
|
||||
sodipodi:nodetypes="ccscsscccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#f9f9f9;stroke-width:0.132292;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;paint-order:stroke markers fill"
|
||||
d="m 3.3350898,294.05174 c 0,0 0.017063,0.28008 0.2800734,0.28008 0.2630098,0 0.2595785,-0.27673 0.2595785,-0.27673"
|
||||
id="path868" />
|
||||
<path
|
||||
style="fill:none;stroke:#f9f9f9;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;paint-order:stroke markers fill"
|
||||
d="m 2.8829092,292.36254 v 0.77413"
|
||||
id="path860"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#f9f9f9;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;paint-order:stroke markers fill"
|
||||
d="m 3.689742,292.3176 v 0.77413"
|
||||
id="path862"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#f9f9f9;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;paint-order:stroke markers fill"
|
||||
d="m 4.5461691,292.83573 v 0.77413"
|
||||
id="path864"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#f9f9f9;stroke-width:0.132292;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;paint-order:stroke markers fill"
|
||||
d="m 2.5654219,294.05174 c 0,0 0.017063,0.28008 0.2800734,0.28008 0.2630098,0 0.2595785,-0.27673 0.2595785,-0.27673"
|
||||
id="path866" />
|
||||
<path
|
||||
style="fill:none;stroke:#f9f9f9;stroke-width:0.132292;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;paint-order:stroke markers fill"
|
||||
d="m 4.1172047,294.05174 c 0,0 0.017063,0.28008 0.2800734,0.28008 0.2630098,0 0.2595785,-0.27673 0.2595785,-0.27673"
|
||||
id="path870" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.0 KiB |
@ -1,82 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="pathCreateUnchecked.svg">
|
||||
<defs
|
||||
id="defs1462">
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect842"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,1,1,0,0.30898962,0,1 @ F,0,0,1,0,0.30898962,0,1 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="0"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="7.9734271"
|
||||
inkscape:cy="11.775494"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-object-midpoints="true" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="path839"
|
||||
style="fill:#f9f9f9;fill-rule:evenodd;stroke-width:0.302202"
|
||||
inkscape:transform-center-x="-0.25990752"
|
||||
inkscape:transform-center-y="0.099285256"
|
||||
d="m 3.623806,295.00565 1.9499049,-1.12924 A 0.20376006,0.20376006 0 0 0 5.573253,293.52339 L 3.7612616,292.4806 a 0.20376006,0.20376006 0 0 0 -0.3054753,0.17691 l 0.00329,2.25334 0.5093269,-0.88502 a 0.21071666,0.21071666 0 0 1 -0.00665,-0.22038 0.21071666,0.21071666 0 0 1 0.2877334,-0.0775 0.21071666,0.21071666 0 0 1 0.077528,0.28774 0.21071666,0.21071666 0 0 1 -0.1941867,0.10554 z m -2.2299167,-3.26599 a 0.45478183,0.45478183 0 0 0 -0.45475257,0.45476 0.45478183,0.45478183 0 0 0 0.45475257,0.45475 0.45478183,0.45478183 0 0 0 0.2046386,-0.0486 c 0.2787114,0.34384 0.4432076,0.72862 0.4630208,1.10381 0.020267,0.38378 -0.105491,0.76219 -0.4263305,1.10123 a 0.45478183,0.45478183 0 0 0 -0.2413289,-0.0693 0.45478183,0.45478183 0 0 0 -0.45475257,0.45475 0.45478183,0.45478183 0 0 0 0.45475257,0.45476 0.45478183,0.45478183 0 0 0 0.4345988,-0.32246 h 1.4944823 c 0.073469,2.9e-4 0.133097,-0.0593 0.1328084,-0.13281 2.91e-4,-0.0735 -0.059339,-0.1331 -0.1328084,-0.13281 H 1.8284881 a 0.45478183,0.45478183 0 0 0 -0.01912,-0.0522 c 0.3874692,-0.39574 0.5403614,-0.84876 0.5157308,-1.31517 -0.024447,-0.46295 -0.2002543,-0.89081 -0.5312338,-1.28003 a 0.45478183,0.45478183 0 0 0 0.034623,-0.0832 h 1.4810465 c 0.073469,2.9e-4 0.133097,-0.0593 0.1328084,-0.13281 2.886e-4,-0.0735 -0.059339,-0.1331 -0.1328084,-0.13281 H 1.8290048 a 0.45478183,0.45478183 0 0 0 -0.4351155,-0.32195 z" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.7 KiB |
86
src/app/icons/toolbarButtons/checkable/pathCreateChecked
Executable file
@ -0,0 +1,86 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="pathCreateChecked.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="2.306946"
|
||||
inkscape:cy="6.7441323"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-56.228018,305.54933)"
|
||||
id="g4844">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 219.39889,-39.846665 c 0,0 -1.57762,-6.093575 2.27522,-9.652342"
|
||||
id="path4846"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 225.86914,-51.873047 c -0.517,0.01593 -1.02558,0.105991 -1.50586,0.234375 -1.92112,0.513537 -3.47266,1.673828 -3.47266,1.673828 -0.54702,0.394216 0.0557,1.211098 0.59376,0.804688 0,0 1.45231,-1.061459 3.13671,-1.511719 0.84221,-0.22513 1.72133,-0.291329 2.4961,-0.04102 0.77476,0.250314 1.4802,0.796926 2.03515,1.957032 0.42496,0.888334 0.38319,2.207624 0.0762,3.626953 -0.30702,1.419329 -0.85661,2.918768 -1.31641,4.177734 -0.2299,0.629483 -0.43814,1.199358 -0.58203,1.683594 -0.69797,1.996477 1.10894,1.737159 2.35156,0.72461 2.7339,-2.116515 3.54528,-4.053063 3.76367,-5.701172 0.21838,-1.648108 -0.42773,-2.704101 -0.42773,-2.704101 -0.27734,-0.606773 0.0734,1.17887 -0.11133,2.573242 -0.18477,1.394372 -1.08636,3.182961 -3.65039,5.167969 -0.52628,0.407429 -0.82497,0.566828 -1.05469,0.679687 0.0203,-0.145151 0.0135,-0.204833 0.0879,-0.455078 0.12986,-0.437002 0.33303,-0.996694 0.5625,-1.625 0.45895,-1.256611 1.02725,-2.791211 1.35547,-4.308594 0.32823,-1.517382 0.43896,-3.035396 -0.15234,-4.271484 -0.64949,-1.357717 -1.59993,-2.144117 -2.62891,-2.476562 -0.51449,-0.166223 -1.03964,-0.224919 -1.55664,-0.208985 z"
|
||||
id="path4848"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccssccsccscssccsssscc" />
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="circle4850"
|
||||
cx="221.625"
|
||||
cy="-49.875"
|
||||
r="2.2097087" />
|
||||
<circle
|
||||
r="2.2097087"
|
||||
cy="-39.75"
|
||||
cx="219.25"
|
||||
id="circle4852"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
86
src/app/icons/toolbarButtons/checkable/pathCreateUnchecked
Executable file
@ -0,0 +1,86 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="pathCreate.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="16.994446"
|
||||
inkscape:cy="7.1012752"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-56.228018,305.54933)"
|
||||
id="g4844">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 219.39889,-39.846665 c 0,0 -1.57762,-6.093575 2.27522,-9.652342"
|
||||
id="path4846"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 225.86914,-51.873047 c -0.517,0.01593 -1.02558,0.105991 -1.50586,0.234375 -1.92112,0.513537 -3.47266,1.673828 -3.47266,1.673828 -0.54702,0.394216 0.0557,1.211098 0.59376,0.804688 0,0 1.45231,-1.061459 3.13671,-1.511719 0.84221,-0.22513 1.72133,-0.291329 2.4961,-0.04102 0.77476,0.250314 1.4802,0.796926 2.03515,1.957032 0.42496,0.888334 0.38319,2.207624 0.0762,3.626953 -0.30702,1.419329 -0.85661,2.918768 -1.31641,4.177734 -0.2299,0.629483 -0.43814,1.199358 -0.58203,1.683594 -0.69797,1.996477 1.10894,1.737159 2.35156,0.72461 2.7339,-2.116515 3.54528,-4.053063 3.76367,-5.701172 0.21838,-1.648108 -0.42773,-2.704101 -0.42773,-2.704101 -0.27734,-0.606773 0.0734,1.17887 -0.11133,2.573242 -0.18477,1.394372 -1.08636,3.182961 -3.65039,5.167969 -0.52628,0.407429 -0.82497,0.566828 -1.05469,0.679687 0.0203,-0.145151 0.0135,-0.204833 0.0879,-0.455078 0.12986,-0.437002 0.33303,-0.996694 0.5625,-1.625 0.45895,-1.256611 1.02725,-2.791211 1.35547,-4.308594 0.32823,-1.517382 0.43896,-3.035396 -0.15234,-4.271484 -0.64949,-1.357717 -1.59993,-2.144117 -2.62891,-2.476562 -0.51449,-0.166223 -1.03964,-0.224919 -1.55664,-0.208985 z"
|
||||
id="path4848"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccssccsccscssccsssscc" />
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="circle4850"
|
||||
cx="221.625"
|
||||
cy="-49.875"
|
||||
r="2.2097087" />
|
||||
<circle
|
||||
r="2.2097087"
|
||||
cy="-39.75"
|
||||
cx="219.25"
|
||||
id="circle4852"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
75
src/app/icons/toolbarButtons/checkable/pick
Executable file
@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="pickFillStroke.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="16.994446"
|
||||
inkscape:cy="7.1012752"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
transform="matrix(0.29022463,0,0,0.29022463,-4.1692806,246.01358)"
|
||||
id="g5088"
|
||||
style="display:inline">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path5084"
|
||||
d="M 28.863401,163 21,171 l -3,2 -1,-1 2,-3 7.863401,-8 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 25,160 5,5 1,-1 -1.5,-1.5 C 33,162 35.863401,158.24044 33.863401,156.24044 31.863401,154.24044 28,157 27.5,160.5 L 26,159 Z"
|
||||
id="path5086"
|
||||
sodipodi:nodetypes="ccccsccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
@ -1,62 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="pick.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.4"
|
||||
inkscape:cx="10.558389"
|
||||
inkscape:cy="12.853052"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-global="false" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="path835"
|
||||
style="fill:#f2f2f2;stroke:none;stroke-width:0.132292;stroke-linecap:round;paint-order:stroke markers fill"
|
||||
d="m 1.3199646,295.44351 c 0,0 -0.55515384,0.81908 0,0.81908 0.555154,0 0,-0.81908 0,-0.81908 z m 1.9014656,-3.24074 1.2180579,1.21806 0.2436116,-0.24361 -0.3654173,-0.36542 c 0.8526406,-0.1218 1.5501983,-1.03768 1.062975,-1.5249 -0.4872231,-0.48723 -1.4283925,0.18504 -1.5501983,1.03768 l -0.3654173,-0.36542 z m 0.7435291,0.9319 -1.7179756,1.74783 -0.7308348,0.48722 c -0.2242538,0.14403 -0.3891062,-0.0389 -0.2436115,-0.24361 l 0.4872232,-0.73084 1.7085679,-1.73824 z" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,64 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="pointTransformUnchecked.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="31.678384"
|
||||
inkscape:cx="8.2829883"
|
||||
inkscape:cy="10.987542"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-global="true" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="path4864"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.77953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
|
||||
d="m 13.960938,4.0976562 a 1.1322718,1.1322718 0 0 0 -1.119141,1.0644532 1.1322718,1.1322718 0 0 0 0.138672,0.6152344 l -2.09375,1.8554687 A 2.2097086,2.2097086 0 0 0 9.4082031,7.0644531 2.2097086,2.2097086 0 0 0 7.1992188,9.2753906 2.2097086,2.2097086 0 0 0 7.5996094,10.544922 l -2.0957032,1.857422 a 1.1322718,1.1322718 0 0 0 -0.5917968,-0.210938 1.1322718,1.1322718 0 0 0 -1.1972656,1.0625 1.1322718,1.1322718 0 0 0 1.0625,1.199219 1.1322718,1.1322718 0 0 0 1.1972656,-1.0625 1.1322718,1.1322718 0 0 0 -0.1367188,-0.613281 L 7.59375,11.220703 c -0.2390837,0.422195 -0.4372714,0.85487 -0.5957031,1.289063 -0.7531131,2.063976 -0.700507,4.165982 -0.5449219,5.503906 A 1.5035318,1.5035318 0 0 0 5.5292969,19.400391 1.5035318,1.5035318 0 0 0 7.0332031,20.902344 1.5035318,1.5035318 0 0 0 8.5371094,19.400391 1.5035318,1.5035318 0 0 0 7.4765625,17.964844 C 7.3234365,16.740208 7.2295602,14.7844 7.9355469,12.849609 8.1220977,12.338351 8.3669029,11.838038 8.6738281,11.359375 a 2.2097086,2.2097086 0 0 0 0.734375,0.125 2.2097086,2.2097086 0 0 0 2.2109379,-2.2089844 2.2097086,2.2097086 0 0 0 -0.04883,-0.4570312 c 1.584342,-0.788636 3.779651,-1.2649928 6.800782,-1.1523438 a 1.5035318,1.5035318 0 0 0 1.412109,0.9863282 1.5035318,1.5035318 0 0 0 1.503906,-1.5019532 1.5035318,1.5035318 0 0 0 -1.503906,-1.5039062 1.5035318,1.5035318 0 0 0 -1.423828,1.0214844 c -2.885875,-0.1015845 -5.115006,0.307229 -6.824219,1.0625 l 1.78125,-1.578125 a 1.1322718,1.1322718 0 0 0 0.587891,0.2070312 1.1322718,1.1322718 0 0 0 1.197265,-1.0625 1.1322718,1.1322718 0 0 0 -1.0625,-1.1972656 1.1322718,1.1322718 0 0 0 -0.07812,-0.00195 z m -2.44336,7.5429688 4.673828,8.736328 4.22461,-4.388672 z"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0,290.3854)" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.7 KiB |
94
src/app/icons/toolbarButtons/checkable/pointTransformChecked
Executable file
@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="pointTransformChecked.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="2.306946"
|
||||
inkscape:cy="6.7441323"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-56.389322,305.83045)"
|
||||
id="g4862">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4864"
|
||||
d="m 219.39889,-39.846665 c 0,0 -3.53553,-13.656 12.9047,-12.02081"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<g
|
||||
id="g4866"
|
||||
style="opacity:1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4868"
|
||||
d="m 219.3125,-39.687502 c 0,0 12.4375,1.625 12.6875,-12.4375"
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3, 3;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
</g>
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="circle4870"
|
||||
cx="232"
|
||||
cy="-52"
|
||||
r="2.2097087" />
|
||||
<circle
|
||||
r="2.2097087"
|
||||
cy="-49.875"
|
||||
cx="221.625"
|
||||
id="circle4872"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="circle4874"
|
||||
cx="219.25"
|
||||
cy="-39.75"
|
||||
r="2.2097087" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
94
src/app/icons/toolbarButtons/checkable/pointTransformUnchecked
Executable file
@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="pointTransform.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="16.994446"
|
||||
inkscape:cy="7.1012752"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-56.389322,305.83045)"
|
||||
id="g4862">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4864"
|
||||
d="m 219.39889,-39.846665 c 0,0 -3.53553,-13.656 12.9047,-12.02081"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<g
|
||||
id="g4866"
|
||||
style="opacity:1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4868"
|
||||
d="m 219.3125,-39.687502 c 0,0 12.4375,1.625 12.6875,-12.4375"
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3, 3;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
</g>
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="circle4870"
|
||||
cx="232"
|
||||
cy="-52"
|
||||
r="2.2097087" />
|
||||
<circle
|
||||
r="2.2097087"
|
||||
cy="-49.875"
|
||||
cx="221.625"
|
||||
id="circle4872"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<circle
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="circle4874"
|
||||
cx="219.25"
|
||||
cy="-39.75"
|
||||
r="2.2097087" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
29
src/app/icons/toolbarButtons/checkable/rectCreate.svg → src/app/icons/toolbarButtons/checkable/rectCreate
Normal file → Executable file
@ -1,4 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
@ -12,7 +14,7 @@
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="rectCreate.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
@ -23,19 +25,18 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.4"
|
||||
inkscape:cx="16.315012"
|
||||
inkscape:cy="12.642493"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="16.994446"
|
||||
inkscape:cy="7.1012752"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
@ -53,9 +54,13 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
id="rect831"
|
||||
style="fill:#f9f9f9;fill-rule:evenodd;stroke-width:0.29718"
|
||||
d="m 1.7342612,292.14188 v 3.10162 h 3.146061 v -3.10162 z m 0.3860229,0.38086 h 2.3740152 v 2.34042 H 2.1202841 Z" />
|
||||
<rect
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
id="rect4935"
|
||||
width="2.8009763"
|
||||
height="2.7615256"
|
||||
x="1.9068035"
|
||||
y="292.31192"
|
||||
ry="0" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 2.0 KiB |
69
src/app/icons/toolbarButtons/checkable/textCreate
Executable file
@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="textCreate.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="-3.4845334"
|
||||
inkscape:cy="14.956233"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g2237"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-56.384027,305.8557)"
|
||||
id="g2237"
|
||||
style="stroke-width:0.70000001;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:0%;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 219.19922,-53.162109 v 4.878906 c 0,0.560545 0.10183,1.027302 0.36523,1.375 0.26341,0.347698 0.69003,0.52539 1.15821,0.525391 0.46817,0 0.89674,-0.177693 1.16015,-0.525391 0.26341,-0.347698 0.36328,-0.814455 0.36328,-1.375 v -1.832031 h 1.8125 v 8.289062 h -1.17578 c -0.5369,0 -0.98109,0.0896 -1.33008,0.3125 -0.38969,0.232485 -0.57031,0.691164 -0.57031,1.210938 0,0.468176 0.17965,0.896748 0.52735,1.160156 0.34769,0.263408 0.8125,0.363281 1.37304,0.363281 h 5.42188 c 0.56054,0 1.02535,-0.09987 1.37304,-0.363281 0.3477,-0.263408 0.52539,-0.69198 0.52539,-1.160156 0,-0.468177 -0.17769,-0.894796 -0.52539,-1.158204 -0.34769,-0.263407 -0.8125,-0.365234 -1.37304,-0.365234 h -1.19922 v -8.289062 h 1.85742 v 1.832031 c 0,0.560545 0.10183,1.027302 0.36523,1.375 0.26341,0.347698 0.69003,0.52539 1.15821,0.525391 0.51977,-10e-7 0.97845,-0.180619 1.21094,-0.570313 0.22222,-0.348773 0.3125,-0.79392 0.3125,-1.330078 v -4.878906 z"
|
||||
id="text4886"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccsscccscscsscscscccscccscc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.1 KiB |
68
src/app/icons/toolbarButtons/checkedBg.svg → src/app/icons/toolbarButtons/checkedBg
Normal file → Executable file
@ -1,10 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
@ -12,10 +15,33 @@
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="checkedBg.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
id="defs1462">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4390"
|
||||
id="linearGradient5110"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.26458333,0,0,0.26458333,-56.516323,305.92589)"
|
||||
x1="218.29865"
|
||||
y1="-52.990284"
|
||||
x2="233.89726"
|
||||
y2="-38.025555" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4390">
|
||||
<stop
|
||||
style="stop-color:#1e1e1e;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4392" />
|
||||
<stop
|
||||
style="stop-color:#3a3a3a;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4394" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
@ -23,26 +49,22 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.4"
|
||||
inkscape:cx="17.183109"
|
||||
inkscape:cy="14.091343"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="-2.8670047"
|
||||
inkscape:cy="8.8091385"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="true" />
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
@ -51,7 +73,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -61,20 +83,12 @@
|
||||
id="layer1"
|
||||
transform="translate(0.13229161,-290.5177)">
|
||||
<rect
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.27380601;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect818"
|
||||
width="6.5713539"
|
||||
height="6.5713539"
|
||||
x="-0.11067682"
|
||||
y="290.53931"
|
||||
ry="0.85564506" />
|
||||
<rect
|
||||
ry="0.78489757"
|
||||
y="290.81097"
|
||||
x="0.16099358"
|
||||
height="6.0280132"
|
||||
width="6.0280132"
|
||||
ry="0.82682294"
|
||||
y="290.64999"
|
||||
x="4.7683717e-08"
|
||||
height="6.3499999"
|
||||
width="6.3499999"
|
||||
id="rect5072"
|
||||
style="opacity:1;fill:#191919;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25116685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
style="opacity:1;fill:url(#linearGradient5110);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.8 KiB |
63
src/app/icons/toolbarButtons/plain/+
Executable file
@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="+.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="-3.8401471"
|
||||
inkscape:cy="1.5876762"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1031"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Chilanka;-inkscape-font-specification:Chilanka;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12.5 5.2851562 C 12.045184 5.2851563 11.658032 5.4454738 11.337891 5.765625 C 11.01775 6.0857258 10.857422 6.4728808 10.857422 6.9277344 L 10.857422 10.857422 L 6.9277344 10.857422 C 6.4728645 10.857422 6.0857172 11.017739 5.765625 11.337891 C 5.4455325 11.657966 5.2851562 12.045121 5.2851562 12.5 C 5.2851562 12.954828 5.4455325 13.341983 5.765625 13.662109 C 6.085718 13.982261 6.4728652 14.142578 6.9277344 14.142578 L 10.857422 14.142578 L 10.857422 18.072266 C 10.857422 18.527094 11.01775 18.914224 11.337891 19.234375 C 11.657967 19.554501 12.045119 19.714844 12.5 19.714844 C 12.954816 19.714844 13.341968 19.554501 13.662109 19.234375 C 13.982251 18.914249 14.142578 18.527119 14.142578 18.072266 L 14.142578 14.142578 L 18.072266 14.142578 C 18.527135 14.142578 18.914283 13.982261 19.234375 13.662109 C 19.554467 13.342034 19.714844 12.954879 19.714844 12.5 C 19.714844 12.045197 19.554467 11.658042 19.234375 11.337891 C 18.914282 11.017739 18.527135 10.857422 18.072266 10.857422 L 14.142578 10.857422 L 14.142578 6.9277344 C 14.142578 6.472906 13.982251 6.085751 13.662109 5.765625 C 13.342033 5.4454738 12.954881 5.2851562 12.5 5.2851562 z "
|
||||
id="path836"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0,290.3854)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
@ -1,62 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="+.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="31.678384"
|
||||
inkscape:cx="13.567271"
|
||||
inkscape:cy="11.151596"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Chilanka;-inkscape-font-specification:Chilanka;letter-spacing:0px;word-spacing:0px;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 12.5,5.2851562 c -0.454816,10e-8 -0.841968,0.1603176 -1.162109,0.4804688 -0.320141,0.3201008 -0.480469,0.7072558 -0.480469,1.1621094 V 10.857422 H 6.9277344 c -0.4548699,0 -0.8420172,0.160317 -1.1621094,0.480469 -0.3200925,0.320075 -0.4804688,0.70723 -0.4804688,1.162109 0,0.454828 0.1603763,0.841983 0.4804688,1.162109 0.320093,0.320152 0.7072402,0.480469 1.1621094,0.480469 h 3.9296876 v 3.929688 c 0,0.454828 0.160328,0.841958 0.480469,1.162109 0.320076,0.320126 0.707228,0.480469 1.162109,0.480469 0.454816,0 0.841968,-0.160343 1.162109,-0.480469 0.320142,-0.320126 0.480469,-0.707256 0.480469,-1.162109 v -3.929688 h 3.929688 c 0.454869,0 0.842017,-0.160317 1.162109,-0.480469 0.320092,-0.320075 0.480469,-0.70723 0.480469,-1.162109 0,-0.454803 -0.160377,-0.841958 -0.480469,-1.162109 -0.320093,-0.320152 -0.70724,-0.480469 -1.162109,-0.480469 H 14.142578 V 6.9277344 C 14.142578,6.472906 13.982251,6.085751 13.662109,5.765625 13.342033,5.4454738 12.954881,5.2851562 12.5,5.2851562 Z"
|
||||
id="path836"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0,290.3854)" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.0 KiB |
35
src/app/icons/toolbarButtons/checkable/lockAlpha.svg → src/app/icons/toolbarButtons/plain/-
Normal file → Executable file
@ -1,4 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
@ -13,7 +15,7 @@
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="lockAlpha.svg">
|
||||
sodipodi:docname="-.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
@ -23,19 +25,18 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="12.632183"
|
||||
inkscape:cy="14.636213"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="-3.8401471"
|
||||
inkscape:cy="1.5876762"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-height="1031"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
@ -44,7 +45,7 @@
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
@ -53,10 +54,16 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09955144;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
d="M 12.5 4.3320312 A 8.1680988 8.1680988 0 0 0 4.3320312 12.5 A 8.1680988 8.1680988 0 0 0 10.541016 20.419922 A 8.1680988 8.1680988 0 0 1 10.175781 18.03125 A 8.1680988 8.1680988 0 0 1 18.34375 9.8632812 A 8.1680988 8.1680988 0 0 1 20.302734 10.111328 A 8.1680988 8.1680988 0 0 0 12.5 4.3320312 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0,290.3854)"
|
||||
id="circle874" />
|
||||
<g
|
||||
aria-label="-"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:Chilanka;-inkscape-font-specification:Chilanka;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.20449305;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="text817"
|
||||
transform="matrix(1.29385,0,0,1.29385,-4.115773,-86.60151)">
|
||||
<path
|
||||
d="m 4.3600142,294.1622 q -0.098185,-0.0982 -0.098185,-0.23771 0,-0.13953 0.098185,-0.23771 0.098185,-0.0982 0.2377116,-0.0982 h 2.2789306 q 0.1395263,0 0.2377115,0.0982 0.098185,0.0982 0.098185,0.23771 0,0.13953 -0.098185,0.23771 -0.098185,0.0982 -0.2377115,0.0982 H 4.5977258 q -0.1395264,0 -0.2377116,-0.0982 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.20449305;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path819"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.6 KiB |
85
src/app/icons/toolbarButtons/plain/alignBottom
Executable file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="alignBottom.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.959798"
|
||||
inkscape:cx="-49.844661"
|
||||
inkscape:cy="35.239367"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g829"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g828"
|
||||
transform="rotate(90,2.8904283,293.69613)">
|
||||
<g
|
||||
id="g829"
|
||||
transform="translate(0.2126153,1.4520466)">
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 0.51818054,289.49371 H 1.3265243 l 0,4.66702 H 0.51818054 Z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="M 2.1438512,289.49371 H 2.952195 v 4.66702 H 2.1438512 Z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 3.7695222,289.49371 H 4.577866 v 4.66702 H 3.7695222 Z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="alignBottom.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.6791796"
|
||||
inkscape:cx="-35.422303"
|
||||
inkscape:cy="-5.9339835"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.14899373;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="m 4.0472704,291.53649 v 0.80835 H 2.5673042 v -0.80835 z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="m 5.2015007,293.16216 v 0.80835 H 1.4130739 v -0.80835 z"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.23838095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 5.6407973,294.78783 v 0.80835 h -4.66702 v -0.80835 z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.8 KiB |
85
src/app/icons/toolbarButtons/plain/alignCenter
Executable file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="alignCenter.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="11.507541"
|
||||
inkscape:cy="8.4212362"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g829"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g828"
|
||||
transform="rotate(90,2.8904283,293.69613)">
|
||||
<g
|
||||
id="g829"
|
||||
transform="translate(0.2126153,1.4520466)">
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 0.51818054,290.12012 H 1.3265243 v 3.4142 H 0.51818054 Z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="M 2.1438512,289.49371 H 2.952195 v 4.66702 H 2.1438512 Z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 3.7695222,290.23824 H 4.577866 v 3.17796 H 3.7695222 Z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="alignCenter.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="11.507541"
|
||||
inkscape:cy="8.4212362"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 5.0143873,291.53649 v 0.80835 h -3.4142 v -0.80835 z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="m 5.6407973,293.16216 v 0.80835 h -4.66702 v -0.80835 z"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 4.8962673,294.78783 v 0.80835 h -3.17796 v -0.80835 z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.8 KiB |
85
src/app/icons/toolbarButtons/plain/alignLeft
Executable file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="alignLeft.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="11.507541"
|
||||
inkscape:cy="8.4212362"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g829"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g828"
|
||||
transform="rotate(90,2.8904283,293.69613)">
|
||||
<g
|
||||
id="g829"
|
||||
transform="translate(0.2126153,1.4520466)">
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 0.51818054,290.74653 H 1.3265243 v 3.4142 H 0.51818054 Z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="M 2.1438512,289.49371 H 2.952195 v 4.66702 H 2.1438512 Z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 3.7695222,290.98278 H 4.577866 v 3.17795 H 3.7695222 Z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="alignLeft.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="11.507541"
|
||||
inkscape:cy="8.4212362"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 4.3879773,291.53649 v 0.80835 h -3.4142 v -0.80835 z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="m 5.6407973,293.16216 v 0.80835 h -4.66702 v -0.80835 z"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 4.1517273,294.78783 v 0.80835 h -3.17795 v -0.80835 z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.8 KiB |
85
src/app/icons/toolbarButtons/plain/alignRight
Executable file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="alignRight.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="11.507541"
|
||||
inkscape:cy="8.4212362"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g829"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g828"
|
||||
transform="rotate(90,2.8904283,293.69613)">
|
||||
<g
|
||||
id="g829"
|
||||
transform="translate(0.2126153,1.4520466)">
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 0.51818054,289.49371 H 1.3265243 v 3.4142 H 0.51818054 Z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="M 2.1438512,289.49371 H 2.952195 v 4.66702 H 2.1438512 Z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 3.7695222,289.49371 H 4.577866 v 3.17796 H 3.7695222 Z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
sodipodi:docname="alignRight.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="11.507541"
|
||||
inkscape:cy="8.4212362"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="737"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 5.6407973,291.53649 v 0.80835 h -3.4142 v -0.80835 z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="m 5.6407973,293.16216 v 0.80835 h -4.66702 v -0.80835 z"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1"
|
||||
d="m 5.6407973,294.78783 v 0.80835 h -3.17796 v -0.80835 z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.8 KiB |
85
src/app/icons/toolbarButtons/plain/alignTop
Executable file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="alignTop.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.919596"
|
||||
inkscape:cx="5.0333934"
|
||||
inkscape:cy="4.3777615"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g828"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g828"
|
||||
transform="rotate(90,2.8904283,293.69613)">
|
||||
<g
|
||||
id="g829"
|
||||
transform="translate(0.2126153,1.4520466)">
|
||||
<path
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 0.51818054,289.49371 H 1.3265243 l 0,4.66702 H 0.51818054 Z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="M 2.1438512,289.49371 H 2.952195 v 4.66702 H 2.1438512 Z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 3.7695222,289.49371 H 4.577866 v 4.66702 H 3.7695222 Z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="alignTop.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.4"
|
||||
inkscape:cx="-1.0044552"
|
||||
inkscape:cy="15.459333"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.14899373;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="m 4.0472704,295.59618 v -0.80835 H 2.5673042 v 0.80835 z"
|
||||
id="path823-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586-6"
|
||||
d="m 5.2015007,293.97051 v -0.80835 H 1.4130739 v 0.80835 z"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.23838097;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26458299;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="m 5.6407974,292.34485 v -0.80836 H 0.9737773 v 0.80836 z"
|
||||
id="path818-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.8 KiB |
85
src/app/icons/toolbarButtons/plain/alignVCenter
Executable file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="alignVCenter.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="10.283597"
|
||||
inkscape:cy="9.6419671"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g829"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g828"
|
||||
transform="rotate(90,2.8904283,293.69613)">
|
||||
<g
|
||||
id="g829"
|
||||
transform="translate(0.2126153,1.4520466)">
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 0.51818054,289.49371 H 1.3265243 l 0,4.66702 H 0.51818054 Z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="M 2.1438512,289.49371 H 2.952195 v 4.66702 H 2.1438512 Z"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="M 3.7695222,289.49371 H 4.577866 v 4.66702 H 3.7695222 Z"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="alignVCenter.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="11.02373"
|
||||
inkscape:cy="11.351504"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1054"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586"
|
||||
d="m 5.6407973,293.16216 v 0.80835 h -4.66702 v -0.80835 z"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.4;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.14899373;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1"
|
||||
d="m 4.0472704,291.53649 v 0.80835 H 2.5673042 v -0.80835 z"
|
||||
id="path823-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4586-6"
|
||||
d="m 4.4738965,294.7867 v 0.80835 H 2.1406781 v -0.80835 z"
|
||||
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.18707676;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:9.39999962;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.8 KiB |
79
src/app/icons/toolbarButtons/plain/brush+
Executable file
@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="25"
|
||||
height="25"
|
||||
viewBox="0 0 6.6145832 6.6145835"
|
||||
version="1.1"
|
||||
id="svg1468"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="brush+.svg">
|
||||
<defs
|
||||
id="defs1462" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="-165.54693"
|
||||
inkscape:cy="-46.050482"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1055"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1465">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-290.3854)">
|
||||
<g
|
||||
id="g5235"
|
||||
transform="matrix(0.30110792,0,0,0.30110792,-52.856908,341.55949)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5215"
|
||||
d="m 185.58104,-159.19609 3.57972,-7.38043 4.15426,1.59099 -6.09881,6.8501 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 178.94485,-151.24969 c 4.65905,-0.60403 1.83874,-4.76781 3.27037,-6.54074 1.14905,-1.32583 2.56327,-2.03293 3.88909,-1.41422 1.32583,0.61872 2.47487,3.71231 0.0884,6.01041 -2.38649,2.2981 -7.24785,1.94455 -7.24785,1.94455 z"
|
||||
id="path5209"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:Chilanka;-inkscape-font-specification:Chilanka;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.00157475;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.130859 11.818359 C 16.779338 11.818359 16.479855 11.94202 16.232422 12.189453 C 15.984989 12.436861 15.861328 12.736344 15.861328 13.087891 L 15.861328 16.125 L 12.824219 16.125 C 12.472656 16.125 12.173177 16.248661 11.925781 16.496094 C 11.678386 16.743476 11.554688 17.04296 11.554688 17.394531 C 11.554688 17.746053 11.678386 18.045536 11.925781 18.292969 C 12.173177 18.540402 12.472656 18.664062 12.824219 18.664062 L 15.861328 18.664062 L 15.861328 21.701172 C 15.861328 22.052718 15.984989 22.352176 16.232422 22.599609 C 16.479805 22.847042 16.779288 22.970703 17.130859 22.970703 C 17.482381 22.970703 17.781864 22.847042 18.029297 22.599609 C 18.27673 22.352202 18.400391 22.052744 18.400391 21.701172 L 18.400391 18.664062 L 21.4375 18.664062 C 21.789063 18.664062 22.088542 18.540402 22.335938 18.292969 C 22.583333 18.045586 22.707031 17.746103 22.707031 17.394531 C 22.707031 17.04301 22.583333 16.743527 22.335938 16.496094 C 22.088542 16.248661 21.789062 16.125 21.4375 16.125 L 18.400391 16.125 L 18.400391 13.087891 C 18.400391 12.736369 18.27673 12.436886 18.029297 12.189453 C 17.781914 11.94202 17.482431 11.818359 17.130859 11.818359 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0,290.3854)"
|
||||
id="path841" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.1 KiB |