VTK
vtkProgressBarWidget.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkProgressBarWidget.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
30 #ifndef vtkProgressBarWidget_h
31 #define vtkProgressBarWidget_h
32 
33 #include "vtkInteractionWidgetsModule.h" // For export macro
34 #include "vtkBorderWidget.h"
35 
37 
38 class VTKINTERACTIONWIDGETS_EXPORT vtkProgressBarWidget : public vtkBorderWidget
39 {
40 public:
44  static vtkProgressBarWidget *New();
45 
47 
51  void PrintSelf(ostream& os, vtkIndent indent) override;
53 
60  {this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));}
61 
65  void CreateDefaultRepresentation() override;
66 
67 protected:
69  ~vtkProgressBarWidget() override;
70 
71 private:
73  void operator=(const vtkProgressBarWidget&) = delete;
74 };
75 
76 #endif
vtkBorderWidget
place a border around a 2D rectangular region
Definition: vtkBorderWidget.h:82
vtkBorderWidget::CreateDefaultRepresentation
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
vtkBorderWidget.h
vtkBorderWidget::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkProgressBarRepresentation
represent a vtkProgressBarWidget
Definition: vtkProgressBarRepresentation.h:37
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkBorderWidget::New
static vtkBorderWidget * New()
Method to instantiate class.
vtkProgressBarWidget
2D widget for placing and manipulating a progress bar
Definition: vtkProgressBarWidget.h:38
vtkAbstractWidget::SetWidgetRepresentation
void SetWidgetRepresentation(vtkWidgetRepresentation *r)
vtkProgressBarWidget::SetRepresentation
void SetRepresentation(vtkProgressBarRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
Definition: vtkProgressBarWidget.h:59