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.
124 lines
4.3 KiB
124 lines
4.3 KiB
/***************************************************************************
|
|
* Copyright (C) 2004 by Alexander Dymo *
|
|
* cloudtemple@mksat.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. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
***************************************************************************/
|
|
#ifndef __KDEVPART_DOCUMENTATION_H__
|
|
#define __KDEVPART_DOCUMENTATION_H__
|
|
|
|
#include <tqguardedptr.h>
|
|
#include <kdevplugin.h>
|
|
|
|
|
|
class FindDocumentation;
|
|
class DocumentationWidget;
|
|
class IndexBox;
|
|
class TDEConfig;
|
|
class KDialogBase;
|
|
class ConfigWidgetProxy;
|
|
class DocumentationPlugin;
|
|
class ProjectDocumentationPlugin;
|
|
class KURL;
|
|
class Context;
|
|
class TQPopupMenu;
|
|
|
|
/*
|
|
Please read the README.dox file for more info about this part
|
|
*/
|
|
class DocumentationPart : public KDevPlugin
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
enum ContextFeature { Finder, IndexLookup, FullTextSearch, GotoMan, GotoInfo };
|
|
|
|
DocumentationPart(TQObject *parent, const char *name, const TQStringList &);
|
|
~DocumentationPart();
|
|
|
|
void emitIndexSelected(IndexBox *indexBox);
|
|
void emitBookmarkLocation(const TQString &title, const KURL &url);
|
|
bool configure(int page = 0);
|
|
|
|
bool hasContextFeature(ContextFeature feature);
|
|
void setContextFeature(ContextFeature feature, bool b);
|
|
|
|
bool isAssistantUsed() const;
|
|
void setAssistantUsed(bool b);
|
|
|
|
public slots:
|
|
void lookInDocumentationIndex();
|
|
void lookInDocumentationIndex(const TQString &term);
|
|
void contextLookInDocumentationIndex();
|
|
void contextFindDocumentation();
|
|
void findInDocumentation();
|
|
void findInDocumentation(const TQString &term);
|
|
void searchInDocumentation();
|
|
void searchInDocumentation(const TQString &term);
|
|
void contextSearchInDocumentation();
|
|
void manPage();
|
|
void manPage(const TQString &term);
|
|
void contextManPage();
|
|
void infoPage();
|
|
void infoPage(const TQString &term);
|
|
void contextInfoPage();
|
|
void projectOpened();
|
|
void projectClosed();
|
|
|
|
signals:
|
|
void indexSelected(IndexBox *indexBox);
|
|
void bookmarkLocation(const TQString &title, const KURL &url);
|
|
|
|
protected:
|
|
void loadDocumentationPlugins();
|
|
TDEConfig *config();
|
|
void setupActions();
|
|
void loadSettings();
|
|
void saveProjectDocumentationInfo();
|
|
void checkLastVersion();
|
|
|
|
TQCString startAssistant();
|
|
void activateAssistantWindow(const TQCString &ref);
|
|
void callAssistant(const TQCString &interface, const TQCString &method);
|
|
void callAssistant(const TQCString &interface, const TQCString &method, const TQString &dataStr);
|
|
|
|
protected slots:
|
|
void insertConfigWidget(const KDialogBase *dlg, TQWidget *page, unsigned int pageNo);
|
|
void contextMenu(TQPopupMenu *popup, const Context *context);
|
|
|
|
private slots:
|
|
void init();
|
|
|
|
private:
|
|
TQGuardedPtr<DocumentationWidget> m_widget;
|
|
ConfigWidgetProxy *m_configProxy;
|
|
|
|
TQValueList<DocumentationPlugin*> m_plugins;
|
|
ProjectDocumentationPlugin *m_projectDocumentationPlugin;
|
|
ProjectDocumentationPlugin *m_userManualPlugin;
|
|
|
|
TQString m_contextStr;
|
|
bool m_hasIndex;
|
|
bool m_assistantUsed;
|
|
|
|
friend class DocGlobalConfigWidget;
|
|
friend class DocProjectConfigWidget;
|
|
friend class SearchView;
|
|
friend class FindDocumentation;
|
|
};
|
|
|
|
#endif
|