KWWidgets
vtkKWSaveImageDialog.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Module: $RCSfile: vtkKWSaveImageDialog.h,v $
4 
5  Copyright (c) Kitware, Inc.
6  All rights reserved.
7  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
8 
9  This software is distributed WITHOUT ANY WARRANTY; without even
10  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11  PURPOSE. See the above copyright notice for more information.
12 
13 =========================================================================*/
14 // .NAME vtkKWSaveImageDialog - a dialog for saving 2D images
15 // .SECTION Description
16 // A simple dialog for saving a 2D image as a BMP, TIFF, or PNM.
17 
18 #ifndef __vtkKWSaveImageDialog_h
19 #define __vtkKWSaveImageDialog_h
20 
21 #include "vtkKWLoadSaveDialog.h"
22 
24 {
25 public:
26  static vtkKWSaveImageDialog* New();
28  void PrintSelf(ostream& os, vtkIndent indent);
29 
30  // Description::
31  // Invoke the dialog
32  virtual int Invoke();
33 
34 protected:
37 
38  // Description:
39  // Create the widget.
40  virtual void CreateWidget();
41 
42 private:
43  vtkKWSaveImageDialog(const vtkKWSaveImageDialog&); // Not implemented
44  void operator=(const vtkKWSaveImageDialog&); // Not implemented
45 };
46 
47 
48 #endif