summaryrefslogblamecommitdiffstats
path: root/desktop-widgets/divepicturewidget.h
blob: d5457cbc204077d26cde175c9fa9f86855a4dc41 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                   


                              
                    
                  
 
                                            
                
                                           
          

                                                                
 
                                                        
                                         

                                                   
  
      
// SPDX-License-Identifier: GPL-2.0
#ifndef DIVEPICTUREWIDGET_H
#define DIVEPICTUREWIDGET_H

#include <QAbstractTableModel>
#include <QListView>
#include <QThread>
#include <QFuture>

class DivePictureWidget : public QListView {
	Q_OBJECT
public:
	DivePictureWidget(QWidget *parent);
protected:
	void mouseDoubleClickEvent(QMouseEvent *event) override;
	void mousePressEvent(QMouseEvent *event) override;
	void wheelEvent(QWheelEvent *event) override;

signals:
	void photoDoubleClicked(const QString filePath);
	void zoomLevelChanged(int delta);
};

class DivePictureThumbnailThread : public QThread {
};

#endif