a435c89636f4b9d91a50de23a4ba4dbb73508de7
[opencv] / src / 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 namespace cv
47 {
48
49 void namedWindow( const string& winname, int flags )
50 {
51     cvNamedWindow( winname.c_str(), flags );
52 }
53
54 void imshow( const string& winname, const Mat& img )
55 {
56     CvMat _img = img;
57     cvShowImage( winname.c_str(), &_img );
58 }
59
60 int waitKey(int delay)
61 {
62     return cvWaitKey(delay);
63 }
64
65 int createTrackbar(const string& trackbarName, const string& winName,
66                    int* value, int count, TrackbarCallback callback,
67                    void* userdata)
68 {
69     return cvCreateTrackbar2(trackbarName.c_str(), winName.c_str(),
70                              value, count, callback, userdata);
71 }
72
73 }
74
75 #if   defined WIN32 || defined _WIN32         // see window_w32.cpp
76 #elif defined (HAVE_GTK)      // see window_gtk.cpp
77 #elif defined (HAVE_CARBON)   // see window_carbon.cpp
78
79
80 #else
81
82 // No windowing system present at compile time ;-(
83 // 
84 // We will build place holders that don't break the API but give an error
85 // at runtime. This way people can choose to replace an installed HighGUI
86 // version with a more capable one without a need to recompile dependent
87 // applications or libraries.
88
89
90 #define CV_NO_GUI_ERROR(funcname) \
91     cvError( CV_StsError, funcname, \
92     "The function is not implemented. " \
93     "Rebuild the library with Windows, GTK+ 2.x or Carbon support. "\
94     "If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script", \
95     __FILE__, __LINE__ )
96
97
98 CV_IMPL int cvNamedWindow( const char*, int )
99 {
100     CV_NO_GUI_ERROR("cvNamedWindow");
101     return -1;
102 }    
103
104 CV_IMPL void cvDestroyWindow( const char* )
105 {
106     CV_NO_GUI_ERROR( "cvDestroyWindow" );
107 }
108
109 CV_IMPL void
110 cvDestroyAllWindows( void )
111 {
112     CV_NO_GUI_ERROR( "cvDestroyAllWindows" );
113 }
114
115 CV_IMPL void
116 cvShowImage( const char*, const CvArr* )
117 {
118     CV_NO_GUI_ERROR( "cvShowImage" );
119 }
120
121 CV_IMPL void cvResizeWindow( const char*, int, int )
122 {
123     CV_NO_GUI_ERROR( "cvResizeWindow" );
124 }
125
126 CV_IMPL void cvMoveWindow( const char*, int, int )
127 {
128     CV_NO_GUI_ERROR( "cvMoveWindow" );
129 }
130
131 CV_IMPL int
132 cvCreateTrackbar( const char*, const char*,
133                   int*, int, CvTrackbarCallback )
134 {
135     CV_NO_GUI_ERROR( "cvCreateTrackbar" );
136     return -1;
137 }
138
139 CV_IMPL int
140 cvCreateTrackbar2( const char* trackbar_name, const char* window_name,
141                    int* val, int count, CvTrackbarCallback2 on_notify2,
142                    void* userdata )
143 {
144     CV_NO_GUI_ERROR( "cvCreateTrackbar2" );
145     return -1;
146 }
147
148 CV_IMPL void
149 cvSetMouseCallback( const char*, CvMouseCallback, void* )
150 {
151     CV_NO_GUI_ERROR( "cvSetMouseCallback" );
152 }
153
154 CV_IMPL int cvGetTrackbarPos( const char*, const char* )
155 {
156     CV_NO_GUI_ERROR( "cvGetTrackbarPos" );
157     return -1;
158 }
159
160 CV_IMPL void cvSetTrackbarPos( const char*, const char*, int )
161 {
162     CV_NO_GUI_ERROR( "cvSetTrackbarPos" );
163 }
164
165 CV_IMPL void* cvGetWindowHandle( const char* )
166 {
167     CV_NO_GUI_ERROR( "cvGetWindowHandle" );
168     return 0;
169 }
170     
171 CV_IMPL const char* cvGetWindowName( void* )
172 {
173     CV_NO_GUI_ERROR( "cvGetWindowName" );
174     return 0;
175 }
176
177 CV_IMPL int cvWaitKey( int )
178 {
179     CV_NO_GUI_ERROR( "cvWaitKey" );
180     return -1;
181 }
182
183 CV_IMPL int cvInitSystem( int argc, char** argv )
184 {
185
186     CV_NO_GUI_ERROR( "cvInitSystem" );
187     return -1;
188 }
189
190 CV_IMPL int cvStartWindowThread()
191 {
192
193     CV_NO_GUI_ERROR( "cvStartWindowThread" );
194     return -1;
195 }
196
197 #endif
198
199 /* End of file. */