1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/************************************************************************
* *
* Copyright 2010 Andreas Pakulat <apaku@gmx.de> *
* *
* 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 or version 3 of the License, or *
* (at your option) any later version. *
* *
* This program 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 this program; if not, see <http://www.gnu.org/licenses/>. *
************************************************************************/
#include "definesmodel.h"
#include <KLocalizedString>
using namespace KDevelop;
DefinesModel::DefinesModel( QObject* parent )
: QAbstractTableModel( parent )
{
}
QVariant DefinesModel::data( const QModelIndex& index, int role ) const
{
if( !index.isValid() || ( role != Qt::DisplayRole && role != Qt::EditRole ) ) {
return QVariant();
}
if( index.row() < 0 || index.row() >= rowCount() || index.column() < 0 || index.column() >= columnCount() ) {
return QVariant();
}
// Only show the hint for display, once the user goes into edit mode leave an empty line
// makes the setData check easier and follows common behaviour of this in lineedits etc.
if( index.row() == m_defines.count() && index.column() == 0 && role == Qt::DisplayRole ) {
return i18n( "Double-click here to insert a new define to be used for the path" );
} else if( index.row() < m_defines.count() ) {
switch( index.column() ) {
case 0:
return m_defines.at( index.row() ).first;
case 1:
return m_defines.at( index.row() ).second;
default:
Q_ASSERT_X( 0, "DefinesModel::data", "Invalid column requested" );
break;
}
}
return QVariant();
}
int DefinesModel::rowCount( const QModelIndex& parent ) const
{
if( parent.isValid() ) {
return 0;
}
return m_defines.count() + 1;
}
int DefinesModel::columnCount(const QModelIndex& parent) const
{
if( parent.isValid() ) {
return 0;
}
return 2;
}
QVariant DefinesModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if( orientation == Qt::Horizontal && role == Qt::DisplayRole ) {
switch( section ) {
case 0:
return i18nc("@title:column", "Define");
case 1:
return i18nc("@title:column", "Value");
default:
Q_ASSERT_X( 0, "DefinesModel::headerData", "Invalid column requested" );
break;
}
}
return QVariant();
}
bool DefinesModel::setData( const QModelIndex& index, const QVariant& value, int role )
{
if( !index.isValid() || role != Qt::EditRole ) {
return false;
}
if( index.row() < 0 || index.row() >= rowCount() || index.column() < 0 || index.column() >= columnCount() ) {
return false;
}
if( index.row() == m_defines.count() ) {
if( index.column() == 0 && !value.toString().isEmpty() ) {
beginInsertRows( QModelIndex(), m_defines.count(), m_defines.count() );
m_defines << qMakePair<QString,QString>(value.toString(), QString());
endInsertRows();
}
} else {
switch( index.column() ) {
case 0:
m_defines[ index.row() ].first = value.toString();
break;
case 1:
m_defines[ index.row() ].second = value.toString();
break;
default:
Q_ASSERT_X( 0, "DefinesModel::setData", "Invalid column requested" );
return false;
}
emit dataChanged( index, index );
return true;
}
return false;
}
Qt::ItemFlags DefinesModel::flags( const QModelIndex& index ) const
{
if( !index.isValid() ) {
return Qt::NoItemFlags;
}
if( index.row() == m_defines.count() && index.column() == 1 ) {
return Qt::NoItemFlags;
}
return Qt::ItemFlags( Qt::ItemIsEditable | Qt::ItemIsSelectable | Qt::ItemIsEnabled );
}
Defines DefinesModel::defines() const
{
Defines ret;
ret.reserve(m_defines.size());
for (const auto& pair : m_defines) {
ret[pair.first] = pair.second;
}
return ret;
}
void DefinesModel::setDefines(const Defines& includes )
{
beginResetModel();
m_defines.clear();
m_defines.reserve(includes.size());
for ( auto it = includes.begin(); it != includes.end(); ++it ) {
m_defines << qMakePair<QString,QString>( it.key(), it.value() );
}
endResetModel();
}
bool DefinesModel::removeRows( int row, int count, const QModelIndex& parent )
{
if( row >= 0 && count > 0 && row < m_defines.count() ) {
beginRemoveRows( parent, row, row + count - 1 );
for( int i = 0; i < count; ++i ) {
m_defines.removeAt( row );
}
endRemoveRows();
return true;
}
return false;
}
|