summaryrefslogtreecommitdiffstats
path: root/chalk/doc/howtofilters.txt
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-26 00:41:16 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-26 00:41:16 +0000
commit698569f8428ca088f764d704034a1330517b98c0 (patch)
treebf45be6946ebbbee9cce5a5bcf838f4c952d87e6 /chalk/doc/howtofilters.txt
parent2785103a6bd4de55bd26d79e34d0fdd4b329a73a (diff)
downloadkoffice-698569f8428ca088f764d704034a1330517b98c0.tar.gz
koffice-698569f8428ca088f764d704034a1330517b98c0.zip
Finish rebranding of Krita as Chalk
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238363 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'chalk/doc/howtofilters.txt')
-rw-r--r--chalk/doc/howtofilters.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/chalk/doc/howtofilters.txt b/chalk/doc/howtofilters.txt
new file mode 100644
index 00000000..09deabf6
--- /dev/null
+++ b/chalk/doc/howtofilters.txt
@@ -0,0 +1,30 @@
+The goal of this howto is to explain how to create a filter for chalk
+
+
+2) using Qt/Designer for the ConfigurationWidget
+
+Just copy the following in a file named (for instance) myfiltercw.ui :
+<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
+<class>Form1</class>
+<widget class="KisFilterConfigurationWidget">
+ <property name="name">
+ <cstring>kisFilterConfigurationWidget1</cstring>
+ </property>
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>359</width>
+ <height>251</height>
+ </rect>
+ </property>
+ <property name="caption">
+ <string>kisFilterConfigurationWidget1</string>
+ </property>
+</widget>
+<tqlayoutdefaults spacing="6" margin="11"/>
+</UI>
+
+And then open Qt/Designer
+
+NOTE: it would be nicer if I knew how to copy (using autoconf/automake) this file in $(QTDIR)/tools/designer/templates \ No newline at end of file