Update the trunk to the OpenCV's CVS (2008-07-14)
[opencv] / otherlibs / highgui / window.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                        Intel License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000, Intel Corporation, all rights reserved.
14 // Third party copyrights are property of their respective owners.
15 //
16 // Redistribution and use in source and binary forms, with or without modification,
17 // are permitted provided that the following conditions are met:
18 //
19 //   * Redistribution's of source code must retain the above copyright notice,
20 //     this list of conditions and the following disclaimer.
21 //
22 //   * Redistribution's in binary form must reproduce the above copyright notice,
23 //     this list of conditions and the following disclaimer in the documentation
24 //     and/or other materials provided with the distribution.
25 //
26 //   * The name of Intel Corporation may not be used to endorse or promote products
27 //     derived from this software without specific prior written permission.
28 //
29 // This software is provided by the copyright holders and contributors "as is" and
30 // any express or implied warranties, including, but not limited to, the implied
31 // warranties of merchantability and fitness for a particular purpose are disclaimed.
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services;
35 // loss of use, data, or profits; or business interruption) however caused
36 // and on any theory of liability, whether in contract, strict liability,
37 // or tort (including negligence or otherwise) arising in any way out of
38 // the use of this software, even if advised of the possibility of such damage.
39 //
40 //M*/
41
42 #include "_highgui.h"
43
44 // in later times, use this file as a dispatcher to implementations like cvcap.cpp
45
46
47 #if   defined (WIN32)         // see window_w32.cpp
48 #elif defined (HAVE_GTK)      // see window_gtk.cpp
49 #elif defined (HAVE_CARBON)   // see window_carbon.cpp
50
51
52 #else
53
54 // No windowing system present at compile time ;-(
55 // 
56 // We will build place holders that don't break the API but give an error
57 // at runtime. This way people can choose to replace an installed HighGUI
58 // version with a more capable one without a need to recompile dependent
59 // applications or libraries.
60
61
62 #define CV_NO_GUI_ERROR(funcname) \
63     cvError( CV_StsError, funcname, \
64     "The function is not implemented. " \
65     "Rebuild the library with Windows, GTK+ 2.x or Carbon support", \
66     __FILE__, __LINE__ )
67
68
69 CV_IMPL int cvNamedWindow( const char*, int )
70 {
71     CV_NO_GUI_ERROR("cvNamedWindow");
72     return -1;
73 }    
74
75 CV_IMPL void cvDestroyWindow( const char* )
76 {
77     CV_NO_GUI_ERROR( "cvDestroyWindow" );
78 }
79
80 CV_IMPL void
81 cvDestroyAllWindows( void )
82 {
83     CV_NO_GUI_ERROR( "cvDestroyAllWindows" );
84 }
85
86 CV_IMPL void
87 cvShowImage( const char*, const CvArr* )
88 {
89     CV_NO_GUI_ERROR( "cvShowImage" );
90 }
91
92 CV_IMPL void cvResizeWindow( const char*, int, int )
93 {
94     CV_NO_GUI_ERROR( "cvResizeWindow" );
95 }
96
97 CV_IMPL void cvMoveWindow( const char*, int, int )
98 {
99     CV_NO_GUI_ERROR( "cvMoveWindow" );
100 }
101
102 CV_IMPL int
103 cvCreateTrackbar( const char*, const char*,
104                   int*, int, CvTrackbarCallback )
105 {
106     CV_NO_GUI_ERROR( "cvCreateTrackbar" );
107     return -1;
108 }
109
110 CV_IMPL void
111 cvSetMouseCallback( const char*, CvMouseCallback, void* )
112 {
113     CV_NO_GUI_ERROR( "cvSetMouseCallback" );
114 }
115
116 CV_IMPL int cvGetTrackbarPos( const char*, const char* )
117 {
118     CV_NO_GUI_ERROR( "cvGetTrackbarPos" );
119     return -1;
120 }
121
122 CV_IMPL void cvSetTrackbarPos( const char*, const char*, int )
123 {
124     CV_NO_GUI_ERROR( "cvSetTrackbarPos" );
125 }
126
127 CV_IMPL void* cvGetWindowHandle( const char* )
128 {
129     CV_NO_GUI_ERROR( "cvGetWindowHandle" );
130     return 0;
131 }
132     
133 CV_IMPL const char* cvGetWindowName( void* )
134 {
135     CV_NO_GUI_ERROR( "cvGetWindowName" );
136     return 0;
137 }
138
139 CV_IMPL int cvWaitKey( int )
140 {
141     CV_NO_GUI_ERROR( "cvWaitKey" );
142     return -1;
143 }
144
145 CV_IMPL int cvInitSystem( int argc, char** argv )
146 {
147
148     CV_NO_GUI_ERROR( "cvInitSystem" );
149     return -1;
150 }
151
152 CV_IMPL int cvStartWindowThread()
153 {
154
155     CV_NO_GUI_ERROR( "cvStartWindowThread" );
156     return -1;
157 }
158
159 #endif
160
161 /* End of file. */