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
|
/*=========================================================================
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.kitware.com/VolViewCopyright.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 notice for more information.
=========================================================================*/
// .NAME vtkVVWindow - the VolView top level window
// .SECTION Description
// This class represents a top level window with menu bar and status
// line. It is the main window for a volview application.
#ifndef __vtkVVWindow_h
#define __vtkVVWindow_h
#include "vtkVVWindowBase.h"
#include "vtkKWVolViewConfigure.h" // KWVolView_USE_LESION_SIZING_KIT
class vtkVVWidgetInterface;
class vtkVVDisplayInterface;
class vtkVVPluginInterface;
class vtkVVInformationInterface;
class vtkVVAdvancedAlgorithmsInterface;
class vtkVVReviewInterface;
class vtkVVLesionSizingInterface;
class VTK_EXPORT vtkVVWindow : public vtkVVWindowBase
{
public:
static vtkVVWindow* New();
vtkTypeRevisionMacro(vtkVVWindow,vtkVVWindowBase);
virtual void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Close this window, possibly prompting the user.
// Return 1 if the window closed successfully, 0 otherwise (for example,
// if some dialogs are still up, or the user did not confirm, etc).
virtual int Close();
// Description:
// Get/Show the interfaces.
vtkGetObjectMacro(InformationInterface, vtkVVInformationInterface);
vtkGetObjectMacro(DisplayInterface, vtkVVDisplayInterface);
vtkGetObjectMacro(WidgetInterface, vtkVVWidgetInterface);
vtkGetObjectMacro(ReviewInterface, vtkVVReviewInterface);
vtkGetObjectMacro(PluginInterface, vtkVVPluginInterface);
vtkGetObjectMacro(AdvancedAlgorithmsInterface, vtkVVAdvancedAlgorithmsInterface);
// Description:
// Get/Show the interfaces.
virtual vtkKWApplicationSettingsInterface *GetApplicationSettingsInterface();
// Description:
// Update the UI.
virtual void Update();
// Description:
// This is set automatically by the application when created. You should
// not need to muck with it. If you must muck with it, do it before you
// invoke Window::Create().
vtkSetMacro(SupportPlugins, int);
vtkGetMacro(SupportPlugins, int);
vtkBooleanMacro(SupportPlugins, int);
// Description:
// Support Lesion Sizing Toolkit interface (to be set in the constructor
// by subclasses)
vtkSetMacro(SupportLesionSizingInterface, int);
vtkGetMacro(SupportLesionSizingInterface, int);
vtkBooleanMacro(SupportLesionSizingInterface, int);
// Description:
// Some constants
vtkGetStringMacro(CreatePresetThumbnailAutomaticallyRegKey);
vtkGetStringMacro(PresetsLayoutRegKey);
protected:
vtkVVWindow();
~vtkVVWindow();
// Description:
// Create the widget
virtual void CreateWidget();
// Description:
// Create the toolbars.
virtual void CreateToolbars();
virtual void CreateQuickViewToolbar();
virtual void CreateLayoutManagerToolbar();
virtual void CreateInteractionMode2DToolbar();
virtual void CreateInteractionMode3DToolbar();
virtual void CreateToolsToolbar();
virtual void CreateMeasurementToolbar();
virtual void CreateSnapshotToolbar();
// Description:
// Create the UserInterface panels
virtual void CreateUserInterfacePanels();
// Description:
// Create each UserInterface panel
// Return 1 if the panel was effectively created, or 0 if the panel had
// already been created or on error
virtual int CreateDisplayInterface();
virtual int CreateWidgetInterface();
virtual int CreateReviewInterface();
virtual int CreatePluginInterface();
virtual int CreateAdvancedAlgorithmsInterface();
virtual int CreateInformationInterface();
virtual int CreateLesionSizingInterface();
// Description:
// User Interface Panels
vtkVVInformationInterface *InformationInterface;
vtkVVDisplayInterface *DisplayInterface;
vtkVVWidgetInterface *WidgetInterface;
vtkVVReviewInterface *ReviewInterface;
vtkVVPluginInterface *PluginInterface;
vtkVVAdvancedAlgorithmsInterface *AdvancedAlgorithmsInterface;
vtkVVLesionSizingInterface *LesionSizingInterface;
int SupportPlugins;
int SupportLesionSizingInterface;
// Description:
// Some constants
vtkSetStringMacro(CreatePresetThumbnailAutomaticallyRegKey);
vtkSetStringMacro(PresetsLayoutRegKey);
char *CreatePresetThumbnailAutomaticallyRegKey;
char *PresetsLayoutRegKey;
private:
vtkVVWindow(const vtkVVWindow&); // Not implemented
void operator=(const vtkVVWindow&); // Not implemented
};
#endif
|