/*************************************************************************** * copyright : (C) 2006 Seb Ruiz * **************************************************************************/ /*************************************************************************** * * * 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 IMAGELISTITEM_H #define IMAGELISTITEM_H extern "C" { #include } #include #include #include namespace IpodExport { class ImageListItem : public KListViewItem { public: ImageListItem( QListView *parent, QString const & pathSrc, QString const & name ) : KListViewItem( parent, QString::null/*set below*/, name ) , m_pathSrc( pathSrc ) { setText( 0, pathSrc.section('/', -2, -2) ); } QString pathSrc() const { return m_pathSrc; } private: QString m_pathSrc; }; } #endif // IMAGELISTITEM_H