1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
/*
* Copyright (c) 2002-2006 Samit Basu
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef __HandleWindow_hpp__
#define __HandleWindow_hpp__
#include <QWidget>
#include "HandleFigure.hpp"
#include <QStackedWidget>
#include <QTabWidget>
#include <QObject>
#include <QGLWidget>
#include <QEventLoop>
#include <QMenu>
#include <QAction>
#include <QToolBar>
#include <QMainWindow>
#include <QActionGroup>
#include <QRubberBand>
const int normal_mode = 1;
const int point_mode = 2;
const int zoom_mode = 3;
const int pan_mode = 4;
const int click_mode = 5;
const int rotate_mode = 6;
const int cam_rotate_mode = 7;
class HandleWindow : public QMainWindow {
Q_OBJECT
protected:
bool initialized;
unsigned handle;
bool glActive;
//QGLWidget *glchild;
QWidget *child;
HandleFigure *hfig;
//QStackedWidget *layout;
QToolBar *toolBar;
QAction *zoomAct, *panAct, *rotateAct, *camRotateAct;
QAction *saveAct, *copyAct, *closeAct;
QActionGroup *toolGroup;
QMenu *fileMenu, *editMenu;
// QTabWidget *layout;
QEventLoop m_loop;
int click_x, click_y;
int mode;
QRubberBand *band;
QPoint origin;
bool pan_active;
double pan_xrange, pan_xmean;
double pan_yrange, pan_ymean;
bool zoom_active;
bool rotate_active;
QVector<double> rotate_up, rotate_target, rotate_camera, rotate_forward, rotate_right;
double rotate_source_cam_dist;
int remapX(int x);
int remapY(int y);
public:
QWidget *GetQtWidget() {return child;}
HandleWindow(unsigned ahandle);
~HandleWindow() {delete hfig;}
unsigned Handle();
HandleFigure *HFig();
void closeEvent(QCloseEvent* e);
bool event(QEvent* e);
void GetClick(int &x, int &y);
void mousePressEvent(QMouseEvent* e);
void mouseMoveEvent(QMouseEvent* e);
void mouseReleaseEvent(QMouseEvent* e);
void createActions();
void createMenus();
void createToolBars();
public slots:
void zoom(bool);
void pan(bool);
void rotate(bool);
void camRotate(bool);
void save();
void copy();
};
void GfxEnableRepaint();
void GfxDisableRepaint();
bool GfxEnableFlag();
#endif
|