Development/Tutorials: Difference between revisions
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
:''Tips, tools and techniques to apply when debugging your KDE application'' | :''Tips, tools and techniques to apply when debugging your KDE application'' | ||
;[[Development/Tutorials/Unittests|Writing Unittests for Qt4 and KDE4 with QTestLib]] ([http://developer.kde.org/documentation/tutorials/writingunittests/writingunittests.html Original link]) | |||
:''Tutorial by [mailto:[email protected] Brad Hards] that describes how to write unit tests using the QTestLib framework. It is presented as an example based tutorial, and is still under development.'' | |||
== Managing Configuration Data With KConfig == | |||
;[[/Using KConfig XT|Using KConfig XT]] | |||
:''Tutorial on how to efficiently use the KConfig XT framework (available in KDE 3.2).'' | |||
;[http://developer.kde.org/documentation/tutorials/kiosk/index.html Understanding KDE Kiosk mode] | |||
:''Tutorial on how KDE's kiosk mode is implemented and how you can get started working with it.'' | |||
== | == Components and Plugins == | ||
;[http:// | === Kicker === | ||
:'' | ;[http://developer.kde.org/documentation/tutorials/dot/panel-applets.html Extending the KDE Panel] | ||
:''This tutorial teaches you how to implement a simple panel applet using the panel applet API. It is a suitable task for an introduction to KDE programming.'' | |||
=== | === KWin === | ||
;[http:// | ;[http://www.usermode.org/docs/kwintheme.html KWin decoration styles] | ||
:'' | :''Tutorial on creating decoration plugins for the KWin window manager (KDE 3.2 and later).'' | ||
== Transport Neutral File Access Using KIO == | |||
== | |||
;[http://www.heise.de/ct/english/01/05/242/ KIO Tutorial] ([http://www.heise.de/ct/01/05/242/default.shtml German version]) | ;[http://www.heise.de/ct/english/01/05/242/ KIO Tutorial] ([http://www.heise.de/ct/01/05/242/default.shtml German version]) | ||
Line 46: | Line 45: | ||
:(Somewhat dated, but might still be useful). | :(Somewhat dated, but might still be useful). | ||
== Application Automation and Scripting == | |||
=== Konqueror === | |||
;[http://developer.kde.org/documentation/tutorials/dot/servicemenus.html Creating Konqueror Service Menus] | ;[http://developer.kde.org/documentation/tutorials/dot/servicemenus.html Creating Konqueror Service Menus] | ||
:''This tutorial shows you how to create mimetype-specific actions in Konqueror's context menu (aka "servicemenus")'' | :''This tutorial shows you how to create mimetype-specific actions in Konqueror's context menu (aka "servicemenus")'' | ||
;[[/ | == KDE Development In Languages Other Than C++== | ||
:''Tutorial | |||
=== Python === | |||
;[http://www.xs4all.nl/~bsarempt/python/tutorial.html KDE-Python tutorial] | |||
:''A python version of Daniel's KDE tutorial by Boudewijn Rempt.'' | |||
=== Ruby === | |||
;[http://developer.kde.org/language-bindings/ruby/kde3tutorial/index.html KDE Ruby Korundum tutorial] | |||
:''A ruby version of Antonio Larrosa Jiménez's KDE tutorial by Richard Dale. See the [http://developer.kde.org/language-bindings/ruby/index.html Ruby Developers Corner] for Qt tutorials and other info.'' | |||
=== Shell === | |||
;[http://developer.kde.org/documentation/tutorials/kdialog/t1.html Shell Scripting with KDE dialogs] ([http://developer.kde.org/documentation/tutorials/kdialog-german/t1.html German Version]) | |||
:''Tutorial by [mailto:[email protected] Brad Hards] that describes how to use KDE dialogs in shell scripts with kdialog. It is presented as an example based tutorial.'' | |||
== Other tutorials == | |||
;[http:// | ;[http://developer.kde.org/documentation/tutorials/kdeeduplot/kdeeduplot_tutorial.tar.bz2 Using and extending the KDE EDU Plot widget (docbook archive)] | ||
:'' | :''This tutorial introduces Jason Harris' KPlotWidget that is part of the KDE EDU package. Contains information about defining your own widget in QT / KDevelop designer and about subclassing widgets and overriding member functions to extend functionality.'' | ||
;[http://developer.kde.org/documentation/tutorials/knewstuffsecure/index.html KNewStuffSecure: a secure way to share resources] | ;[http://developer.kde.org/documentation/tutorials/knewstuffsecure/index.html KNewStuffSecure: a secure way to share resources] | ||
:''Tutorial showing how to share resources in a secured way (KDE 3.4 and later).'' | :''Tutorial showing how to share resources in a secured way (KDE 3.4 and later).'' | ||
== KDE2 and KDE3 Materials == | == KDE2 and KDE3 Materials == |
Revision as of 22:19, 14 December 2006
Tutorials are the fastest way of finding out what KDE will do for you, and how to do it. Here is a list of currently available tutorials.
Getting started
- Using Subversion with KDE
- A quick KDE-specific introduction how to work with KDE's version control system
- KDE 4 Programming Tutorial
- You are interested in writing applications with KDE 4? Here you get at tutorial which leads you from the beginners stuff to the advanced techniques.
- Debugging your application
- Tips, tools and techniques to apply when debugging your KDE application
- Writing Unittests for Qt4 and KDE4 with QTestLib (Original link)
- Tutorial by Brad Hards that describes how to write unit tests using the QTestLib framework. It is presented as an example based tutorial, and is still under development.
Managing Configuration Data With KConfig
- Using KConfig XT
- Tutorial on how to efficiently use the KConfig XT framework (available in KDE 3.2).
- Understanding KDE Kiosk mode
- Tutorial on how KDE's kiosk mode is implemented and how you can get started working with it.
Components and Plugins
Kicker
- Extending the KDE Panel
- This tutorial teaches you how to implement a simple panel applet using the panel applet API. It is a suitable task for an introduction to KDE programming.
KWin
- KWin decoration styles
- Tutorial on creating decoration plugins for the KWin window manager (KDE 3.2 and later).
Transport Neutral File Access Using KIO
- KIO Tutorial (German version)
- Tutorial by KDE developers Carsten Pfeiffer and Stephan Kulow for the c't Magazine, giving an introduction into the KDE IO Architecture and an example KIO Slave.
- Using IOSlaves
- IOSlaves are the subprocesses KDE uses to fetch remote files without blocking the user interface. This document discusses how they work and how to use them.
- (Somewhat dated, but might still be useful).
Application Automation and Scripting
Konqueror
- Creating Konqueror Service Menus
- This tutorial shows you how to create mimetype-specific actions in Konqueror's context menu (aka "servicemenus")
KDE Development In Languages Other Than C++
Python
- KDE-Python tutorial
- A python version of Daniel's KDE tutorial by Boudewijn Rempt.
Ruby
- KDE Ruby Korundum tutorial
- A ruby version of Antonio Larrosa Jiménez's KDE tutorial by Richard Dale. See the Ruby Developers Corner for Qt tutorials and other info.
Shell
- Shell Scripting with KDE dialogs (German Version)
- Tutorial by Brad Hards that describes how to use KDE dialogs in shell scripts with kdialog. It is presented as an example based tutorial.
Other tutorials
- Using and extending the KDE EDU Plot widget (docbook archive)
- This tutorial introduces Jason Harris' KPlotWidget that is part of the KDE EDU package. Contains information about defining your own widget in QT / KDevelop designer and about subclassing widgets and overriding member functions to extend functionality.
- KNewStuffSecure: a secure way to share resources
- Tutorial showing how to share resources in a secured way (KDE 3.4 and later).
KDE2 and KDE3 Materials
- KDE3 Tutorials
- These tutorials cover topics related to KDE3.
- KDE2 Tutorials
- These tutorials cover topics related to KDE2..