f529b2c935c7aba023c4d9ba0f19db906af15042
[occt.git] / src / Draw / Draw_Appli.hxx
1 // Created on: 1992-04-07
2 // Created by: Remi LEQUETTE
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef Draw_Appli_HeaderFile
18 #define Draw_Appli_HeaderFile
19
20 #include <Draw_Viewer.hxx>
21 #include <Draw.hxx>
22
23 typedef void (*FDraw_InitAppli)(Draw_Interpretor&);
24
25 #ifdef _WIN32
26 #include <windows.h>
27 Standard_EXPORT void Draw_Appli(HINSTANCE,HINSTANCE,int,
28                                 int argc, wchar_t** argv,
29                                 const FDraw_InitAppli Draw_InitAppli);
30 #else
31 extern void Draw_Appli(int argc, char** argv,
32                        const FDraw_InitAppli Draw_InitAppli);
33 #endif
34
35
36
37 #if defined(_WIN32) && !defined(HAVE_NO_DLL)
38 #ifndef __Draw_API
39 # ifdef __Draw_DLL
40 #  define __Draw_API __declspec ( dllexport )
41 # else
42 #  define __Draw_API __declspec ( dllimport )
43 # endif
44 #endif
45 #else
46 #  define __Draw_API  
47 #endif
48
49
50 #ifndef _WIN32
51 extern Draw_Viewer dout;
52 extern Standard_Boolean Draw_Batch;
53 #endif
54
55 class Draw_SaveAndRestore {
56
57   public :
58
59 //    __Draw_API Draw_SaveAndRestore 
60     Standard_EXPORT Draw_SaveAndRestore 
61       (const char* name,
62        Standard_Boolean (*test)(const Handle(Draw_Drawable3D)&),
63        void (*save)(const Handle(Draw_Drawable3D)&, ostream&),
64        Handle(Draw_Drawable3D) (*restore) (istream&),
65        Standard_Boolean display = Standard_True);
66
67
68   const char* Name() const {return myName;}
69   Standard_Boolean Test(const Handle(Draw_Drawable3D)&d);
70   void Save(const Handle(Draw_Drawable3D)& d, ostream& os) const;
71   Handle(Draw_Drawable3D) Restore(istream&) const;
72   Standard_Boolean Disp() const {return myDisplay;}
73   Draw_SaveAndRestore* Next() {return myNext;}
74
75   private :
76     
77     const char* myName;
78     Standard_Boolean (*myTest)(const Handle(Draw_Drawable3D)&);
79     void (*mySave)(const Handle(Draw_Drawable3D)&, ostream&);
80     Handle(Draw_Drawable3D) (*myRestore) (istream&);
81     Standard_Boolean myDisplay;
82     Draw_SaveAndRestore* myNext;
83     
84 };
85
86 #endif
87
88
89