forked from qt-creator/qt-creator
modernize-* Change-Id: I7fcffa4b455355cbcdc91f7e671e0a88f1091042 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
94 lines
2.6 KiB
C++
94 lines
2.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 Denis Mingulov.
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <coreplugin/idocument.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QGraphicsItem;
|
|
class QMovie;
|
|
class QPixmap;
|
|
|
|
#ifndef QT_NO_SVG
|
|
class QGraphicsSvgItem;
|
|
#endif
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
namespace ImageViewer {
|
|
namespace Internal {
|
|
|
|
class ImageViewerFile : public Core::IDocument
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum ImageType {
|
|
TypeInvalid,
|
|
TypeSvg,
|
|
TypeMovie,
|
|
TypePixmap
|
|
};
|
|
|
|
ImageViewerFile();
|
|
~ImageViewerFile() override;
|
|
|
|
OpenResult open(QString *errorString, const QString &fileName,
|
|
const QString &realFileName) override;
|
|
|
|
ReloadBehavior reloadBehavior(ChangeTrigger state, ChangeType type) const override;
|
|
bool reload(QString *errorString, ReloadFlag flag, ChangeType type) override;
|
|
|
|
bool isPaused() const;
|
|
void setPaused(bool paused);
|
|
|
|
QGraphicsItem *createGraphicsItem() const;
|
|
ImageType type() const;
|
|
|
|
void updateVisibility();
|
|
|
|
signals:
|
|
void openFinished(bool success);
|
|
void imageSizeChanged(const QSize &size);
|
|
void isPausedChanged(bool paused);
|
|
|
|
private:
|
|
void cleanUp();
|
|
OpenResult openImpl(QString *errorString, const QString &fileName);
|
|
|
|
ImageType m_type = TypeInvalid;
|
|
#ifndef QT_NO_SVG
|
|
mutable QGraphicsSvgItem *m_tempSvgItem = nullptr;
|
|
#endif
|
|
QMovie *m_movie = nullptr;
|
|
QPixmap *m_pixmap = nullptr;
|
|
bool m_isPaused = false;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace ImageViewer
|