~ubuntu-branches/debian/experimental/kopete/experimental

« back to all changes in this revision

Viewing changes to protocols/jabber/libjingle/talk/base/window.h

  • Committer: Package Import Robot
  • Author(s): Maximiliano Curia
  • Date: 2015-02-24 11:32:57 UTC
  • mfrom: (1.1.41 vivid)
  • Revision ID: package-import@ubuntu.com-20150224113257-gnupg4v7lzz18ij0
Tags: 4:14.12.2-1
* New upstream release (14.12.2).
* Bump Standards-Version to 3.9.6, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * libjingle
 
3
 * Copyright 2004--2005, Google Inc.
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions are met:
 
7
 *
 
8
 *  1. Redistributions of source code must retain the above copyright notice,
 
9
 *     this list of conditions and the following disclaimer.
 
10
 *  2. Redistributions in binary form must reproduce the above copyright notice,
 
11
 *     this list of conditions and the following disclaimer in the documentation
 
12
 *     and/or other materials provided with the distribution.
 
13
 *  3. The name of the author may not be used to endorse or promote products
 
14
 *     derived from this software without specific prior written permission.
 
15
 *
 
16
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 
17
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 
18
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
 
19
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
20
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
21
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 
22
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 
23
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 
24
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
25
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
26
 */
 
27
 
 
28
#ifndef TALK_BASE_WINDOW_H_
 
29
#define TALK_BASE_WINDOW_H_
 
30
 
 
31
// Define platform specific window types.
 
32
#if defined(LINUX)
 
33
typedef unsigned long Window;  // Avoid include <X11/Xlib.h>.
 
34
#elif defined(WIN32)
 
35
// We commonly include win32.h in talk/base so just include it here.
 
36
#include "talk/base/win32.h"  // Include HWND, HMONITOR.
 
37
#elif defined(OSX)
 
38
typedef unsigned int CGWindowID;
 
39
typedef unsigned int CGDirectDisplayID;
 
40
#endif
 
41
 
 
42
namespace talk_base {
 
43
 
 
44
class WindowId {
 
45
 public:
 
46
  // Define WindowT for each platform.
 
47
#if defined(LINUX)
 
48
  typedef Window WindowT;
 
49
#elif defined(WIN32)
 
50
  typedef HWND WindowT;
 
51
#elif defined(OSX)
 
52
  typedef CGWindowID WindowT;
 
53
#else
 
54
  typedef unsigned int WindowT;
 
55
#endif
 
56
 
 
57
  static WindowId Cast(int id) {
 
58
#if defined(WIN32)
 
59
    return WindowId(reinterpret_cast<WindowId::WindowT>(id));
 
60
#else
 
61
    return WindowId(static_cast<WindowId::WindowT>(id));
 
62
#endif
 
63
  }
 
64
 
 
65
  WindowId() : id_(0) {}
 
66
  WindowId(const WindowT& id) : id_(id) {}  // NOLINT
 
67
  const WindowT& id() const { return id_; }
 
68
  bool IsValid() const { return id_ != 0; }
 
69
  bool Equals(const WindowId& other) const {
 
70
    return id_ == other.id();
 
71
  }
 
72
 
 
73
 private:
 
74
  WindowT id_;
 
75
};
 
76
 
 
77
class DesktopId {
 
78
 public:
 
79
  // Define DesktopT for each platform.
 
80
#if defined(LINUX)
 
81
  typedef Window DesktopT;
 
82
#elif defined(WIN32)
 
83
  typedef HMONITOR DesktopT;
 
84
#elif defined(OSX)
 
85
  typedef CGDirectDisplayID DesktopT;
 
86
#else
 
87
  typedef unsigned int DesktopT;
 
88
#endif
 
89
 
 
90
  static DesktopId Cast(int id, int index) {
 
91
#if defined(WIN32)
 
92
    return DesktopId(reinterpret_cast<DesktopId::DesktopT>(id), index);
 
93
#else
 
94
    return DesktopId(static_cast<DesktopId::DesktopT>(id), index);
 
95
#endif
 
96
  }
 
97
 
 
98
  DesktopId() : id_(0), index_(-1) {}
 
99
  DesktopId(const DesktopT& id, int index)  // NOLINT
 
100
      : id_(id), index_(index) {
 
101
  }
 
102
  const DesktopT& id() const { return id_; }
 
103
  int index() const { return index_; }
 
104
  bool IsValid() const { return index_ != -1; }
 
105
  bool Equals(const DesktopId& other) const {
 
106
    return id_ == other.id() && index_ == other.index();
 
107
  }
 
108
 
 
109
 private:
 
110
  // Id is the platform specific desktop identifier.
 
111
  DesktopT id_;
 
112
  // Index is the desktop index as enumerated by each platform.
 
113
  // Desktop capturer typically takes the index instead of id.
 
114
  int index_;
 
115
};
 
116
 
 
117
// Window event types.
 
118
enum WindowEvent {
 
119
  WE_RESIZE = 0,
 
120
  WE_CLOSE = 1,
 
121
  WE_MINIMIZE = 2,
 
122
  WE_RESTORE = 3,
 
123
};
 
124
 
 
125
}  // namespace talk_base
 
126
 
 
127
#endif  // TALK_BASE_WINDOW_H_