mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 23:20:54 -05:00
d04518fd55
WIP improvements to PhotoService: - Switch from custom image to use RsGxsImage - Update classes for new Image class - fix serialiser for photos - switch group creation to use GxGroupDialog - tweak GxsGroupDialog to display extra Widgets - add AlbumExtra widget
73 lines
2.6 KiB
C++
73 lines
2.6 KiB
C++
/*******************************************************************************
|
|
* retroshare-gui/src/gui/PhotoShare/PhotoItem.h *
|
|
* *
|
|
* Copyright (C) 2012 by Robert Fernie <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the Free Software Foundation, either 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 Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#ifndef PHOTOITEM_H
|
|
#define PHOTOITEM_H
|
|
|
|
#include <QWidget>
|
|
#include <QLabel>
|
|
#include "PhotoShareItemHolder.h"
|
|
#include "retroshare/rsphoto.h"
|
|
|
|
namespace Ui {
|
|
class PhotoItem;
|
|
}
|
|
|
|
class PhotoItem : public QWidget, public PhotoShareItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
PhotoItem(PhotoShareItemHolder *holder, const RsPhotoPhoto& photo, QWidget* parent = 0);
|
|
PhotoItem(PhotoShareItemHolder *holder, const QString& path, QWidget* parent = 0); // for new photos.
|
|
~PhotoItem();
|
|
void setSelected(bool selected);
|
|
bool isSelected(){ return mSelected; }
|
|
const RsPhotoPhoto& getPhotoDetails();
|
|
bool getThumbnail(RsGxsImage &image);
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent *event);
|
|
|
|
private:
|
|
void updateImage(const RsGxsImage &image);
|
|
void setUp();
|
|
|
|
private slots:
|
|
void setTitle();
|
|
void setPhotoGrapher();
|
|
|
|
private:
|
|
Ui::PhotoItem *ui;
|
|
|
|
QPixmap mThumbNail;
|
|
|
|
QPixmap getPixmap() { return mThumbNail; }
|
|
|
|
bool mSelected;
|
|
PhotoShareItemHolder* mHolder;
|
|
RsPhotoPhoto mPhotoDetails;
|
|
|
|
QLabel *mTitleLabel, *mPhotoGrapherLabel;
|
|
};
|
|
|
|
#endif // PHOTOITEM_H
|