mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 01:13:50 +02:00
* Added a 'FEEDS.CHANNEL_IMAGE_ID' field to the database. * Added a 'FEEDS.DEFAULT_ITEM_IMAGE_ID' field to the database. * Added a 'PODCASTS.ITEM_IMAGE_ID' field to the database. * Incremented the database version to 324. * Added an 'Image Manager' dialog to rdadmin(1). * Added an 'Image Viewer' dialog on rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
// rdimagepickermodel.h
|
|
//
|
|
// One-dimensional model for picking images
|
|
//
|
|
// (C) Copyright 2020 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 RDIMAGEPICKERMODEL_H
|
|
#define RDIMAGEPICKERMODEL_H
|
|
|
|
#include <QAbstractListModel>
|
|
#include <qlist.h>
|
|
#include <qpixmap.h>
|
|
#include <qstringlist.h>
|
|
|
|
class RDImagePickerModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
RDImagePickerModel(const QString &tbl_name,const QString &cat_id_col,
|
|
const QString &img_id_col,QObject *parent=0);
|
|
~RDImagePickerModel();
|
|
int categoryId() const;
|
|
int imageId(int row) const;
|
|
int imageRowOfId(int img_id) const;
|
|
void rescaleImages(const QSize &size);
|
|
void update(int row);
|
|
void refresh();
|
|
int rowCount(const QModelIndex &parent=QModelIndex()) const;
|
|
QVariant data(const QModelIndex &index,int role=Qt::DisplayRole) const;
|
|
QVariant headerData(int section,Qt::Orientation orient,
|
|
int role=Qt::DisplayRole);
|
|
|
|
public slots:
|
|
void setCategoryId(int id);
|
|
|
|
|
|
private:
|
|
void LoadRows(int cat_id,const QSize &img_size);
|
|
QString c_table_name;
|
|
QString c_category_column;
|
|
QString c_image_column;
|
|
int c_category_id;
|
|
QSize c_image_size;
|
|
QList<QPixmap *> c_images;
|
|
QStringList c_descriptions;
|
|
QList<int> c_image_ids;
|
|
};
|
|
|
|
|
|
#endif // RDIMAGEPICKERMODEL_H
|