You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/kivio/plugins/kiviosmlconnector
Michele Calgaro a6b8cc41e2
Use tdestandarddirs.h
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
4 months ago
..
sml_connector Replace Q_OBJECT with TQ_OBJECT 2 years ago
Makefile.am Added old abandoned KDE3 version of koffice 16 years ago
README Added old abandoned KDE3 version of koffice 16 years ago
kiviosmlconnector.desktop Update XDG information in support of bug report 892. 13 years ago
kiviosmlconnector.rc Added old abandoned KDE3 version of koffice 16 years ago
plugin.cpp Rename KInstance and KAboutData to avoid conflicts with KDE4 13 years ago
plugin.h Replace Q_OBJECT with TQ_OBJECT 2 years ago
tool_connector.cpp Use tdestandarddirs.h 4 months ago
tool_connector.h Replace Q_OBJECT with TQ_OBJECT 2 years ago

README

DESIGN:
	This plugin will create a connector from a path created from a series of points.  At each point a handle will be placed, this includes connection points and control handles.

	Arrows are only available at the end points and only end points can connect to other shapes.

Example SML:
<KivioConnector>
	<Type data="Xor"/>
	<Points>
		<KivioPoint x="40" y="50" type="bezier"/>
		<KivioPoint x="30" y="40" type="bezier"/>
		<KivioPoint x="10" y="40" type="bezier"/>
		<KivioPoint x="0" y="50" type="bezier"/>
	</Points>
</KivioConnector
This will create an arc shaped connector with handles at the control points and handles at the end points