parent
38c4efef4f
commit
96d8d6b8b0
4 changed files with 74 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||||||
|
|
||||||
|
install(FILES pdfsettings.kcfg DESTINATION ${KCFG_INSTALL_DIR}) |
||||||
|
|
||||||
@ -0,0 +1,18 @@ |
|||||||
|
<?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" > |
||||||
|
<kcfgfile name="okular-generator-ghostscriptrc"/> |
||||||
|
<group name="General"> |
||||||
|
<entry key="EnhanceThinLines" type="Enum" > |
||||||
|
<default>No</default> |
||||||
|
<choices> |
||||||
|
<choice name="No" /> |
||||||
|
<choice name="Solid" /> |
||||||
|
<choice name="Shape" /> |
||||||
|
</choices> |
||||||
|
</entry> |
||||||
|
</group> |
||||||
|
</kcfg> |
||||||
|
<!-- vim:set ts=4 --> |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
File=pdfsettings.kcfg |
||||||
|
ClassName=PDFSettings |
||||||
|
Mutators=true |
||||||
|
Singleton=true |
||||||
@ -0,0 +1,49 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<ui version="4.0"> |
||||||
|
<class>PDFSettingsWidget</class> |
||||||
|
<widget class="QWidget" name="PDFSettingsWidget"> |
||||||
|
<layout class="QFormLayout" name="formLayout"> |
||||||
|
<property name="fieldGrowthPolicy"> |
||||||
|
<enum>QFormLayout::ExpandingFieldsGrow</enum> |
||||||
|
</property> |
||||||
|
<item row="0" column="0"> |
||||||
|
<widget class="QLabel" name="label"> |
||||||
|
<property name="text"> |
||||||
|
<string>Enhance thin lines:</string> |
||||||
|
</property> |
||||||
|
<property name="alignment"> |
||||||
|
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> |
||||||
|
</property> |
||||||
|
</widget> |
||||||
|
</item> |
||||||
|
<item row="0" column="1"> |
||||||
|
<widget class="KComboBox" name="kcfg_EnhanceThinLines"> |
||||||
|
<item> |
||||||
|
<property name="text"> |
||||||
|
<string>No</string> |
||||||
|
</property> |
||||||
|
</item> |
||||||
|
<item> |
||||||
|
<property name="text"> |
||||||
|
<string>Solid</string> |
||||||
|
</property> |
||||||
|
</item> |
||||||
|
<item> |
||||||
|
<property name="text"> |
||||||
|
<string>Shape</string> |
||||||
|
</property> |
||||||
|
</item> |
||||||
|
</widget> |
||||||
|
</item> |
||||||
|
</layout> |
||||||
|
</widget> |
||||||
|
<customwidgets> |
||||||
|
<customwidget> |
||||||
|
<class>KComboBox</class> |
||||||
|
<extends>QComboBox</extends> |
||||||
|
<header>kcombobox.h</header> |
||||||
|
</customwidget> |
||||||
|
</customwidgets> |
||||||
|
<resources/> |
||||||
|
<connections/> |
||||||
|
</ui> |
||||||
Loading…
Reference in new issue