summaryrefslogtreecommitdiffstats
path: root/krusader/Panel/krpreviewpopup.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-22 18:58:28 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-22 18:58:28 +0000
commit83b9bf0e3bfb1d842b10b80bbe749095b2c661a1 (patch)
treeb05b1793361693ae88106648c2a953bed988f423 /krusader/Panel/krpreviewpopup.h
downloadkrusader-83b9bf0e3bfb1d842b10b80bbe749095b2c661a1.tar.gz
krusader-83b9bf0e3bfb1d842b10b80bbe749095b2c661a1.zip
Added old KDE3 version of Krusader
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/krusader@1094427 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'krusader/Panel/krpreviewpopup.h')
-rw-r--r--krusader/Panel/krpreviewpopup.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/krusader/Panel/krpreviewpopup.h b/krusader/Panel/krpreviewpopup.h
new file mode 100644
index 0000000..91b852c
--- /dev/null
+++ b/krusader/Panel/krpreviewpopup.h
@@ -0,0 +1,48 @@
+/***************************************************************************
+ krpreviewpopup.h - description
+ -------------------
+ begin : Sun Dec 29 2002
+ copyright : (C) 2002 by Shie Erlich & Rafi Yanai
+ web site : http://krusader.sourceforge.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 KRPREVIEWPOPUP_H
+#define KRPREVIEWPOPUP_H
+
+#include <qpopupmenu.h>
+#include <qpixmap.h>
+#include <kfileitem.h>
+#include <kurl.h>
+
+/**
+ *@author Shie Erlich & Rafi Yanai
+ */
+
+class KrPreviewPopup : public QPopupMenu {
+ Q_OBJECT
+public:
+ KrPreviewPopup();
+ ~KrPreviewPopup();
+
+ void setUrls(const KURL::List* urls);
+public slots:
+ void addPreview(const KFileItem* file,const QPixmap& preview);
+ void view(int id);
+
+protected:
+ KFileItemList files;
+ int id;
+ bool noPreview;
+ KURL::List availablePreviews;
+};
+
+#endif