Development/Tutorials/Decibel/Handling TextChannels: Difference between revisions

From KDE TechBase
No edit summary
No edit summary
Line 3: Line 3:


This tutorial is based on the source code of the simpleclient demo included in decibel. An explanation of using the simpleclient demo can be [[Development/Tutorials/Decibel/GettingStarted#simpleclient|found here]].
This tutorial is based on the source code of the simpleclient demo included in decibel. An explanation of using the simpleclient demo can be [[Development/Tutorials/Decibel/GettingStarted#simpleclient|found here]].
==ChannelHandler class==
The first class we will need to create is an implementation of the Decibel::ChannelHandler interface.

Revision as of 07:31, 11 March 2008

Abstract

This tutorial will walk you through the process of creating a simple application that uses Decibel's TextChannels to communicate via arbitrary instant messaging networks using telepathy. From the result of this tutorial, only a few more lines of code are needed to produce a functioning text based instant messaging client.

This tutorial is based on the source code of the simpleclient demo included in decibel. An explanation of using the simpleclient demo can be found here.

ChannelHandler class

The first class we will need to create is an implementation of the Decibel::ChannelHandler interface.