X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmainapp%2Fgraphicview.h;h=6e2ec159156379b4b7a8ff0afb81335eb5c98036;hb=d774c2655ba2c3657a565f325411144452392277;hp=e2d7b5456a39912eaee93d74764e3b3d07960c2c;hpb=937ade06241548bfbc7858705b3ce1c7778c3d88;p=architektonas diff --git a/src/mainapp/graphicview.h b/src/mainapp/graphicview.h index e2d7b54..6e2ec15 100644 --- a/src/mainapp/graphicview.h +++ b/src/mainapp/graphicview.h @@ -4,21 +4,20 @@ #include #include "rs.h" #include "rs_color.h" +#include "rs_preview.h" #include "rs_snapper.h" #include "vector.h" +class ActionInterface; +class RS_CommandEvent; class Drawing; class PaintInterface; -class RS_EntityContainer; -class RS_ActionInterface; class RS_Entity; -class RS_LineTypePattern; -class RS_CommandEvent; -class Vector; -class RS_Preview; +class RS_EntityContainer; +class RS_EventHandler; class RS_Grid; +class RS_LineTypePattern; class RS_Pen; -class RS_EventHandler; class GraphicView { @@ -50,10 +49,6 @@ class GraphicView /** This virtual method must be overwritten and is then called whenever the view changed */ virtual void adjustZoomControls(); - /** - * Sets an external painter device. - */ - virtual void setPainter(PaintInterface * p); virtual void setBackground(const RS_Color & bg); RS_Color getBackground(); @@ -90,10 +85,10 @@ class GraphicView void freezeZoom(bool freeze); bool isZoomFrozen(); - void setDefaultAction(RS_ActionInterface * action); - RS_ActionInterface * getDefaultAction(); - void setCurrentAction(RS_ActionInterface * action); - RS_ActionInterface * getCurrentAction(); + void setDefaultAction(ActionInterface * action); + ActionInterface * getDefaultAction(); + void setCurrentAction(ActionInterface * action); + ActionInterface * getCurrentAction(); void killSelectActions(); void killAllActions(); @@ -199,13 +194,6 @@ class GraphicView void setSimulationRapid(bool r); bool getSimulationRapid(); - //this is here because of crappy braindead infrastructure - void SetPreviewMode(bool mode = true); - void SetPreviewEntity(RS_Preview *); - void SetPreviewOffset(Vector); - void SetSnapperDraw(bool); - void SetSnapperVars(Vector snapSpot, Vector snapCoord, bool showCrosshairs); - protected: RS_EntityContainer * container; RS_EventHandler * eventHandler; @@ -287,16 +275,7 @@ class GraphicView // We use this here instead of deriving ActionInterface from it because // this makes more sense. RS_Snapper snapper; - - protected: - // crap to make painting with update() possible - RS_Preview * previewEntity; - bool previewMode; - Vector previewOffset; - bool snapperDraw; - Vector snapSpot1; - Vector snapCoord1; - bool showCrosshairs1; + RS_Preview preview; //QG protected: @@ -306,8 +285,6 @@ class GraphicView QScrollBar * hScrollBar; //! Vertical scrollbar. QScrollBar * vScrollBar; -// //! Layout used to fit in the view and the scrollbars. -// QGridLayout * layout; //! Label for grid spacing. QLabel * gridStatus; //! CAD mouse cursor @@ -321,14 +298,13 @@ class GraphicView //! Hand mouse cursor QCursor * curHand; -//QC +//QC was merged with QG }; #endif // __GRAPHICVIEW_H__ #if 0 -class QG_GraphicView: public QWidget, public RS_GraphicView, //public Q3FilePreview, - public RS_LayerListListener, public RS_BlockListListener +class QG_GraphicView: public QWidget, public RS_GraphicView { Q_OBJECT @@ -341,21 +317,10 @@ class QG_GraphicView: public QWidget, public RS_GraphicView, //public Q3FilePrev virtual void redraw(); virtual void adjustOffsetControls(); virtual void adjustZoomControls(); -// virtual RS_Painter * createPainter(); -// virtual RS_Painter * createDirectPainter(); -#warning "!!! Need to scrub out all instances of createPainter and createDirectPainter !!!" -// virtual PaintInterface * createPainter(); -// virtual PaintInterface * createDirectPainter(); -// virtual void destroyPainter(); virtual void setBackground(const RS_Color & bg); virtual void setMouseCursor(RS2::CursorType c); virtual void updateGridStatusWidget(const QString & text); - // Methods from RS_LayerListListener Interface: - virtual void layerEdited(RS_Layer *); - virtual void layerRemoved(RS_Layer *); - virtual void layerToggled(RS_Layer *); - protected: virtual void emulateMouseMoveEvent(); virtual void mousePressEvent(QMouseEvent * e); @@ -373,50 +338,8 @@ class QG_GraphicView: public QWidget, public RS_GraphicView, //public Q3FilePrev void paintEvent(QPaintEvent *); virtual void resizeEvent(QResizeEvent * e); -#warning "!!! File preview needs porting to Qt4 !!!" -// void previewUrl(const Q3Url &u); - private slots: void slotHScrolled(int value); void slotVScrolled(int value); - - private: -#warning "!!! Double buffering is not necessary anymore !!!" - //! Buffer for double-buffering - QPixmap * buffer; -// int refCount; - - protected: - int lastWidth; - int lastHeight; - //! Horizontal scrollbar. - QG_ScrollBar * hScrollBar; - //! Vertical scrollbar. - QG_ScrollBar * vScrollBar; - //! Layout used to fit in the view and the scrollbars. - QGridLayout * layout; - //! Label for grid spacing. - QLabel * gridStatus; - //! CAD mouse cursor - QCursor * curCad; - //! Delete mouse cursor - QCursor * curDel; - //! Select mouse cursor - QCursor * curSelect; - //! Magnifying glass mouse cursor - QCursor * curMagnifier; - //! Hand mouse cursor - QCursor * curHand; -}; -#endif - -#if 0 -class QC_GraphicView: public QG_GraphicView -{ - public: - QC_GraphicView(RS_Document * doc, QWidget * parent = 0); - virtual ~QC_GraphicView(); - - virtual void drawIt(); }; #endif