summaryrefslogtreecommitdiff
path: root/src/main.c
blob: d33408df20fbe0d0c8d7dc2a410a9a435edc137f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
//
// Copyright Jon © TURNEY 2012
//
// This file is part of XtoW.
//
// XtoW is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// XtoW is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with XtoW.  If not, see <http://www.gnu.org/licenses/>.
//

#include <windows.h>
#include <stdlib.h>
#include <stdio.h>
#include <getopt.h>
#include <xcwm/xcwm.h>
#include <semaphore.h>

#include "config.h"
#include "debug.h"
#include "global.h"
#include "wndproc.h"
#include "wincursor.h"

#define WM_XCWM_CREATE  WM_USER
#define WM_XCWM_DESTROY (WM_USER+1)
#define WM_XCWM_CURSOR (WM_USER+2)

#define XCWM_EVENT_WINDOW_ICON 100

xcwm_context_t *context;
xcb_atom_t motif_wm_hints = 0;
xcb_atom_t windowState = 0;
DWORD msgPumpThread;
int serverGeneration = 1;

static sem_t semaphore;

static void
eventHandler(const xcwm_event_t *event)
{
    xcwm_window_t *window = xcwm_event_get_window(event);
    xcwm_event_type_t type = xcwm_event_get_type(event);

    //    DEBUG("event %d, window 0x%08x, XID 0x%08x\n", type, window, window->window_id);

    switch (type)
      {
      case XCWM_EVENT_WINDOW_CREATE:
        /*
          Windows windows are owned by the thread they are created by,
          and only the thread which owns the window can receive messages for it.
          So, we must arrange for the thread which we want to run the Windows
          message pump in to create the window...
        */
        PostThreadMessage(msgPumpThread, WM_XCWM_CREATE, 0, (LPARAM)window);
        sem_wait(&semaphore);
        break;

      case XCWM_EVENT_WINDOW_DESTROY:
        /*
          Only the owner thread is allowed to destroy a window
         */
        PostThreadMessage(msgPumpThread, WM_XCWM_DESTROY, 0, (LPARAM)window);
        sem_wait(&semaphore);
        break;

      case XCWM_EVENT_WINDOW_NAME:
        UpdateName(window);
        break;

      case XCWM_EVENT_WINDOW_DAMAGE:
        UpdateImage(window);
        break;

      case XCWM_EVENT_WINDOW_EXPOSE: // I don't think this event could ever be needed and is a mistake
        break;

      case XCWM_EVENT_WINDOW_APPEARANCE:
        UpdateStyle(window);
        break;

      case XCWM_EVENT_WINDOW_SHAPE:
        UpdateShape(window);
        break;

      case XCWM_EVENT_WINDOW_ICON:
        UpdateIcon(window);
        break;

      case XCWM_EVENT_CURSOR:
        /*
          Only the 'GUI thread' is allowed to SetCursor()
        */
        PostThreadMessage(msgPumpThread, WM_XCWM_CURSOR, 0, 0);
        break;
      }
}

static void
help(void)
{
  fprintf(stderr, "usage: xtow [options]\n");
  fprintf(stderr, "--nodwm       do not use DWM, even if available\n");
  fprintf(stderr, "--blur        use glass effect to blur the image beneath transparent areas\n");
  fprintf(stderr, "--display dpy display to manage windows on\n");
  fprintf(stderr, "--help\n");
  exit(0);
}

static void
version(void)
{
  fprintf(stderr, PACKAGE " " PACKAGE_VERSION "\n");
  exit(0);
}

