vtkPVLogoSource.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVLogoSource.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
24 #ifndef vtkPVLogoSource_h
25 #define vtkPVLogoSource_h
26 
27 #include "vtkImageAlgorithm.h"
28 #include "vtkRemotingViewsModule.h" //needed for exports
29 
30 class vtkTexture;
31 class VTKREMOTINGVIEWS_EXPORT vtkPVLogoSource : public vtkImageAlgorithm
32 {
33 public:
34  static vtkPVLogoSource* New();
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
41  void SetTexture(vtkTexture* texture);
42 
43 protected:
45  ~vtkPVLogoSource() override;
46 
47  void ExecuteDataWithInformation(vtkDataObject* data, vtkInformation* outInfo) override;
48  int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
49  vtkInformationVector* outputVector) override;
50 
51 private:
52  vtkPVLogoSource(const vtkPVLogoSource&) = delete;
53  void operator=(const vtkPVLogoSource&) = delete;
54 
55  vtkTexture* Texture = nullptr;
56 };
57 
58 #endif
source that generates a 1x1 vtkTable with a single string data.
virtual void ExecuteDataWithInformation(vtkDataObject *output, vtkInformation *outInfo)
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE
static vtkAlgorithm * New()
void operator=(const vtkObjectBase &)