Equalizer  2.1.0
Parallel Rendering Framework
windowSettings.h
1 
2 /* Copyright (c) 2014, Daniel Nachbaur <danielnachbaur@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or modify it under
5  * the terms of the GNU Lesser General Public License version 2.1 as published
6  * by the Free Software Foundation.
7  *
8  * This library is distributed in the hope that it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
11  * details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this library; if not, write to the Free Software Foundation, Inc.,
15  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16  */
17 
18 #ifndef EQ_WINDOW_SETTINGS_H
19 #define EQ_WINDOW_SETTINGS_H
20 
21 #include <eq/api.h>
22 #include <eq/fabric/windowSettings.h> // base class
23 #include <eq/types.h>
24 
25 namespace eq
26 {
27 namespace detail
28 {
29 class WindowSettings;
30 }
31 
34 {
35 public:
37  EQ_API WindowSettings();
38 
40  EQ_API ~WindowSettings();
41 
43  EQ_API WindowSettings(const WindowSettings& rhs);
44 
46  EQ_API WindowSettings& operator=(const WindowSettings& rhs);
47 
49  EQ_API void setSharedContextWindow(const SystemWindow* window);
50 
52  EQ_API const SystemWindow* getSharedContextWindow() const;
53 
59  EQ_API uint32_t getColorFormat() const;
60 
61 private:
62  detail::WindowSettings* const _impl;
63 };
64 }
65 
66 #endif // EQ_WINDOW_SETTINGS_H
A set of settings to setup an eq::fabric::Window.
A set of settings to setup an eq::SystemWindow.
The Equalizer client library.
Definition: eq/agl/types.h:23
The interface definition for system-specific windowing code.
Definition: systemWindow.h:35