Krita Source Code Documentation
Loading...
Searching...
No Matches
KisSnapshotView.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2019 Tusooa Zhu <tusooa@vista.aero>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef KIS_SNAPSHOT_VIEW_H_
8#define KIS_SNAPSHOT_VIEW_H_
9
10#include <QListView>
11
12class KisSnapshotView : public QListView
13{
14public:
16 ~KisSnapshotView() override;
17
18 void setModel(QAbstractItemModel *model) override;
19
20public Q_SLOTS:
23private:
24 struct Private;
25 QScopedPointer<Private> m_d;
26};
27
28#endif
void setModel(QAbstractItemModel *model) override
~KisSnapshotView() override
void slotSwitchToSelectedSnapshot()
void slotRemoveSelectedSnapshot()
QScopedPointer< Private > m_d