Your IP : 216.73.216.48
/* This file is part of the KDE project
Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org>
Copyright (C) 2002-2006 David Faure <faure@kde.org>
Copyright (C) 2005-2006 Thomas Zander <zander@kde.org>
Copyright (C) 2010 Boudewijn Rempt <boud@kogmbh.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KWCANVAS_H
#define KWCANVAS_H
#include "KWDocument.h"
#include "words_export.h"
#include "KWCanvasBase.h"
#include "KWViewMode.h"
#include <QWidget>
class QRect;
class KWGui;
class KWView;
/**
* This class is responsible for the rendering of the frames to
* the screen as well as the interaction with the user via mouse
* and keyboard. There is one per view.
*/
class WORDS_TEST_EXPORT KWCanvas : public QWidget, public KWCanvasBase
{
Q_OBJECT
public:
/**
* Constructor
* Creates a new canvas widget that can display pages and frames.
* @param viewMode the initial KWViewMode this canvas should use
* @param document as this is one view in the MVC design; the document holds all content
* @param view the parent KWView object
* @param parent the parent widget.
*/
KWCanvas(const QString &viewMode, KWDocument *document, KWView *view, KWGui *parent);
virtual ~KWCanvas();
/// ask the widget to set the size this canvas takes to display all content
void updateSize();
// KoCanvasBase interface methods.
/// reimplemented method from superclass
virtual bool snapToGrid() const;
/// reimplemented method from superclass
virtual QPointF viewToDocument(const QPointF &viewPoint) const;
/// reimplemented method from superclass
virtual QWidget *canvasWidget() {
return this;
}
/// reimplemented method from superclass
virtual const QWidget *canvasWidget() const {
return this;
}
KWView *view() {
return m_view;
}
virtual void setCursor(const QCursor &cursor);
public Q_SLOTS:
/**
* sets the document offset in the scrollArea
* @param offset the offset, in pixels.
*/
void setDocumentOffset(const QPoint &offset);
Q_SIGNALS:
/**
* emitted when the contentsSize changes.
* @see KWViewMode::contentsSize
* @param size the content area size, in pixels.
*/
void documentSize(const QSizeF &size);
protected: // QWidget
/// reimplemented method from superclss
virtual bool event(QEvent *);
/// reimplemented method from superclass
virtual void keyPressEvent(QKeyEvent *e);
/// reimplemented method from superclass
virtual void contextMenuEvent(QContextMenuEvent *e);
/// reimplemented method from superclass
virtual void mouseMoveEvent(QMouseEvent *e);
/// reimplemented method from superclass
virtual void mousePressEvent(QMouseEvent *e);
/// reimplemented method from superclass
virtual void mouseReleaseEvent(QMouseEvent *e);
/// reimplemented method from superclass
virtual void mouseDoubleClickEvent(QMouseEvent *e);
/// reimplemented method from superclass
virtual void keyReleaseEvent(QKeyEvent *e);
/// reimplemented method from superclass
virtual void paintEvent(QPaintEvent * ev);
/// reimplemented method from superclass
virtual void tabletEvent(QTabletEvent *e);
/// reimplemented method from superclass
virtual void wheelEvent(QWheelEvent *e);
/// reimplemented method from superclass
virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const;
/// reimplemented method from superclass
virtual void inputMethodEvent(QInputMethodEvent *event);
/// reimplemented method from superclass
virtual void updateInputMethodInfo();
/// reimplemented method from superclass
virtual void updateCanvasInternal(const QRectF &clip) { update(clip.toRect()); }
private Q_SLOTS:
/// Called whenever there was a page added/removed or simply resized.
void pageSetupChanged();
private:
KWView *m_view;
};
#endif