summaryrefslogtreecommitdiffstats
path: root/kmymoney2/dialogs/tderecentfileitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/dialogs/tderecentfileitem.h')
-rw-r--r--kmymoney2/dialogs/tderecentfileitem.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/kmymoney2/dialogs/tderecentfileitem.h b/kmymoney2/dialogs/tderecentfileitem.h
new file mode 100644
index 0000000..bc89c48
--- /dev/null
+++ b/kmymoney2/dialogs/tderecentfileitem.h
@@ -0,0 +1,56 @@
+/***************************************************************************
+ krecentfileitem.h - description
+ -------------------
+ begin : Wed Jul 30 2003
+ copyright : (C) 2000-2003 by Michael Edwardes
+ email : mte@users.sourceforge.net
+ Javier Campos Morales <javi_c@users.sourceforge.net>
+ Felix Rodriguez <frodriguez@users.sourceforge.net>
+ John C <thetacoturtle@users.sourceforge.net>
+ Thomas Baumgart <ipwizard@users.sourceforge.net>
+ Kevin Tambascio <ktambascio@users.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 KRECENTFILEITEM_H
+#define KRECENTFILEITEM_H
+
+// ----------------------------------------------------------------------------
+// QT Includes
+#include <tqwidget.h>
+#include <tqiconview.h>
+
+// ----------------------------------------------------------------------------
+// KDE Includes
+#include <kurl.h>
+
+// ----------------------------------------------------------------------------
+// Project Includes
+
+
+
+/**
+ * @author Michael Edwardes
+ */
+
+class TDERecentFileItem : public TQIconViewItem {
+public:
+ TDERecentFileItem(const TQString& url, TQIconView* parent, const TQString& text, const TQPixmap& icon);
+ ~TDERecentFileItem();
+ TQString fileURL(void) const { return m_url; }
+
+ bool move( int x, int y );
+
+private:
+ TQString m_url;
+ TQWidget* m_parent;
+};
+
+#endif