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.
kile/src/kile/kileappIface.h

37 lines
1.5 KiB

/***************************************************************************
begin : sam sep 28 2002
copyright : (C) 2002 - 2003 by Pascal Brachet, 2003 Jeroen Wijnhout
email : Jeroen.Wijnhout@kdemail.net
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef KILEAPPDCOPIFACE_H
#define KILEAPPDCOPIFACE_H
#include <dcopobject.h>
class KileAppDCOPIface : virtual public DCOPObject
{
K_DCOP
k_dcop:
virtual void openDocument(const TQString &)=0;
virtual void insertText(const TQString &)=0;
virtual void fileSelected(const TQString &)=0; //backwards compatibility
virtual void closeDocument()=0;
virtual void openProject(const TQString &)=0;
virtual void setLine( const TQString &)=0;
virtual void setActive()=0;
virtual int run(const TQString &)=0;
virtual int runWith(const TQString &, const TQString &)=0;
};
#endif