canvasview.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Sat, 27 Nov 2010 09:56:16 -0800
changeset 6 0ffafff7682f
parent 0 7726fefc58a4
child 10 118b5e4e0f9b
permissions -rw-r--r--
Updated PageDialog for the new Canvas::setPage()

// -*- C++ -*-
// --------------------------------------------------------------------
// CanvasView
// --------------------------------------------------------------------
/*

    This file is based on ipeview, part of the extensible drawing editor Ipe.
    Copyright (C) 1993-2009  Otfried Cheong
    Copyright (C) 2010       Dmitriy Morozov

    Ipe 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.

    As a special exception, you have permission to link Ipe with the
    CGAL library and distribute executables, as long as you follow the
    requirements of the Gnu General Public License in regard to all of
    the software in the executable aside from CGAL.

    Ipe 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 Ipe; if not, you can find it at
    "http://www.gnu.org/copyleft/gpl.html", or write to the Free
    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#ifndef CANVASVIEW_H
#define CANVASVIEW_H

#include "ipeqtcanvas.h"

#include <QMainWindow>
#include <QAction>

using namespace ipe;
using namespace ipeqt;

// --------------------------------------------------------------------

class IpeAction: public QAction 
{
    Q_OBJECT

    public:
                    IpeAction(int cmd, const QString &text,
                              const char *shortcut, QObject *parent);
    
    signals:
        void        triggered(int cmd);
    
    private slots:
        void        forwardTrigger();
    
    private:
        int         iCommand;
};

// --------------------------------------------------------------------

class CanvasView: public QMainWindow 
{
    Q_OBJECT

    public:
                    CanvasView(Qt::WFlags f=0);

        void        setView(int pageNo, int ViewNo);
        void        fitBox(const Rect &box);
        bool        load(Document* doc, int iPageNo, int iViewNo);

    protected:
        void        resizeEvent (QResizeEvent *event);

    private:
        Document    *iDoc;
        Canvas      *iCanvas;
        Snap        iSnap;
};

// --------------------------------------------------------------------
#endif