diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 17:25:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 17:25:32 -0600 |
commit | 89d8c2baa9b51d8da8511a54b9962155aa29c4c0 (patch) | |
tree | 5af383305d44c31dd8e499fe01c067f32e101029 /kmymoney2/dialogs/tderecentfileitem.h | |
parent | a6000c6f2f1a03b34f15d1948f63f0c894f09451 (diff) | |
download | kmymoney-89d8c2baa9b51d8da8511a54b9962155aa29c4c0.tar.gz kmymoney-89d8c2baa9b51d8da8511a54b9962155aa29c4c0.zip |
Fix FTBFS
Diffstat (limited to 'kmymoney2/dialogs/tderecentfileitem.h')
-rw-r--r-- | kmymoney2/dialogs/tderecentfileitem.h | 56 |
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 |