summaryrefslogtreecommitdiffstats
path: root/src/kile/docpart.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 03:05:17 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 03:05:17 +0000
commit2c945cd914550233ed352ff195afeb4dd793f122 (patch)
tree4796bfab5733942b90b5a66bb05655be5fdcca03 /src/kile/docpart.h
downloadkile-2c945cd914550233ed352ff195afeb4dd793f122.tar.gz
kile-2c945cd914550233ed352ff195afeb4dd793f122.zip
Added abandoned KDE3 version of Kile
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kile@1088055 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kile/docpart.h')
-rw-r--r--src/kile/docpart.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/kile/docpart.h b/src/kile/docpart.h
new file mode 100644
index 0000000..b031934
--- /dev/null
+++ b/src/kile/docpart.h
@@ -0,0 +1,50 @@
+/***************************************************************************
+ begin : Sun Jul 29 2001
+ copyright : (C) 2001 - 2003 by Brachet Pascal, 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 DOCPART_H
+#define DOCPART_H
+
+#include <khtml_part.h>
+#include <qstringlist.h>
+
+class DocumentationViewer : public KHTMLPart
+{
+ Q_OBJECT
+
+public:
+ DocumentationViewer(QWidget *parent=0, const char *name=0);
+ ~DocumentationViewer();
+ bool backEnable();
+ bool forwardEnable();
+
+public slots:
+ void home();
+ void forward();
+ void back();
+ void addToHistory( const QString & url );
+
+signals:
+ void updateStatus( bool back, bool forward );
+
+protected:
+ virtual void urlSelected( const QString &url, int button=0, int state=0,const QString &_target= QString::null, KParts::URLArgs args = KParts::URLArgs());
+
+private:
+ QStringList m_history;
+ unsigned int m_hpos;
+
+};
+
+#endif