Merge branch 'master' into cache-update
@@ -100,7 +100,6 @@ set(QT_LIBRARIES
|
||||
Gui
|
||||
Widgets
|
||||
OpenGL
|
||||
Svg
|
||||
LinguistTools
|
||||
Concurrent
|
||||
)
|
||||
@@ -121,7 +120,6 @@ list(APPEND OLIVE_LIBRARIES
|
||||
Qt5::Gui
|
||||
Qt5::Widgets
|
||||
Qt5::OpenGL
|
||||
Qt5::Svg
|
||||
Qt5::Concurrent
|
||||
)
|
||||
|
||||
|
||||
@@ -63,9 +63,9 @@ SequenceDialogPresetTab::SequenceDialogPresetTab(QWidget* parent) :
|
||||
preset_tree_->addTopLevelItem(my_presets_folder_);
|
||||
|
||||
// Add presets
|
||||
preset_tree_->addTopLevelItem(CreateHDPresetFolder(tr("4K UHD"), 3840, 2160, 6));
|
||||
preset_tree_->addTopLevelItem(CreateHDPresetFolder(tr("1080p"), 1920, 1080, 3));
|
||||
preset_tree_->addTopLevelItem(CreateHDPresetFolder(tr("720p"), 1280, 720, 2));
|
||||
preset_tree_->addTopLevelItem(CreateHDPresetFolder(tr("4K UHD"), 3840, 2160, 2));
|
||||
preset_tree_->addTopLevelItem(CreateHDPresetFolder(tr("1080p"), 1920, 1080, 1));
|
||||
preset_tree_->addTopLevelItem(CreateHDPresetFolder(tr("720p"), 1280, 720, 1));
|
||||
|
||||
preset_tree_->addTopLevelItem(CreateSDPresetFolder(tr("NTSC"), 720, 480, rational(30000, 1001),
|
||||
VideoParams::kPixelAspectNTSCStandard,
|
||||
|
||||
@@ -126,8 +126,7 @@ VideoParams::VideoParams(int width, int height, const rational &time_base, Forma
|
||||
|
||||
int VideoParams::generate_auto_divider(qint64 width, qint64 height)
|
||||
{
|
||||
// Arbitrary pixel count (from 640x360)
|
||||
const int target_res = 230400;
|
||||
const int target_res = 1920*1080;
|
||||
|
||||
qint64 megapixels = width * height;
|
||||
|
||||
@@ -155,8 +154,8 @@ int VideoParams::generate_auto_divider(qint64 width, qint64 height)
|
||||
}
|
||||
}
|
||||
|
||||
// "Safe" fallback
|
||||
return 2;
|
||||
// Fallback
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -96,6 +96,7 @@ QIcon icon::LockOpened;
|
||||
QIcon icon::LockClosed;
|
||||
QIcon icon::Pencil;
|
||||
QIcon icon::Subtitles;
|
||||
QIcon icon::ColorPicker;
|
||||
|
||||
void icon::LoadAll(const QString& theme)
|
||||
{
|
||||
@@ -148,9 +149,9 @@ void icon::LoadAll(const QString& theme)
|
||||
TextAlignRight = Create(theme, "align-right");
|
||||
TextAlignCenter = Create(theme, "align-center");
|
||||
TextAlignJustify = Create(theme, "align-justify-all");
|
||||
TextAlignTop = Create(theme, "align-left");
|
||||
TextAlignBottom = Create(theme, "align-right");
|
||||
TextAlignMiddle = Create(theme, "align-center");
|
||||
TextAlignTop = Create(theme, "align-v-top");
|
||||
TextAlignBottom = Create(theme, "align-v-bottom");
|
||||
TextAlignMiddle = Create(theme, "align-v-middle");
|
||||
|
||||
Snapping = Create(theme, "magnet");
|
||||
ZoomIn = Create(theme, "zoomin");
|
||||
@@ -164,6 +165,7 @@ void icon::LoadAll(const QString& theme)
|
||||
Plus = Create(theme, "plus");
|
||||
Minus = Create(theme, "minus");
|
||||
AddEffect = Create(theme, "add-effect");
|
||||
ColorPicker = Create(theme, "color-picker");
|
||||
|
||||
EyeOpened = Create(theme, "eye-opened");
|
||||
EyeClosed = Create(theme, "eye-closed");
|
||||
|
||||
@@ -108,6 +108,7 @@ extern QIcon LockOpened;
|
||||
extern QIcon LockClosed;
|
||||
extern QIcon Pencil;
|
||||
extern QIcon Subtitles;
|
||||
extern QIcon ColorPicker;
|
||||
|
||||
/**
|
||||
* @brief Create an icon object loaded from file
|
||||
|
||||
|
After Width: | Height: | Size: 685 B |
|
After Width: | Height: | Size: 601 B |
|
After Width: | Height: | Size: 431 B |
|
After Width: | Height: | Size: 255 B |
|
After Width: | Height: | Size: 475 B |
|
After Width: | Height: | Size: 302 B |
|
After Width: | Height: | Size: 531 B |
|
After Width: | Height: | Size: 401 B |
|
After Width: | Height: | Size: 685 B |
|
After Width: | Height: | Size: 602 B |
|
After Width: | Height: | Size: 431 B |
|
After Width: | Height: | Size: 255 B |
|
After Width: | Height: | Size: 475 B |
|
After Width: | Height: | Size: 302 B |
|
After Width: | Height: | Size: 531 B |
|
After Width: | Height: | Size: 401 B |
|
After Width: | Height: | Size: 685 B |
|
After Width: | Height: | Size: 601 B |
|
After Width: | Height: | Size: 435 B |
|
After Width: | Height: | Size: 255 B |
|
After Width: | Height: | Size: 476 B |
|
After Width: | Height: | Size: 302 B |
|
After Width: | Height: | Size: 531 B |
|
After Width: | Height: | Size: 401 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 571 B |
|
After Width: | Height: | Size: 435 B |
|
After Width: | Height: | Size: 738 B |
|
After Width: | Height: | Size: 673 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,158 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
sodipodi:docname="align-v-bottom.svg"
|
||||
inkscape:version="1.3-dev (1ca8b206, 2022-07-23)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="64"
|
||||
width="64"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 64 64"
|
||||
inkscape:export-filename="./align-justify-all.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
stroke="#3465a4"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-x="47"
|
||||
inkscape:window-height="927"
|
||||
inkscape:window-width="1633"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="34.914847"
|
||||
inkscape:cx="32.909429"
|
||||
inkscape:zoom="9.723657"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
id="base"
|
||||
fill="#729fcf"
|
||||
inkscape:window-maximized="0"
|
||||
borderlayer="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:lockguides="true"
|
||||
guidecolor="#ff0000"
|
||||
guideopacity="0.30196078"
|
||||
inkscape:deskcolor="#000000">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_pixels"
|
||||
color="#ffffff"
|
||||
opacity="0.05098039"
|
||||
empcolor="#ffffff"
|
||||
empopacity="0.10196078"
|
||||
dotted="false"
|
||||
empspacing="8"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
visible="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true" />
|
||||
<sodipodi:guide
|
||||
position="2,64"
|
||||
orientation="1,0"
|
||||
id="guide6912"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="62,64"
|
||||
orientation="1,0"
|
||||
id="guide6914"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,62"
|
||||
orientation="0,-1"
|
||||
id="guide6916"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,2"
|
||||
orientation="0,-1"
|
||||
id="guide6918"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,-1"
|
||||
id="guide6920"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide6922"
|
||||
inkscape:locked="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Martin Ruskov</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Design"
|
||||
id="layer1"
|
||||
transform="translate(0,16)">
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:0.86000001"
|
||||
d="m 8,24 c 16,0 32,0 48,0"
|
||||
id="path1363"
|
||||
inkscape:path-effect="#path-effect1367"
|
||||
inkscape:original-d="M 8,24 H 56" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.86;paint-order:markers fill stroke"
|
||||
d="m 8,40 c 16,0 32,0 48,0"
|
||||
id="path1583"
|
||||
inkscape:path-effect="#path-effect1587"
|
||||
inkscape:original-d="M 8,40 H 56" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,158 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
sodipodi:docname="align-v-middle.svg"
|
||||
inkscape:version="1.3-dev (1ca8b206, 2022-07-23)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="64"
|
||||
width="64"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 64 64"
|
||||
inkscape:export-filename="./align-justify-all.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
stroke="#3465a4"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-x="47"
|
||||
inkscape:window-height="927"
|
||||
inkscape:window-width="1633"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="34.914847"
|
||||
inkscape:cx="32.909429"
|
||||
inkscape:zoom="9.723657"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
id="base"
|
||||
fill="#729fcf"
|
||||
inkscape:window-maximized="0"
|
||||
borderlayer="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:lockguides="true"
|
||||
guidecolor="#ff0000"
|
||||
guideopacity="0.30196078"
|
||||
inkscape:deskcolor="#000000">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_pixels"
|
||||
color="#ffffff"
|
||||
opacity="0.05098039"
|
||||
empcolor="#ffffff"
|
||||
empopacity="0.10196078"
|
||||
dotted="false"
|
||||
empspacing="8"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
visible="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true" />
|
||||
<sodipodi:guide
|
||||
position="2,64"
|
||||
orientation="1,0"
|
||||
id="guide6912"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="62,64"
|
||||
orientation="1,0"
|
||||
id="guide6914"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,62"
|
||||
orientation="0,-1"
|
||||
id="guide6916"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,2"
|
||||
orientation="0,-1"
|
||||
id="guide6918"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,-1"
|
||||
id="guide6920"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide6922"
|
||||
inkscape:locked="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Martin Ruskov</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Design"
|
||||
id="layer1"
|
||||
transform="translate(0,16)">
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:0.86000001"
|
||||
d="m 8,24 c 16,0 32,0 48,0"
|
||||
id="path1363"
|
||||
inkscape:path-effect="#path-effect1367"
|
||||
inkscape:original-d="M 8,24 H 56" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.86;paint-order:markers fill stroke"
|
||||
d="M 8,8 C 24,8 40,8 56,8"
|
||||
id="path1325"
|
||||
inkscape:path-effect="#path-effect1329"
|
||||
inkscape:original-d="M 8,8 H 56" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,158 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
sodipodi:docname="align-v-top.svg"
|
||||
inkscape:version="1.3-dev (1ca8b206, 2022-07-23)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="64"
|
||||
width="64"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 64 64"
|
||||
inkscape:export-filename="./align-justify-all.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
stroke="#3465a4"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-x="47"
|
||||
inkscape:window-height="927"
|
||||
inkscape:window-width="1633"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="34.914847"
|
||||
inkscape:cx="32.909429"
|
||||
inkscape:zoom="9.723657"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
id="base"
|
||||
fill="#729fcf"
|
||||
inkscape:window-maximized="0"
|
||||
borderlayer="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:lockguides="true"
|
||||
guidecolor="#ff0000"
|
||||
guideopacity="0.30196078"
|
||||
inkscape:deskcolor="#000000">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_pixels"
|
||||
color="#ffffff"
|
||||
opacity="0.05098039"
|
||||
empcolor="#ffffff"
|
||||
empopacity="0.10196078"
|
||||
dotted="false"
|
||||
empspacing="8"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
visible="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true" />
|
||||
<sodipodi:guide
|
||||
position="2,64"
|
||||
orientation="1,0"
|
||||
id="guide6912"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="62,64"
|
||||
orientation="1,0"
|
||||
id="guide6914"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,62"
|
||||
orientation="0,-1"
|
||||
id="guide6916"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,2"
|
||||
orientation="0,-1"
|
||||
id="guide6918"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,-1"
|
||||
id="guide6920"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide6922"
|
||||
inkscape:locked="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Martin Ruskov</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Design"
|
||||
id="layer1"
|
||||
transform="translate(0,16)">
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:0.86000001"
|
||||
d="m 8,-8 c 16,0 32,0 48,0"
|
||||
id="path1207"
|
||||
inkscape:path-effect="#path-effect1209"
|
||||
inkscape:original-d="M 8,-8 H 56" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.86;paint-order:markers fill stroke"
|
||||
d="M 8,8 C 24,8 40,8 56,8"
|
||||
id="path1325"
|
||||
inkscape:path-effect="#path-effect1329"
|
||||
inkscape:original-d="M 8,8 H 56" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,150 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
sodipodi:docname="color-picker.svg"
|
||||
inkscape:version="1.3-dev (1ca8b206, 2022-07-23)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="64"
|
||||
width="64"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 64 64"
|
||||
inkscape:export-filename="./paste.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
stroke="#3465a4"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-x="47"
|
||||
inkscape:window-height="927"
|
||||
inkscape:window-width="1633"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="35.931697"
|
||||
inkscape:cx="20.669281"
|
||||
inkscape:zoom="7.3055274"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
id="base"
|
||||
fill="#729fcf"
|
||||
inkscape:window-maximized="0"
|
||||
borderlayer="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:lockguides="true"
|
||||
guidecolor="#ff0000"
|
||||
guideopacity="0.30196078"
|
||||
inkscape:deskcolor="#000000">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_pixels"
|
||||
color="#ffffff"
|
||||
opacity="0.05098039"
|
||||
empcolor="#ffffff"
|
||||
empopacity="0.10196078"
|
||||
dotted="false"
|
||||
empspacing="8"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
visible="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true" />
|
||||
<sodipodi:guide
|
||||
position="2,64"
|
||||
orientation="1,0"
|
||||
id="guide6912"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="62,64"
|
||||
orientation="1,0"
|
||||
id="guide6914"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,62"
|
||||
orientation="0,-1"
|
||||
id="guide6916"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,2"
|
||||
orientation="0,-1"
|
||||
id="guide6918"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,-1"
|
||||
id="guide6920"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide6922"
|
||||
inkscape:locked="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Martin Ruskov</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Design"
|
||||
id="layer1"
|
||||
transform="translate(0,16)">
|
||||
<path
|
||||
id="path3"
|
||||
style="color:#ffffff;fill:#ffffff;fill-opacity:0.85882354;stroke-linejoin:round;stroke-dashoffset:30.2362;paint-order:markers fill stroke"
|
||||
d="M 52 -10 A 6 6 0 0 0 47.757812 -8.2421875 L 40.585938 -1.0703125 L 39.828125 -1.828125 L 35.828125 -5.828125 A 4 4 0 0 0 33 -7 A 4 4 0 0 0 30.171875 -5.828125 A 4 4 0 0 0 30.171875 -0.171875 L 31.34375 1 L 8.171875 24.171875 C 3.5106692 28.833081 4.214861 35.87111 8.171875 39.828125 C 12.12889 43.78514 19.16692 44.48933 23.828125 39.828125 L 47 16.65625 L 48.171875 17.828125 A 4 4 0 0 0 53.828125 17.828125 A 4 4 0 0 0 53.828125 12.171875 L 49.828125 8.171875 L 49.070312 7.4140625 L 56.242188 0.2421875 A 6 6 0 0 0 56.242188 -8.2421875 A 6 6 0 0 0 52 -10 z M 37 6.65625 L 41.34375 11 L 18.171875 34.171875 C 16.833092 35.510658 14.585147 34.928897 13.828125 34.171875 C 13.071104 33.414853 12.489343 31.166907 13.828125 29.828125 L 37 6.65625 z " />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 878 B |
|
After Width: | Height: | Size: 874 B |
|
After Width: | Height: | Size: 443 B |
|
After Width: | Height: | Size: 264 B |
|
After Width: | Height: | Size: 484 B |
|
After Width: | Height: | Size: 325 B |
|
After Width: | Height: | Size: 568 B |
|
After Width: | Height: | Size: 517 B |
|
After Width: | Height: | Size: 854 B |
|
After Width: | Height: | Size: 873 B |
|
After Width: | Height: | Size: 442 B |
|
After Width: | Height: | Size: 264 B |
|
After Width: | Height: | Size: 484 B |
|
After Width: | Height: | Size: 327 B |
|
After Width: | Height: | Size: 567 B |
|
After Width: | Height: | Size: 515 B |
|
After Width: | Height: | Size: 823 B |
|
After Width: | Height: | Size: 873 B |
|
After Width: | Height: | Size: 442 B |
|
After Width: | Height: | Size: 266 B |
|
After Width: | Height: | Size: 487 B |
|
After Width: | Height: | Size: 326 B |
|
After Width: | Height: | Size: 566 B |
|
After Width: | Height: | Size: 515 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 607 B |
|
After Width: | Height: | Size: 512 B |
|
After Width: | Height: | Size: 799 B |
|
After Width: | Height: | Size: 842 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,158 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
sodipodi:docname="align-v-bottom.svg"
|
||||
inkscape:version="1.3-dev (1ca8b206, 2022-07-23)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="64"
|
||||
width="64"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 64 64"
|
||||
inkscape:export-filename="./align-justify-all.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
stroke="#3465a4"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-x="47"
|
||||
inkscape:window-height="927"
|
||||
inkscape:window-width="1633"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="34.914847"
|
||||
inkscape:cx="32.909429"
|
||||
inkscape:zoom="9.723657"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#212121"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
fill="#729fcf"
|
||||
inkscape:window-maximized="0"
|
||||
borderlayer="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:lockguides="true"
|
||||
guidecolor="#ff0000"
|
||||
guideopacity="0.30196078"
|
||||
inkscape:deskcolor="#d1d1d1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_pixels"
|
||||
color="#000000"
|
||||
opacity="0.05098039"
|
||||
empcolor="#000000"
|
||||
empopacity="0.10196078"
|
||||
dotted="false"
|
||||
empspacing="8"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
visible="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true" />
|
||||
<sodipodi:guide
|
||||
position="2,64"
|
||||
orientation="1,0"
|
||||
id="guide6912"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="62,64"
|
||||
orientation="1,0"
|
||||
id="guide6914"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,62"
|
||||
orientation="0,-1"
|
||||
id="guide6916"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,2"
|
||||
orientation="0,-1"
|
||||
id="guide6918"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,-1"
|
||||
id="guide6920"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide6922"
|
||||
inkscape:locked="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Martin Ruskov</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Design"
|
||||
id="layer1"
|
||||
transform="translate(0,16)">
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#212121;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:0.86000001"
|
||||
d="m 8,24 c 16,0 32,0 48,0"
|
||||
id="path1363"
|
||||
inkscape:path-effect="#path-effect1367"
|
||||
inkscape:original-d="M 8,24 H 56" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#212121;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.86;paint-order:markers fill stroke"
|
||||
d="m 8,40 c 16,0 32,0 48,0"
|
||||
id="path1583"
|
||||
inkscape:path-effect="#path-effect1587"
|
||||
inkscape:original-d="M 8,40 H 56" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,158 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
sodipodi:docname="align-v-middle.svg"
|
||||
inkscape:version="1.3-dev (1ca8b206, 2022-07-23)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="64"
|
||||
width="64"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 64 64"
|
||||
inkscape:export-filename="./align-justify-all.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
stroke="#3465a4"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-x="47"
|
||||
inkscape:window-height="927"
|
||||
inkscape:window-width="1633"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="34.914847"
|
||||
inkscape:cx="32.909429"
|
||||
inkscape:zoom="9.723657"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#212121"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
fill="#729fcf"
|
||||
inkscape:window-maximized="0"
|
||||
borderlayer="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:lockguides="true"
|
||||
guidecolor="#ff0000"
|
||||
guideopacity="0.30196078"
|
||||
inkscape:deskcolor="#d1d1d1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_pixels"
|
||||
color="#000000"
|
||||
opacity="0.05098039"
|
||||
empcolor="#000000"
|
||||
empopacity="0.10196078"
|
||||
dotted="false"
|
||||
empspacing="8"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
visible="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true" />
|
||||
<sodipodi:guide
|
||||
position="2,64"
|
||||
orientation="1,0"
|
||||
id="guide6912"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="62,64"
|
||||
orientation="1,0"
|
||||
id="guide6914"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,62"
|
||||
orientation="0,-1"
|
||||
id="guide6916"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,2"
|
||||
orientation="0,-1"
|
||||
id="guide6918"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,-1"
|
||||
id="guide6920"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide6922"
|
||||
inkscape:locked="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Martin Ruskov</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Design"
|
||||
id="layer1"
|
||||
transform="translate(0,16)">
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#212121;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:0.86000001"
|
||||
d="m 8,24 c 16,0 32,0 48,0"
|
||||
id="path1363"
|
||||
inkscape:path-effect="#path-effect1367"
|
||||
inkscape:original-d="M 8,24 H 56" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#212121;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.86;paint-order:markers fill stroke"
|
||||
d="M 8,8 C 24,8 40,8 56,8"
|
||||
id="path1325"
|
||||
inkscape:path-effect="#path-effect1329"
|
||||
inkscape:original-d="M 8,8 H 56" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,158 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
sodipodi:docname="align-v-top.svg"
|
||||
inkscape:version="1.3-dev (1ca8b206, 2022-07-23)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="64"
|
||||
width="64"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 64 64"
|
||||
inkscape:export-filename="./align-justify-all.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
stroke="#3465a4"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-x="47"
|
||||
inkscape:window-height="927"
|
||||
inkscape:window-width="1633"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="34.914847"
|
||||
inkscape:cx="32.909429"
|
||||
inkscape:zoom="9.723657"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#212121"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
fill="#729fcf"
|
||||
inkscape:window-maximized="0"
|
||||
borderlayer="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:lockguides="true"
|
||||
guidecolor="#ff0000"
|
||||
guideopacity="0.30196078"
|
||||
inkscape:deskcolor="#d1d1d1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_pixels"
|
||||
color="#000000"
|
||||
opacity="0.05098039"
|
||||
empcolor="#000000"
|
||||
empopacity="0.10196078"
|
||||
dotted="false"
|
||||
empspacing="8"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
visible="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true" />
|
||||
<sodipodi:guide
|
||||
position="2,64"
|
||||
orientation="1,0"
|
||||
id="guide6912"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="62,64"
|
||||
orientation="1,0"
|
||||
id="guide6914"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,62"
|
||||
orientation="0,-1"
|
||||
id="guide6916"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,2"
|
||||
orientation="0,-1"
|
||||
id="guide6918"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,-1"
|
||||
id="guide6920"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide6922"
|
||||
inkscape:locked="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Martin Ruskov</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Design"
|
||||
id="layer1"
|
||||
transform="translate(0,16)">
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#212121;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke;stroke-opacity:0.86000001"
|
||||
d="m 8,-8 c 16,0 32,0 48,0"
|
||||
id="path1207"
|
||||
inkscape:path-effect="#path-effect1209"
|
||||
inkscape:original-d="M 8,-8 H 56" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.86;fill-rule:evenodd;stroke:#212121;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.86;paint-order:markers fill stroke"
|
||||
d="M 8,8 C 24,8 40,8 56,8"
|
||||
id="path1325"
|
||||
inkscape:path-effect="#path-effect1329"
|
||||
inkscape:original-d="M 8,8 H 56" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,150 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
sodipodi:docname="color-picker.svg"
|
||||
inkscape:version="1.3-dev (1ca8b206, 2022-07-23)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="64"
|
||||
width="64"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 64 64"
|
||||
inkscape:export-filename="./paste.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
stroke="#3465a4"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-x="47"
|
||||
inkscape:window-height="927"
|
||||
inkscape:window-width="1633"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="35.931697"
|
||||
inkscape:cx="20.669281"
|
||||
inkscape:zoom="7.3055274"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#212121"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
fill="#729fcf"
|
||||
inkscape:window-maximized="0"
|
||||
borderlayer="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:lockguides="true"
|
||||
guidecolor="#ff0000"
|
||||
guideopacity="0.30196078"
|
||||
inkscape:deskcolor="#d1d1d1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_pixels"
|
||||
color="#000000"
|
||||
opacity="0.05098039"
|
||||
empcolor="#000000"
|
||||
empopacity="0.10196078"
|
||||
dotted="false"
|
||||
empspacing="8"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
visible="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true" />
|
||||
<sodipodi:guide
|
||||
position="2,64"
|
||||
orientation="1,0"
|
||||
id="guide6912"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="62,64"
|
||||
orientation="1,0"
|
||||
id="guide6914"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,62"
|
||||
orientation="0,-1"
|
||||
id="guide6916"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="0,2"
|
||||
orientation="0,-1"
|
||||
id="guide6918"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,-1"
|
||||
id="guide6920"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide6922"
|
||||
inkscape:locked="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Martin Ruskov</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Design"
|
||||
id="layer1"
|
||||
transform="translate(0,16)">
|
||||
<path
|
||||
id="path3"
|
||||
style="color:#000000;fill:#212121;fill-opacity:0.85882354;stroke-linejoin:round;stroke-dashoffset:30.2362;paint-order:markers fill stroke"
|
||||
d="M 52 -10 A 6 6 0 0 0 47.757812 -8.2421875 L 40.585938 -1.0703125 L 39.828125 -1.828125 L 35.828125 -5.828125 A 4 4 0 0 0 33 -7 A 4 4 0 0 0 30.171875 -5.828125 A 4 4 0 0 0 30.171875 -0.171875 L 31.34375 1 L 8.171875 24.171875 C 3.5106692 28.833081 4.214861 35.87111 8.171875 39.828125 C 12.12889 43.78514 19.16692 44.48933 23.828125 39.828125 L 47 16.65625 L 48.171875 17.828125 A 4 4 0 0 0 53.828125 17.828125 A 4 4 0 0 0 53.828125 12.171875 L 49.828125 8.171875 L 49.070312 7.4140625 L 56.242188 0.2421875 A 6 6 0 0 0 56.242188 -8.2421875 A 6 6 0 0 0 52 -10 z M 37 6.65625 L 41.34375 11 L 18.171875 34.171875 C 16.833092 35.510658 14.585147 34.928897 13.828125 34.171875 C 13.071104 33.414853 12.489343 31.166907 13.828125 29.828125 L 37 6.65625 z " />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
@@ -26,6 +26,7 @@
|
||||
|
||||
#include "config/config.h"
|
||||
#include "core.h"
|
||||
#include "ui/icons/icons.h"
|
||||
|
||||
namespace olive {
|
||||
|
||||
@@ -51,7 +52,9 @@ ColorValuesWidget::ColorValuesWidget(ColorManager *manager, QWidget *parent) :
|
||||
preview_->setFixedHeight(fontMetrics().height() * 3 / 2);
|
||||
preview_layout->addWidget(preview_);
|
||||
|
||||
color_picker_btn_ = new QPushButton(tr("Pick"));
|
||||
color_picker_btn_ = new QPushButton();
|
||||
color_picker_btn_->setIcon(icon::ColorPicker);
|
||||
color_picker_btn_->setFixedWidth(color_picker_btn_->sizeHint().height());
|
||||
color_picker_btn_->setCheckable(true);
|
||||
connect(color_picker_btn_, &QPushButton::toggled, this, &ColorValuesWidget::ColorPickedBtnToggled);
|
||||
connect(Core::instance(), &Core::ColorPickerColorEmitted, this, &ColorValuesWidget::SetReferenceColor);
|
||||
|
||||
@@ -1886,6 +1886,10 @@ void TimelineWidget::SetSelections(const TimelineWidgetSelections &s, bool proce
|
||||
return;
|
||||
}
|
||||
|
||||
if (!GetConnectedNode()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (process_block_changes) {
|
||||
QVector<Block*> deselected;
|
||||
QVector<Block*> selected;
|
||||
|
||||
@@ -738,7 +738,7 @@ void ViewerDisplayWidget::OpenTextGizmo(TextGizmo *text, QMouseEvent *event)
|
||||
|
||||
// Create toolbar
|
||||
text_toolbar_ = new ViewerTextEditorToolBar(text_edit_);
|
||||
text_toolbar_->setWindowFlags(Qt::Window | Qt::WindowStaysOnTopHint | Qt::FramelessWindowHint);
|
||||
text_toolbar_->setWindowFlags(Qt::Dialog| Qt::WindowStaysOnTopHint | Qt::FramelessWindowHint);
|
||||
connect(text_toolbar_, &ViewerTextEditorToolBar::VerticalAlignmentChanged, text, &TextGizmo::SetVerticalAlignment);
|
||||
connect(text, &TextGizmo::VerticalAlignmentChanged, text_toolbar_, &ViewerTextEditorToolBar::SetVerticalAlignment);
|
||||
text_toolbar_->SetVerticalAlignment(text->GetVerticalAlignment());
|
||||
|
||||