Visual Servoing Platform  version 3.6.1 under development (2024-07-27)
vpDisplayGDI.cpp
1 /*
2  * ViSP, open source Visual Servoing Platform software.
3  * Copyright (C) 2005 - 2024 by Inria. All rights reserved.
4  *
5  * This software is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * See the file LICENSE.txt at the root directory of this source
10  * distribution for additional information about the GNU GPL.
11  *
12  * For using ViSP with software that can not be combined with the GNU
13  * GPL, please contact Inria about acquiring a ViSP Professional
14  * Edition License.
15  *
16  * See https://visp.inria.fr for more information.
17  *
18  * This software was developed at:
19  * Inria Rennes - Bretagne Atlantique
20  * Campus Universitaire de Beaulieu
21  * 35042 Rennes Cedex
22  * France
23  *
24  * If you have questions regarding the use of this file, please contact
25  * Inria at visp@inria.fr
26  *
27  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29  *
30  * Description:
31  * GDI based Display for windows 32.
32  */
38 #include <visp3/core/vpConfig.h>
39 
40 #if (defined(VISP_HAVE_GDI))
41 
42 #include <visp3/gui/vpDisplayGDI.h>
43 
45 
46 // A vpDisplayGDI is just a vpDisplayWin32 which uses a vpGDIRenderer to do
47 // the drawing.
48 
52 vpDisplayGDI::vpDisplayGDI() : vpDisplayWin32(new vpGDIRenderer()) { }
53 
62 vpDisplayGDI::vpDisplayGDI(int winx, int winy, const std::string &title) : vpDisplayWin32(new vpGDIRenderer())
63 {
64  m_windowXPosition = winx;
65  m_windowYPosition = winy;
66 
67  if (!title.empty())
68  m_title = title;
69  else
70  m_title = std::string(" ");
71 }
72 
95 {
96  setScale(scaleType, I.getWidth(), I.getHeight());
97  init(I);
98 }
99 
123 vpDisplayGDI::vpDisplayGDI(vpImage<vpRGBa> &I, int winx, int winy, const std::string &title, vpScaleType scaleType)
124  : vpDisplayWin32(new vpGDIRenderer())
125 {
126  setScale(scaleType, I.getWidth(), I.getHeight());
127  init(I, winx, winy, title);
128 }
129 
152 {
153  setScale(scaleType, I.getWidth(), I.getHeight());
154  init(I);
155 }
156 
180 vpDisplayGDI::vpDisplayGDI(vpImage<unsigned char> &I, int winx, int winy, const std::string &title,
181  vpScaleType scaleType)
182  : vpDisplayWin32(new vpGDIRenderer())
183 {
184  setScale(scaleType, I.getWidth(), I.getHeight());
185  init(I, winx, winy, title);
186 }
187 
188 END_VISP_NAMESPACE
189 
190 #elif !defined(VISP_BUILD_SHARED_LIBS)
191 // Work around to avoid warning: libvisp_gui.a(vpDisplayGDI.cpp.o) has no symbols
192 void dummy_vpDisplayGDI() { };
193 #endif
vpDisplayGDI()
Basic constructor.
Base abstract class for Windows 32 displays. Implements the window creation in a separate thread and ...
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="") VP_OVERRIDE
int m_windowXPosition
display position
Definition: vpDisplay.h:926
std::string m_title
Definition: vpDisplay.h:931
int m_windowYPosition
display position
Definition: vpDisplay.h:928
void setScale(vpScaleType scaleType, unsigned int width, unsigned int height)
Definition: vpDisplay.cpp:262
unsigned int getWidth() const
Definition: vpImage.h:242
unsigned int getHeight() const
Definition: vpImage.h:181