mirror of
https://github.com/YACReader/yacreader
synced 2025-07-22 15:04:40 -04:00
Added tag 6.5 for changeset 19399e8c6157
This commit is contained in:
30
custom_widgets/yacreader_table_view.h
Normal file
30
custom_widgets/yacreader_table_view.h
Normal file
@ -0,0 +1,30 @@
|
||||
#ifndef YACREADER_TABLE_VIEW_H
|
||||
#define YACREADER_TABLE_VIEW_H
|
||||
|
||||
#include <QTableView>
|
||||
|
||||
class YACReaderDeletingProgress;
|
||||
class QResizeEvent;
|
||||
class QPropertyAnimation;
|
||||
|
||||
class YACReaderTableView : public QTableView
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit YACReaderTableView(QWidget *parent = 0);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
void showDeleteProgress();
|
||||
void hideDeleteProgress();
|
||||
|
||||
private:
|
||||
YACReaderDeletingProgress * deletingProgress;
|
||||
bool showDelete;
|
||||
QPropertyAnimation * showDeletingProgressAnimation;
|
||||
|
||||
void resizeEvent(QResizeEvent * event);
|
||||
};
|
||||
|
||||
#endif // YACREADER_TABLE_VIEW_H
|
Reference in New Issue
Block a user