You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/parts/scripting
Michele Calgaro 35fbd60457
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
4 months ago
..
CMakeLists.txt Desktop file translations: 4 years ago
Makefile.am Revert "Finish renaming tdevelop components" 10 years ago
README Update XDG information in support of bug report 892. 12 years ago
kdevscripting.desktop Desktop file translations: 4 years ago
kdevscripting.rc Revert "Finish renaming tdevelop components" 10 years ago
scriptingglobalconfig.cpp Rename common header files for consistency with class renaming 11 years ago
scriptingglobalconfig.h Replace Q_OBJECT with TQ_OBJECT 10 months ago
scriptingglobalconfigbase.ui Add includes to UI files to resolve FTBFS 6 years ago
scriptingpart.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 4 months ago
scriptingpart.h Replace Q_OBJECT with TQ_OBJECT 10 months ago

README

KScript In KDevelop

KScriptInterface allows us to have a generic way to add scripting languages to TDE applications.  KScriptInterface is not really a scripting language per say, but an interface so that applications can embed scripting languages without explicitly linking to them.  This allows all runtime linkage to the different interpreters.  Currently the most effective way for scripts to communicate with applications is via DCOP.  KScriptInterface script engines provide some convinences methods to access the dcop interfaces of the embedding application.  

In KDevelop we have the ability to use scripts written for Kate, since the KateText interface is fully exported to DCOP.  By default KDevelop will import Kate scripts.  Users can also add other search paths for loading scripts.

To add a new script to KDevelop you need two parts.  The first part is a simple desktop file that has the meta-information for the script.  The basic format is like this:
[Desktop Entry]
Encoding=UTF-8
Type=Service
Name=Import Weather
Comment=Import current weather icon graphic into an album.
Type=ShellScript/bash
X-TDE-ScriptName=importweather.sh

The "Name" is the part that will appear in the TDevelop "Scripts" menu, and the "X-TDE-ScriptName" is the name of the script you wish to attach to that menu action.  The last part the "Type" is the type of the script runner you wish to execute the script with.
                          
The second part is the actual script that has a script runner.  Currently shell and KJSEmbed are supported, but Kommander support is rumored to be happening.  There are also perl and python script runners in kdenonbeta.