Remove libqxt from our svn. We don't depend on it anymore thanks to
[quassel.git] / src / contrib / libqxt-2007-10-24 / src / gui / qxttablewidgetitem.cpp
diff --git a/src/contrib/libqxt-2007-10-24/src/gui/qxttablewidgetitem.cpp b/src/contrib/libqxt-2007-10-24/src/gui/qxttablewidgetitem.cpp
deleted file mode 100644 (file)
index 0395afd..0000000
+++ /dev/null
@@ -1,105 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) Qxt Foundation. Some rights reserved.
-**
-** This file is part of the QxtGui module of the Qt eXTension library
-**
-** This library is free software; you can redistribute it and/or modify it
-** under the terms of th Common Public License, version 1.0, as published by
-** IBM.
-**
-** This file is provided "AS IS", without WARRANTIES OR CONDITIONS OF ANY
-** KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY
-** WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR
-** FITNESS FOR A PARTICULAR PURPOSE.
-**
-** You should have received a copy of the CPL along with this file.
-** See the LICENSE file and the cpl1.0.txt file included with the source
-** distribution for more information. If you did not receive a copy of the
-** license, contact the Qxt Foundation.
-**
-** <http://libqxt.sourceforge.net>  <foundation@libqxt.org>
-**
-****************************************************************************/
-#include "qxttablewidgetitem.h"
-#include "qxttablewidget.h"
-
-/*!
-    \class QxtTableWidgetItem QxtTableWidgetItem
-    \ingroup QxtGui
-    \brief An extended QTableWidgetItem.
-
-    QxtTableWidgetItem provides means for offering check state change signals and
-    convenience methods for testing and setting flags.
-
-    \sa QxtTableWidget
- */
-
-
-QxtTableWidgetItem::QxtTableWidgetItem(int type)
-        : QTableWidgetItem(type)
-{}
-
-QxtTableWidgetItem::QxtTableWidgetItem(const QString& text, int type)
-        : QTableWidgetItem(text, type)
-{}
-
-QxtTableWidgetItem::QxtTableWidgetItem(const QIcon& icon, const QString& text, int type)
-        : QTableWidgetItem(text, type)
-{
-    setIcon(icon); // for 4.1 compatibility
-}
-
-QxtTableWidgetItem::QxtTableWidgetItem(const QTableWidgetItem& other)
-        : QTableWidgetItem(other)
-{}
-
-QxtTableWidgetItem::~QxtTableWidgetItem()
-{}
-
-/*!
-    Returns \b true if the \a flag is set, otherwise \b false.
-
-    \sa setFlag(), QTableWidgetItem::flags(), Qt::ItemFlag
- */
-bool QxtTableWidgetItem::testFlag(Qt::ItemFlag flag) const
-{
-    return (flags() & flag);
-}
-
-/*!
-    If \a enabled is \b true, the item \a flag is enabled; otherwise, it is disabled.
-
-    \sa testFlag(), QTableWidgetItem::setFlags(), Qt::ItemFlag
- */
-void QxtTableWidgetItem::setFlag(Qt::ItemFlag flag, bool enabled)
-{
-    if (enabled)
-        setFlags(flags() | flag);
-    else
-        setFlags(flags() & ~flag);
-}
-
-void QxtTableWidgetItem::setData(int role, const QVariant& value)
-{
-    if (role == Qt::CheckStateRole)
-    {
-        const Qt::CheckState newState = static_cast<Qt::CheckState>(value.toInt());
-        const Qt::CheckState oldState = static_cast<Qt::CheckState>(data(role).toInt());
-
-        QTableWidgetItem::setData(role, value);
-
-        if (newState != oldState)
-        {
-            QxtTableWidget* table = qobject_cast<QxtTableWidget*>(tableWidget());
-            if (table)
-            {
-                emit table->itemCheckStateChanged(this);
-            }
-        }
-    }
-    else
-    {
-        QTableWidgetItem::setData(role, value);
-    }
-}