// rdreplcartlistmodel.cpp // // Data model for replicator carts // // (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 "rdreplcartlistmodel.h" RDReplCartListModel::RDReplCartListModel(QObject *parent) : QAbstractTableModel(parent) { // // Column Attributes // unsigned left=Qt::AlignLeft|Qt::AlignVCenter; unsigned center=Qt::AlignCenter; // unsigned right=Qt::AlignRight|Qt::AlignVCenter; d_headers.push_back(tr("Cart")); d_alignments.push_back(center); d_headers.push_back(tr("Title")); d_alignments.push_back(center); d_headers.push_back(tr("Last Posted")); d_alignments.push_back(left); d_headers.push_back(tr("Posted Filename")); d_alignments.push_back(left); // // Refresh Timer // d_refresh_timer=new QTimer(this); d_refresh_timer->setSingleShot(true); connect(d_refresh_timer,SIGNAL(timeout()),this,SLOT(refreshTimeoutData())); } RDReplCartListModel::~RDReplCartListModel() { delete d_refresh_timer; } QPalette RDReplCartListModel::palette() { return d_palette; } void RDReplCartListModel::setPalette(const QPalette &pal) { d_palette=pal; } void RDReplCartListModel::setFont(const QFont &font) { d_font=font; d_bold_font=font; d_bold_font.setWeight(QFont::Bold); } int RDReplCartListModel::columnCount(const QModelIndex &parent) const { return d_headers.size(); } int RDReplCartListModel::rowCount(const QModelIndex &parent) const { return d_texts.size(); } QVariant RDReplCartListModel::headerData(int section,Qt::Orientation orient, int role) const { if((orient==Qt::Horizontal)&&(role==Qt::DisplayRole)) { return d_headers.at(section); } return QVariant(); } QVariant RDReplCartListModel::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 RDReplCartListModel::refresh(unsigned id) { for(int i=0;istop(); d_replicator_name=repl_name; updateModel(); d_refresh_timer->start(5000); } } void RDReplCartListModel::refreshTimeoutData() { QString sql; RDSqlQuery *q; int line; sql=QString("select ")+ "`ID`,"+ // 00 "`ITEM_DATETIME` "+ // 01 "from `REPL_CART_STATE` where "+ "`REPLICATOR_NAME`='"+RDEscapeString(d_replicator_name)+"'"; q=new RDSqlQuery(sql); while(q->next()) { if((line=d_ids.indexOf(q->value(0).toUInt()))>=0) { if(d_texts.at(line).at(2)!= q->value(1).toDateTime().toString("hh:mm:ss dd/MM/yyyy")) { d_texts[line][2]= q->value(1).toDateTime().toString("hh:mm:ss dd/MM/yyyy"); emit dataChanged(createIndex(line,2),createIndex(line,2)); } } } delete q; d_refresh_timer->start(5000); } void RDReplCartListModel::updateModel() { QList texts; RDSqlQuery *q=NULL; QString sql=sqlFields()+ "where "+ "`REPLICATOR_NAME`='"+RDEscapeString(d_replicator_name)+"' "+ "order by `REPL_CART_STATE`.`CART_NUMBER` "; beginResetModel(); d_texts.clear(); q=new RDSqlQuery(sql); while(q->next()) { d_ids.push_back(0); d_icons.push_back(QVariant()); d_texts.push_back(texts); updateRow(d_texts.size()-1,q); } delete q; endResetModel(); } void RDReplCartListModel::updateRowLine(int line) { if(linefirst()) { updateRow(line,q); } delete q; } } void RDReplCartListModel::updateRow(int row,RDSqlQuery *q) { d_ids[row]=q->value(0).toInt(); switch((RDCart::Type)q->value(1).toInt()) { case RDCart::Audio: d_icons[row]=rda->iconEngine()->typeIcon(RDLogLine::Cart); break; case RDCart::Macro: d_icons[row]=rda->iconEngine()->typeIcon(RDLogLine::Macro); break; case RDCart::All: break; } QList texts; // Cart Number texts.push_back(QString::asprintf("%06u",q->value(2).toUInt())); // Title texts.push_back(q->value(3)); // Last Posted texts.push_back(q->value(4).toDateTime().toString("hh:mm:ss MM/dd/yyyy")); // Posted Filename texts.push_back(q->value(5)); d_texts[row]=texts; } QString RDReplCartListModel::sqlFields() const { QString sql=QString("select ")+ "`REPL_CART_STATE`.`ID`,"+ // 00 "`CART`.`TYPE`,"+ // 01 "`REPL_CART_STATE`.`CART_NUMBER`,"+ // 02 "`CART`.`TITLE`,"+ // 03 "`REPL_CART_STATE`.`ITEM_DATETIME`,"+ // 04 "`REPL_CART_STATE`.`POSTED_FILENAME` "+ // 05 "from `REPL_CART_STATE` left join `CART` "+ "on `REPL_CART_STATE`.`CART_NUMBER`=`CART`.`NUMBER` "; return sql; }