// rdjackclientlistmodel.cpp // // Data model for Rivendell services // // (C) Copyright 2021 Fred Gleason // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. // // 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, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // #include "rdapplication.h" #include "rdescape_string.h" #include "rdjackclientlistmodel.h" RDJackClientListModel::RDJackClientListModel(const QString &hostname,QObject *parent) : QAbstractTableModel(parent) { d_station_name=hostname; // // Column Attributes // unsigned left=Qt::AlignLeft|Qt::AlignVCenter; // unsigned center=Qt::AlignCenter; // unsigned right=Qt::AlignRight|Qt::AlignVCenter; d_headers.push_back(tr("Client")); d_alignments.push_back(left); d_headers.push_back(tr("Command Line")); d_alignments.push_back(left); updateModel(); } RDJackClientListModel::~RDJackClientListModel() { } QPalette RDJackClientListModel::palette() { return d_palette; } void RDJackClientListModel::setPalette(const QPalette &pal) { d_palette=pal; } void RDJackClientListModel::setFont(const QFont &font) { d_font=font; d_bold_font=font; d_bold_font.setWeight(QFont::Bold); } int RDJackClientListModel::columnCount(const QModelIndex &parent) const { return d_headers.size(); } int RDJackClientListModel::rowCount(const QModelIndex &parent) const { return d_texts.size(); } QVariant RDJackClientListModel::headerData(int section,Qt::Orientation orient, int role) const { if((orient==Qt::Horizontal)&&(role==Qt::DisplayRole)) { return d_headers.at(section); } return QVariant(); } QVariant RDJackClientListModel::data(const QModelIndex &index,int role) const { QString str; int col=index.column(); int row=index.row(); if(row list; for(int i=0;ifirst()) { updateRow(row.row(),q); emit dataChanged(createIndex(row.row(),0), createIndex(row.row(),columnCount())); } delete q; } } void RDJackClientListModel::refresh(unsigned id) { for(int i=0;i texts; RDSqlQuery *q=NULL; QString sql=sqlFields()+ "where "+ "`JACK_CLIENTS`.`STATION_NAME`='"+RDEscapeString(d_station_name)+"' "+ "order by `JACK_CLIENTS`.`ID` "; beginResetModel(); d_texts.clear(); q=new RDSqlQuery(sql); while(q->next()) { d_ids.push_back(0); d_texts.push_back(texts); updateRow(d_texts.size()-1,q); } delete q; endResetModel(); } void RDJackClientListModel::updateRowLine(int line) { if(linefirst()) { updateRow(line,q); } delete q; } } void RDJackClientListModel::updateRow(int row,RDSqlQuery *q) { QList texts; // Description texts.push_back(q->value(1)); // Command Line texts.push_back(q->value(2)); d_ids[row]=q->value(0).toUInt(); d_texts[row]=texts; } QString RDJackClientListModel::sqlFields() const { QString sql=QString("select ")+ "`JACK_CLIENTS`.`ID`," // 00 "`JACK_CLIENTS`.`DESCRIPTION`,"+ // 01 "`JACK_CLIENTS`.`COMMAND_LINE` " // 02 "from `JACK_CLIENTS` "; return sql; }