okular/part/data/drawingtools.xml
David Hurka 19d5dd8ec7 New part/ directory for okularpart sources from /, ui/, conf/
Source files are no longer separated by UI and non-UI and similar,
but only by their build target.

* ui/ -> part/
* Move all source files from conf/ to part/
* Keep config skeleton definitions in conf/, needed for the mobile target too
* Move editdrawingtooldialogtest.h from conf/autotests/ to autotests/
* ui/data/icons/ -> icons/
* Move /part.cpp, /part.rc and similar files to part/
* Adapt include paths in source files
* Adapt CMakeLists.txt files (in / and in subdirectories)
* Adapt /Messages.sh
2020-11-18 19:32:56 +00:00

42 lines
1.2 KiB
XML

<!DOCTYPE okularDrawingTools>
<!--
Engine/DrawingTools Types [specific attributes]:
[color]
SmoothLine
[color]
[opacity]
Ink [width]
-->
<drawingTools>
<tool id="1" name="Red" default="true">
<engine color="#ff0000">
<annotation type="Ink" color="#ff0000" width="2" />
</engine>
</tool>
<tool id="2" name="Green" default="true">
<engine color="#00ff00">
<annotation type="Ink" color="#00ff00" width="2" />
</engine>
</tool>
<tool id="3" name="Blue" default="true">
<engine color="#0000ff">
<annotation type="Ink" color="#0000ff" width="2" />
</engine>
</tool>
<tool id="4" name="Yellow" default="true">
<engine color="#ffff00">
<annotation type="Ink" color="#ffff00" width="2" />
</engine>
</tool>
<tool id="5" name="Black" default="true">
<engine color="#000000">
<annotation type="Ink" color="#000000" width="2" />
</engine>
</tool>
<tool id="6" name="White" default="true">
<engine color="#ffffff">
<annotation type="Ink" color="#ffffff" width="2" />
</engine>
</tool>
</drawingTools>