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.
46 lines
1.1 KiB
46 lines
1.1 KiB
14 years ago
|
#ifndef ViewStatusMsg_DCOP_INTERFACE_H
|
||
|
#define ViewStatusMsg_DCOP_INTERFACE_H
|
||
15 years ago
|
|
||
|
#include <dcopobject.h>
|
||
|
#include <dcopref.h>
|
||
14 years ago
|
#include <tqstringlist.h>
|
||
|
#include <tqcstring.h>
|
||
15 years ago
|
//#include "editdcopinterface.moc"
|
||
|
namespace KTextEditor
|
||
|
{
|
||
14 years ago
|
class ViewStatusMsgInterface;
|
||
15 years ago
|
/**
|
||
14 years ago
|
This is the main interface to the ViewStatusMsgInterface of KTextEdit.
|
||
15 years ago
|
This will provide a consistant dcop interface to all KDE applications that use it.
|
||
14 years ago
|
@short DCOP interface to ViewStatusMsgInterface.
|
||
15 years ago
|
@author Ian Reinhart Geiser <geiseri@kde.org>
|
||
|
*/
|
||
14 years ago
|
class KTEXTEDITOR_EXPORT ViewStatusMsgDCOPInterface : virtual public DCOPObject
|
||
15 years ago
|
{
|
||
|
K_DCOP
|
||
|
|
||
|
public:
|
||
|
/**
|
||
|
Construct a new interface object for the text editor.
|
||
14 years ago
|
@param Parent the parent ViewStatusMsgInterface object
|
||
15 years ago
|
that will provide us with the functions for the interface.
|
||
14 years ago
|
@param name the QObject's name
|
||
15 years ago
|
*/
|
||
14 years ago
|
ViewStatusMsgDCOPInterface( ViewStatusMsgInterface *Parent, const char *name );
|
||
15 years ago
|
/**
|
||
|
Destructor
|
||
|
Cleans up the object.
|
||
|
*/
|
||
14 years ago
|
virtual ~ViewStatusMsgDCOPInterface();
|
||
15 years ago
|
k_dcop:
|
||
14 years ago
|
uint viewStatusMsgInterfaceNumber ();
|
||
|
void viewStatusMsg (class TQString msg) ;
|
||
15 years ago
|
|
||
|
private:
|
||
14 years ago
|
ViewStatusMsgInterface *m_parent;
|
||
15 years ago
|
};
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|