1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
<!-- Includes -->
<include>QStandardPaths</include>
<kcfgfile name="kamosorc"/>
<group name="General">
<entry name="saveUrl" type="Url" key="saveUrl">
<label>Where the photos are saved.</label>
<default code="true">QUrl::fromLocalFile(QStandardPaths::writableLocation(QStandardPaths::PicturesLocation))</default>
</entry>
<entry name="saveVideos" type="Url" key="saveVideos">
<label>Where the photos are saved.</label>
<default code="true">QUrl::fromLocalFile(QStandardPaths::writableLocation(QStandardPaths::MoviesLocation))</default>
</entry>
</group>
<group name="WebcamSettings">
<entry name="mirrored" type="bool">
<default>true</default>
<label>Vertically mirror the camera view.</label>
</entry>
<entry name="DeviceObjectId" type="String" key="deviceObjectId">
<label>Points to the last used webcam.</label>
</entry>
</group>
</kcfg>
|