/*************************************************************************** krecentfileitem.h - description ------------------- begin : Wed Jul 30 2003 copyright : (C) 2000-2003 by Michael Edwardes email : mte@users.sourceforge.net Javier Campos Morales Felix Rodriguez John C Thomas Baumgart Kevin Tambascio ***************************************************************************/ /*************************************************************************** * * * 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 #include // ---------------------------------------------------------------------------- // KDE Includes #include // ---------------------------------------------------------------------------- // 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