/usr/include/IGSTK/igstkQTWidget.h is in libigstk4-dev 4.4.0-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | /*=========================================================================
Program: Image Guided Surgery Software Toolkit
Module: $RCSfile: igstkQTWidget.h,v $
Language: C++
Date: $Date: 2008-02-11 01:41:51 $
Version: $Revision: 1.1 $
Copyright (c) ISC Insight Software Consortium. All rights reserved.
See IGSTKCopyright.txt or http://www.igstk.org/copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __igstkQTWidget_h
#define __igstkQTWidget_h
#ifdef _MSC_VER
#pragma warning ( disable : 4018 )
//Warning about: identifier was truncated to '255' characters in the debug
//information (MVC6.0 Debug)
#pragma warning( disable : 4284 )
#endif
// QT dared to define macro called DEBUG!!
#define QT_NO_DEBUG 1
// VTK declarations
class vtkRenderer;
class vtkRenderWindowInteractor;
// ITK headers
#include "itkCommand.h"
#include "itkLogger.h"
// IGSTK headers
#include "igstkMacros.h"
#include "igstkStateMachine.h"
#include "igstkView.h"
#include "igstkViewProxy.h"
// VTK header
#include "QVTKWidget.h"
namespace igstk {
/** \class QTWidget
*
* \brief Display IGSTK graphical representation in a Qt Widget.
*
* This class is useful to develop QT based IGSTK application. Using this
* class, graphical represenation of a surgical scene can be displayed in
* a Qt widget. QT mouse events are captured and translated into VTK events.
* \image html igstkQTWidget.png "State Machine Diagram"
* \image latex igstkQTWidget.eps "State Machine Diagram"
*
* \sa QTWidget
* \sa View
*
* \ingroup View
*/
class QTWidget : public QVTKWidget
{
public:
typedef QTWidget Self;
typedef QVTKWidget Superclass;
typedef View ViewType;
igstkTypeMacro( QTWidget, QVTKWidget );
/** Declarations needed for the State Machine */
igstkStateMachineMacro();
/** Print the object information in a stream. */
void Print( std::ostream& os, ::itk::Indent indent=0) const;
/** Set up variables, types and methods related to the Logger */
igstkLoggerMacro()
/** Constructor */
#if QT_VERSION < 0x040000
//! constructor for Qt 3
QTWidget(QWidget* parent = NULL,
const char* name = NULL, Qt::WFlags f = 0);
#else
//! constructor for Qt 4
QTWidget(QWidget* parent = NULL, Qt::WFlags f = 0);
#endif
/** Destructor */
virtual ~QTWidget( void );
/** set the view */
void RequestSetView( const ViewType * view );
typedef ViewProxy< QTWidget > ProxyType;
friend class ViewProxy< QTWidget >;
/** Disable user interactions with the window via mouse and keyboard */
void RequestDisableInteractions();
/** Enable user interactions with the window via mouse and keyboard */
void RequestEnableInteractions();
/** Get render window interactor */
vtkRenderWindowInteractor * GetRenderWindowInteractor() const;
protected:
/** Print the object information in a stream. */
virtual void PrintSelf( std::ostream& os, itk::Indent indent ) const;
/** Override the method that manages mouse events in order
to provide picker functionalities */
void mouseReleaseEvent(QMouseEvent* e);
/** Override the mouse move event to send transform events
when the mouse is moved while the left button is down */
void mouseMoveEvent(QMouseEvent* e);
void mousePressEvent(QMouseEvent* e);
void wheelEvent(QWheelEvent* e);
private:
/** Report any invalid request to the logger */
void ReportInvalidRequestProcessing();
/** Report Invalid view connected */
void ReportInvalidViewConnectedProcessing();
/** Process a valid view component that is connected to the widget */
void ConnectViewProcessing();
/** Disable keyboard and mouse interactions */
void DisableInteractionsProcessing();
/** Enable keyboard and mouse interactions */
void EnableInteractionsProcessing();
/** Set VTK renderer. This method is used in
* Connect() method in ViewProxy */
void SetRenderer( vtkRenderer * renderer );
/** Set VTK render window interactor. this method
* is used in connect() method in ViewProxy class */
void SetRenderWindowInteractor( vtkRenderWindowInteractor * interactor );
private:
ViewType::Pointer m_View;
ProxyType m_ProxyView;
vtkRenderer * m_Renderer;
vtkRenderWindowInteractor * m_RenderWindowInteractor;
bool m_InteractionHandling;
/** States for the State Machine */
igstkDeclareStateMacro( Idle );
igstkDeclareStateMacro( ViewConnected );
/** Inputs to the State machine */
igstkDeclareInputMacro( ValidView );
igstkDeclareInputMacro( InValidView );
igstkDeclareInputMacro( EnableInteractions );
igstkDeclareInputMacro( DisableInteractions );
};
std::ostream& operator<<(std::ostream& os, const QTWidget& o);
} // end namespace igstk
#endif
|