mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-03 23:53:59 +01:00 
			
		
		
		
	* Modified the 'List Grids' dialog in rdlogmanager(1) to show all services, with a 'Has Grid' column. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
		
			
				
	
	
		
			85 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdservicelistmodel.h
 | 
						|
//
 | 
						|
// Data model for Rivendell services
 | 
						|
//
 | 
						|
//   (C) Copyright 2021-2022 Fred Gleason <fredg@paravelsystems.com>
 | 
						|
//
 | 
						|
//   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.
 | 
						|
//
 | 
						|
 | 
						|
#ifndef RDSERVICELISTMODEL_H
 | 
						|
#define RDSERVICELISTMODEL_H
 | 
						|
 | 
						|
#include <QAbstractTableModel>
 | 
						|
#include <QFont>
 | 
						|
#include <QList>
 | 
						|
#include <QMap>
 | 
						|
#include <QPalette>
 | 
						|
 | 
						|
#include <rddb.h>
 | 
						|
#include <rdnotification.h>
 | 
						|
#include <rduser.h>
 | 
						|
 | 
						|
//
 | 
						|
// MAINTAINERS NOTE
 | 
						|
//
 | 
						|
// We could arguably just use a QSqlQueryModel for this, but rolling our own
 | 
						|
// lets us use the same backend-facing API pattern as the other Rivendell
 | 
						|
// models.
 | 
						|
//
 | 
						|
class RDServiceListModel : public QAbstractTableModel
 | 
						|
{
 | 
						|
  Q_OBJECT
 | 
						|
 public:
 | 
						|
  RDServiceListModel(bool incl_none,bool exclude_bypass,QObject *parent);
 | 
						|
  ~RDServiceListModel();
 | 
						|
  QPalette palette();
 | 
						|
  void setPalette(const QPalette &pal);
 | 
						|
  void setFont(const QFont &font);
 | 
						|
  int columnCount(const QModelIndex &parent=QModelIndex()) const;
 | 
						|
  int rowCount(const QModelIndex &parent=QModelIndex()) const;
 | 
						|
  QVariant headerData(int section,Qt::Orientation orient,
 | 
						|
		      int role=Qt::DisplayRole) const;
 | 
						|
  QVariant data(const QModelIndex &index,int role=Qt::DisplayRole) const;
 | 
						|
  bool hasGrid(const QModelIndex &index) const;
 | 
						|
  QString serviceName(const QModelIndex &row) const;
 | 
						|
  QModelIndex addService(const QString &name);
 | 
						|
  void removeService(const QModelIndex &row);
 | 
						|
  void removeService(const QString &svcname);
 | 
						|
  void refresh(const QModelIndex &row);
 | 
						|
  void refresh(const QString &username);
 | 
						|
 | 
						|
 protected:
 | 
						|
  void updateModel();
 | 
						|
  void updateRowLine(int line);
 | 
						|
  void updateRow(int row,RDSqlQuery *q);
 | 
						|
  QString sqlFields() const;
 | 
						|
 | 
						|
 private:
 | 
						|
  QPalette d_palette;
 | 
						|
  QFont d_font;
 | 
						|
  QFont d_bold_font;
 | 
						|
  bool d_include_none;
 | 
						|
  bool d_exclude_bypass;
 | 
						|
  QList<QVariant> d_headers;
 | 
						|
  QList<QVariant> d_alignments;
 | 
						|
  QList<QList<QVariant> > d_texts;
 | 
						|
  QList<QList<QVariant> > d_icons;
 | 
						|
  QList<bool> d_has_grids;
 | 
						|
  QMap<QString,QVariant> d_group_color_map;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif  // RDSERVICELISTMODEL_H
 |