summaryrefslogtreecommitdiffstats
path: root/src/knowitlink.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 02:48:30 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 02:48:30 +0000
commite1481e0a7c066357dfb67136f331b5f069d94f3c (patch)
tree19599adc9a54e8295402ceb25d6f2ea42edea439 /src/knowitlink.h
downloadknowit-e1481e0a7c066357dfb67136f331b5f069d94f3c.tar.gz
knowit-e1481e0a7c066357dfb67136f331b5f069d94f3c.zip
Added abandoned KDE3 version of knowit
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/knowit@1091582 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/knowitlink.h')
-rw-r--r--src/knowitlink.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/knowitlink.h b/src/knowitlink.h
new file mode 100644
index 0000000..2c9b712
--- /dev/null
+++ b/src/knowitlink.h
@@ -0,0 +1,45 @@
+/***************************************************************************
+ knowitlink.h - description
+ -------------------
+ begin : pi� cze 27 2003
+ copyright : (C) 2003 by Micha� Rudolf
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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 __KNOWITLINK_H__
+#define __KNOWITLINK_H__
+
+#include <kdialogbase.h>
+
+class KComboBox;
+class KLineEdit;
+class TNoteLink;
+class QToolButton;
+
+class KnowitLinkDialog : public KDialogBase {
+ Q_OBJECT
+protected:
+ KComboBox* linkType;
+ KLineEdit* linkValue;
+ KLineEdit* linkDescription;
+ QToolButton* browse;
+public:
+ KnowitLinkDialog();
+ ~KnowitLinkDialog();
+ bool modifyLink(TNoteLink& link);
+public slots:
+ void slotBrowse();
+ void slotTypeChanged(int index);
+};
+
+
+#endif