mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
99 lines
2.4 KiB
C
99 lines
2.4 KiB
C
![]() |
// vim: set tabstop=4 shiftwidth=4 expandtab:
|
||
|
/*
|
||
|
Gwenview: an image viewer
|
||
|
Copyright 2011 Aurélien Gâteau <agateau@kde.org>
|
||
|
|
||
|
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 2
|
||
|
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, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA.
|
||
|
|
||
|
*/
|
||
|
#ifndef DOCUMENTVIEWCONTAINER_H
|
||
|
#define DOCUMENTVIEWCONTAINER_H
|
||
|
|
||
|
#include <lib/gwenviewlib_export.h>
|
||
|
|
||
|
// Local
|
||
|
#include <lib/documentview/documentview.h>
|
||
|
|
||
|
// KDE
|
||
|
#include <KUrl>
|
||
|
|
||
|
// Qt
|
||
|
#include <QGraphicsView>
|
||
|
|
||
|
namespace Gwenview
|
||
|
{
|
||
|
|
||
|
class DocumentView;
|
||
|
|
||
|
struct DocumentViewContainerPrivate;
|
||
|
/**
|
||
|
* A container for DocumentViews which will arrange them to make best use of
|
||
|
* available space.
|
||
|
*/
|
||
|
class GWENVIEWLIB_EXPORT DocumentViewContainer : public QGraphicsView
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
DocumentViewContainer(QWidget* parent = 0);
|
||
|
~DocumentViewContainer();
|
||
|
|
||
|
/**
|
||
|
* Create a DocumentView in the DocumentViewContainer scene
|
||
|
*/
|
||
|
DocumentView* createView();
|
||
|
|
||
|
/**
|
||
|
* Delete view. Note that the view will first be faded to black before
|
||
|
* being destroyed.
|
||
|
*/
|
||
|
void deleteView(DocumentView* view);
|
||
|
|
||
|
/**
|
||
|
* Immediately delete all views
|
||
|
*/
|
||
|
void reset();
|
||
|
|
||
|
/**
|
||
|
* Returns saved Setup configuration for a previously viewed document
|
||
|
*/
|
||
|
DocumentView::Setup savedSetup(const KUrl& url) const;
|
||
|
|
||
|
/**
|
||
|
* Updates setupForUrl hash with latest setup values
|
||
|
*/
|
||
|
void updateSetup(DocumentView* view);
|
||
|
|
||
|
void showMessageWidget(QGraphicsWidget*, Qt::Alignment);
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
void updateLayout();
|
||
|
|
||
|
protected:
|
||
|
void showEvent(QShowEvent*);
|
||
|
void resizeEvent(QResizeEvent*);
|
||
|
|
||
|
private:
|
||
|
friend class ViewItem;
|
||
|
DocumentViewContainerPrivate* const d;
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void slotFadeInFinished(DocumentView*);
|
||
|
void pretendFadeInFinished();
|
||
|
};
|
||
|
|
||
|
} // namespace
|
||
|
|
||
|
#endif /* DOCUMENTVIEWCONTAINER_H */
|