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/snippet/snippet_part.h

52 lines
891 B

/*
* File : snippet_part.h
*
* Author: Robert Gruber <rgruber@users.sourceforge.net>
*
* Copyright: See COPYING file that comes with this distribution
*/
#ifndef __KDEVPART_SNIPPET_H__
#define __KDEVPART_SNIPPET_H__
#include <tqguardedptr.h>
#include <kdevplugin.h>
class SnippetWidget;
class TDEAboutData;
class KDialogBase;
/*
This is the KDevPlugin for the CodeSnippet feature
For more info read the README.dox file
@author Robert Gruber
*/
class SnippetPart : public KDevPlugin
{
TQ_OBJECT
public:
SnippetPart(TQObject *parent, const char *name, const TQStringList &);
~SnippetPart();
TDEAboutData * aboutData();
TQStringList getAllLanguages();
TQStringList getProjectLanguages();
private:
void setupActions();
TQGuardedPtr<SnippetWidget> m_widget;
public slots:
void slotConfigWidget( KDialogBase *dlg );
void slotShowView();
};
#endif