int main(int argc, char **argv)
{
  char *screen = NULL;
  int nodwm = 0;

  while (1)
    {
      static struct option long_options[] =
        {
          { "version", no_argument, 0, 'v' },
          { "display", required_argument, 0, 'd' },
          { "help",    no_argument, 0, 'h' },
          { "blur",    no_argument, 0, 'b' },
          { "nodwm",   no_argument, 0, 'n' },
          {0, 0, 0, 0 },
        };

      int option_index = 0;
      int c = getopt_long_only(argc, argv, "d:hv", long_options, &option_index);

      if (c == -1)
        break;

      switch (c)
        {
        case 'd':
          screen = optarg;
          break;
        case 'b':
          blur = 1;
          break;
        case 'n':
          nodwm = 1;
          break;
        case 'v':
          version();
          break;
        case 'h':
        default:
          help();
        }
    }

  if (optind < argc)
      help();

  DEBUG("screen is '%s'\n", screen);

  // ensure this thread has a message queue
  MSG msg;
  PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE);
  msgPumpThread = GetCurrentThreadId();

  // initialize semaphore used for synchronization
  sem_init(&semaphore, 0, 0);

  // Get access to DwmEnableBlurBehindWindow, if available, so we can take advantage of it
  // on Vista and later, but still run on earlier versions of Windows
  HMODULE hDwmApiLib = LoadLibraryEx("dwmapi.dll", NULL, 0);
  if (hDwmApiLib)
    pDwmEnableBlurBehindWindow = (PFNDWMENABLEBLURBEHINDWINDOW)GetProcAddress(hDwmApiLib, "DwmEnableBlurBehindWindow");
  DEBUG("DwmEnableBlurBehindWindow %s\n", pDwmEnableBlurBehindWindow ? "found" : "not found");
  if (nodwm)
    {
      DEBUG("DWM disabled by --nodwm option\n");
      pDwmEnableBlurBehindWindow = NULL;
    }

  // create the global xcwm context
  context = xcwm_context_open(screen);

  //
  xcb_connection_t *connection = xcwm_context_get_connection(context);

  // Check that the X screen size is at least as big as the virtual desktop size
  ///
  // (We don't really care about this much, as our composited windows never actually
  // get drawn onto the X screen)
  //
  // But, unfortunately it seems that XTEST mouse click events outside the X screen
  // size are always delivered to the root window, so the X screen size needs to be
  // at least as big as the virtual desktop to ensure that mouse click events are
  // delivered correctly.
  //
  // Sizes should match so that X applications that look at the X screen size get
  // useful information.
  //
  // XXX: ideally we would RANDR resize the X screen to the needed size...
  {
    const xcb_setup_t *setup = xcb_get_setup(connection);
    xcb_screen_iterator_t iter = xcb_setup_roots_iterator(setup);
    xcb_screen_t *screen = iter.data;

    unsigned int x_width = screen->width_in_pixels;
    unsigned int x_height = screen->height_in_pixels;

    unsigned int win_width = GetSystemMetrics(SM_CXVIRTUALSCREEN);
    unsigned int win_height = GetSystemMetrics(SM_CYVIRTUALSCREEN);

    printf("X screen has size %d x %d\n", x_width, x_height);
    printf("Windows virtual desktop has size %d x %d\n", win_width, win_height);

    if ((x_width < win_width) || (x_height < win_height))
      {
        fprintf(stderr, "X screen size should match or exceed Windows virtual desktop size\n");
        exit(0);
    }
  }

  // register interest in some atoms
  motif_wm_hints = xcwm_atom_register(context, "_MOTIF_WM_HINTS", XCWM_EVENT_WINDOW_APPEARANCE);
  windowState = xcwm_atom_register(context, "_NET_WM_STATE", XCWM_EVENT_WINDOW_APPEARANCE);
  xcwm_atom_register(context, " _NET_WM_ICON", XCWM_EVENT_WINDOW_ICON);
  xcwm_atom_register(context, " WM_HINTS", XCWM_EVENT_WINDOW_ICON);

  // spawn the event loop thread, and set the callback function
  xcwm_event_start_loop(context, eventHandler);

  // set the root window cursor to left_ptr (XXX: should probably be in libxcwm)
  // (this controls the cursor an application gets over it's windows when it doesn't set one)
#define XC_left_ptr 68

  xcb_cursor_t cursor = xcb_generate_id(connection);
  xcb_window_t window = xcwm_window_get_window_id(xcwm_context_get_root_window(context));
  xcb_font_t font = xcb_generate_id(connection);
  xcb_font_t *mask_font = &font; /* An alias to clarify */
  int shape = XC_left_ptr;

  xcb_open_font(connection, font, sizeof("cursor"), "cursor");

  static const uint16_t fgred = 0, fggreen = 0, fgblue = 0;
  static const uint16_t bgred = 0xFFFF, bggreen = 0xFFFF, bgblue = 0xFFFF;

  xcb_create_glyph_cursor(connection, cursor, font, *mask_font, shape, shape + 1,
                          fgred, fggreen, fgblue, bgred, bggreen, bgblue);

  uint32_t mask = XCB_CW_CURSOR;
  uint32_t value_list = cursor;
  xcb_change_window_attributes(connection, window, mask, &value_list);

  xcb_free_cursor(connection, cursor);
  xcb_close_font(connection, font);

  // .. and convert to native cursor
  InitCursor();

  // pump windows message queue
  while (GetMessage(&msg, NULL, 0, 0) > 0)
    {
      if (msg.message == WM_XCWM_CREATE)
        {
          winCreateWindowsWindow((xcwm_window_t *)msg.lParam);
          sem_post(&semaphore);
        }
      else if (msg.message == WM_XCWM_DESTROY)
        {
          winDestroyWindowsWindow((xcwm_window_t *)msg.lParam);
          sem_post(&semaphore);
        }
      else if (msg.message == WM_XCWM_CURSOR)
       UpdateCursor();
      else
        DispatchMessage(&msg);
    }

  // Shutdown:
  // if we got WM_QUIT, message loop exits
  // if server died, we get a error from xcb
  // if window station is shutting down, we get WM_ENDSESSION
  // if we got a signal...

  xcwm_context_close(context);

  FreeLibrary(hDwmApiLib);

  sem_destroy(&semaphore);
}