Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > media > contrib-release-debug > by-pkgid > 4d4c94c1cf259d8f8e2a7c3821a11962 > files > 100

bsc-debug-4.1.0-2mdv2011.0.i586.rpm

#ifndef INCLUDED_QBtViewItem_h
#define INCLUDED_QBtViewItem_h

/********************************************************************
 * Copyright (C) Piotr Pszczolkowski
 *-------------------------------------------------------------------
 * This file is part of Beesoft Commander.
 *
 * Beesoft Commander 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.
 *
 * Beesoft Commander is distributed in the hope that it will be
 * useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Beesoft Commander; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA  02110-1301  USA
 *-------------------------------------------------------------------
 * Project      : Beesoft Commander
 * File         : QBtViewItem.cpp
 * Author       : Piotr Pszczolkowski
 * Contact      : piotr@beesoft.org
 * Creation date: 29.08.2007
 *******************************************************************/

/*------- include files:
-------------------------------------------------------------------*/
#include <QStandardItem>
#include "QBtFileInfo.h"

/*------- class declaration:
-------------------------------------------------------------------*/
class QBtViewItem : public QStandardItem
{
//******* TYPES *******
public:
//******* CONSTRUCTION / DESTRUCTION *******
public:
   QBtViewItem() : QStandardItem()
   , selected_ ( false )
   , finfo_    ( QBtFileInfo() )
   {}
private:
   QBtViewItem( const QBtViewItem& rhs ) : QStandardItem( rhs )
   , selected_ ( rhs.selected_ )
   , finfo_    ( rhs.finfo_     )
   {}
   QBtViewItem& operator=( const QBtViewItem& rhs )
   {
      if( this != &rhs ) {
         QStandardItem::operator=( rhs );
         selected_ = rhs.selected_;
         finfo_    = rhs.finfo_;
      }
      return *this;
   }

//******* METHODS *******
public:
   bool               selected () const                        { return selected_;        }
   void               selected ( const bool in_selected )      { selected_ = in_selected; }
   const QBtFileInfo& finfo    () const                        { return finfo_;           }
   void               finfo    ( const QBtFileInfo& in_finfo ) { finfo_ = in_finfo;       }
//******* MEMBERS *******
private:
   bool        selected_;
   QBtFileInfo finfo_;
};

#endif // INCLUDED_QBtViewItem_h