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.
52 lines
886 B
52 lines
886 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 KAboutData;
|
|
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
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
|
|
SnippetPart(TQObject *parent, const char *name, const TQStringList &);
|
|
~SnippetPart();
|
|
KAboutData * aboutData();
|
|
TQStringList getAllLanguages();
|
|
TQStringList getProjectLanguages();
|
|
|
|
private:
|
|
void setupActions();
|
|
|
|
TQGuardedPtr<SnippetWidget> m_widget;
|
|
|
|
public slots:
|
|
void slotConfigWidget( KDialogBase *dlg );
|
|
void slotShowView();
|
|
};
|
|
|
|
|
|
#endif
|