74 lines
1.6 KiB
C++
74 lines
1.6 KiB
C++
/*
|
|
* Copyright (C) 2019 Ivan Romanov <drizt72@zoho.eu>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QImage>
|
|
#include <QList>
|
|
#include <QMultiMap>
|
|
#include <QString>
|
|
#include <QTimer>
|
|
#include <QTreeWidgetItem>
|
|
|
|
namespace Ui { class Dialog; }
|
|
|
|
struct Cursor
|
|
{
|
|
QImage image;
|
|
quint32 size;
|
|
QPoint hotSpot;
|
|
};
|
|
|
|
struct CursorFile
|
|
{
|
|
QString name;
|
|
QString realName;
|
|
QString license;
|
|
QString copyright;
|
|
QString other;
|
|
QMultiMap<QString, Cursor> cursorMap;
|
|
QString cachedCursors;
|
|
};
|
|
|
|
class Dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Dialog(const QString& path, QWidget *parent = nullptr);
|
|
~Dialog();
|
|
|
|
void openFolder();
|
|
void openFolderPath(QString path);
|
|
void showCursor(QTreeWidgetItem *current, QTreeWidgetItem *previous);
|
|
|
|
QList<QImage> previewCursor;
|
|
QTimer previewCursorTime;
|
|
int previewIndex;
|
|
|
|
private slots:
|
|
void on_pbExport_clicked();
|
|
|
|
private:
|
|
Ui::Dialog *ui;
|
|
QMap<QString, CursorFile> _cursorFileMap;
|
|
};
|
|
|