summaryrefslogtreecommitdiffstats
path: root/sesman/chansrv/rail.c
diff options
context:
space:
mode:
Diffstat (limited to 'sesman/chansrv/rail.c')
-rw-r--r--sesman/chansrv/rail.c894
1 files changed, 459 insertions, 435 deletions
diff --git a/sesman/chansrv/rail.c b/sesman/chansrv/rail.c
index 6b47f867..1ea8d73a 100644
--- a/sesman/chansrv/rail.c
+++ b/sesman/chansrv/rail.c
@@ -31,13 +31,13 @@
extern int g_rail_chan_id; /* in chansrv.c */
extern int g_display_num; /* in chansrv.c */
-extern char* g_exec_name; /* in chansrv.c */
+extern char *g_exec_name; /* in chansrv.c */
extern tbus g_exec_event; /* in chansrv.c */
extern tbus g_exec_mutex; /* in chansrv.c */
extern tbus g_exec_sem; /* in chansrv.c */
-extern Display* g_display; /* in xcommon.c */
-extern Screen* g_screen; /* in xcommon.c */
+extern Display *g_display; /* in xcommon.c */
+extern Screen *g_screen; /* in xcommon.c */
extern Window g_root_window; /* in xcommon.c */
extern Atom g_wm_delete_window_atom; /* in xcommon.c */
extern Atom g_wm_protocols_atom; /* in xcommon.c */
@@ -105,573 +105,597 @@ static int g_rail_running = 1;
static int APP_CC
is_window_valid_child_of_root(unsigned int window_id)
{
- int found;
- unsigned int i;
- unsigned int nchild;
- Window r;
- Window p;
- Window* children;
-
- found = 0;
- XQueryTree(g_display, g_root_window, &r, &p, &children, &nchild);
- for (i = 0; i < nchild; i++)
- {
- if (window_id == children[i])
+ int found;
+ unsigned int i;
+ unsigned int nchild;
+ Window r;
+ Window p;
+ Window *children;
+
+ found = 0;
+ XQueryTree(g_display, g_root_window, &r, &p, &children, &nchild);
+
+ for (i = 0; i < nchild; i++)
{
- found = 1;
- break;
+ if (window_id == children[i])
+ {
+ found = 1;
+ break;
+ }
}
- }
- XFree(children);
- return found;
+
+ XFree(children);
+ return found;
}
/*****************************************************************************/
static int APP_CC
rail_send_init(void)
{
- struct stream* s;
- int bytes;
- char* size_ptr;
-
- LOG(10, ("chansrv::rail_send_init:"));
- make_stream(s);
- init_stream(s, 8182);
- out_uint16_le(s, TS_RAIL_ORDER_HANDSHAKE);
- size_ptr = s->p;
- out_uint16_le(s, 0); /* size, set later */
- out_uint32_le(s, 1); /* build number */
- s_mark_end(s);
- bytes = (int)((s->end - s->data) - 4);
- size_ptr[0] = bytes;
- size_ptr[1] = bytes >> 8;
- bytes = (int)(s->end - s->data);
- send_channel_data(g_rail_chan_id, s->data, bytes);
- free_stream(s);
- return 0;
+ struct stream *s;
+ int bytes;
+ char *size_ptr;
+
+ LOG(10, ("chansrv::rail_send_init:"));
+ make_stream(s);
+ init_stream(s, 8182);
+ out_uint16_le(s, TS_RAIL_ORDER_HANDSHAKE);
+ size_ptr = s->p;
+ out_uint16_le(s, 0); /* size, set later */
+ out_uint32_le(s, 1); /* build number */
+ s_mark_end(s);
+ bytes = (int)((s->end - s->data) - 4);
+ size_ptr[0] = bytes;
+ size_ptr[1] = bytes >> 8;
+ bytes = (int)(s->end - s->data);
+ send_channel_data(g_rail_chan_id, s->data, bytes);
+ free_stream(s);
+ return 0;
}
/******************************************************************************/
static int DEFAULT_CC
-anotherWMRunning(Display* display, XErrorEvent* xe)
+anotherWMRunning(Display *display, XErrorEvent *xe)
{
- g_rail_running = 0;
- return -1;
+ g_rail_running = 0;
+ return -1;
}
/******************************************************************************/
static int APP_CC
rail_is_another_wm_running(void)
{
- XErrorHandler old;
-
- g_rail_running = 1;
- old = XSetErrorHandler((XErrorHandler)anotherWMRunning);
- XSelectInput(g_display, g_root_window,
- PropertyChangeMask | StructureNotifyMask |
- SubstructureRedirectMask | ButtonPressMask |
- SubstructureNotifyMask | FocusChangeMask |
- EnterWindowMask | LeaveWindowMask);
- XSync(g_display, 0);
- XSetErrorHandler((XErrorHandler)old);
- g_rail_up = g_rail_running;
- if (!g_rail_up)
- {
- return 1;
- }
- return 0;
+ XErrorHandler old;
+
+ g_rail_running = 1;
+ old = XSetErrorHandler((XErrorHandler)anotherWMRunning);
+ XSelectInput(g_display, g_root_window,
+ PropertyChangeMask | StructureNotifyMask |
+ SubstructureRedirectMask | ButtonPressMask |
+ SubstructureNotifyMask | FocusChangeMask |
+ EnterWindowMask | LeaveWindowMask);
+ XSync(g_display, 0);
+ XSetErrorHandler((XErrorHandler)old);
+ g_rail_up = g_rail_running;
+
+ if (!g_rail_up)
+ {
+ return 1;
+ }
+
+ return 0;
}
/*****************************************************************************/
int APP_CC
rail_init(void)
{
- LOG(10, ("chansrv::rail_init:"));
- xcommon_init();
- if (rail_is_another_wm_running())
- {
- log_message(LOG_LEVEL_ERROR, "rail_init: another window manager "
- "is running");
- }
- rail_send_init();
- g_rail_up = 1;
- return 0;
+ LOG(10, ("chansrv::rail_init:"));
+ xcommon_init();
+
+ if (rail_is_another_wm_running())
+ {
+ log_message(LOG_LEVEL_ERROR, "rail_init: another window manager "
+ "is running");
+ }
+
+ rail_send_init();
+ g_rail_up = 1;
+ return 0;
}
/*****************************************************************************/
int APP_CC
rail_deinit(void)
{
- if (g_rail_up)
- {
- /* no longer window manager */
- XSelectInput(g_display, g_root_window, 0);
- g_rail_up = 0;
- }
- return 0;
+ if (g_rail_up)
+ {
+ /* no longer window manager */
+ XSelectInput(g_display, g_root_window, 0);
+ g_rail_up = 0;
+ }
+
+ return 0;
}
/*****************************************************************************/
-static char* APP_CC
-read_uni(struct stream* s, int num_chars)
+static char *APP_CC
+read_uni(struct stream *s, int num_chars)
{
- twchar* rchrs;
- char* rv;
- int index;
- int lchars;
-
- rchrs = 0;
- rv = 0;
- if (num_chars > 0)
- {
- rchrs = (twchar*)g_malloc((num_chars + 1) * sizeof(twchar), 0);
- for (index = 0; index < num_chars; index++)
- {
- in_uint16_le(s, rchrs[index]);
- }
- rchrs[num_chars] = 0;
- lchars = g_wcstombs(0, rchrs, 0);
- if (lchars > 0)
+ twchar *rchrs;
+ char *rv;
+ int index;
+ int lchars;
+
+ rchrs = 0;
+ rv = 0;
+
+ if (num_chars > 0)
{
- rv = (char*)g_malloc((lchars + 1) * 4, 0);
- g_wcstombs(rv, rchrs, lchars);
- rv[lchars] = 0;
+ rchrs = (twchar *)g_malloc((num_chars + 1) * sizeof(twchar), 0);
+
+ for (index = 0; index < num_chars; index++)
+ {
+ in_uint16_le(s, rchrs[index]);
+ }
+
+ rchrs[num_chars] = 0;
+ lchars = g_wcstombs(0, rchrs, 0);
+
+ if (lchars > 0)
+ {
+ rv = (char *)g_malloc((lchars + 1) * 4, 0);
+ g_wcstombs(rv, rchrs, lchars);
+ rv[lchars] = 0;
+ }
}
- }
- g_free(rchrs);
- return rv;
+
+ g_free(rchrs);
+ return rv;
}
/*****************************************************************************/
static int APP_CC
-rail_process_exec(struct stream* s, int size)
+rail_process_exec(struct stream *s, int size)
{
- int pid;
- int flags;
- int ExeOrFileLength;
- int WorkingDirLength;
- int ArgumentsLen;
- char* ExeOrFile;
- char* WorkingDir;
- char* Arguments;
-
- LOG(0, ("chansrv::rail_process_exec:"));
- in_uint16_le(s, flags);
- in_uint16_le(s, ExeOrFileLength);
- in_uint16_le(s, WorkingDirLength);
- in_uint16_le(s, ArgumentsLen);
- ExeOrFile = read_uni(s, ExeOrFileLength);
- WorkingDir = read_uni(s, WorkingDirLength);
- Arguments = read_uni(s, ArgumentsLen);
- LOG(10, (" flags 0x%8.8x ExeOrFileLength %d WorkingDirLength %d "
- "ArgumentsLen %d ExeOrFile [%s] WorkingDir [%s] "
- "Arguments [%s]", flags, ExeOrFileLength, WorkingDirLength,
- ArgumentsLen, ExeOrFile, WorkingDir, Arguments));
- if (g_strlen(ExeOrFile) > 0)
- {
- LOG(10, ("rail_process_exec: pre"));
- /* ask main thread to fork */
- tc_mutex_lock(g_exec_mutex);
- g_exec_name = ExeOrFile;
- g_set_wait_obj(g_exec_event);
- tc_sem_dec(g_exec_sem);
- tc_mutex_unlock(g_exec_mutex);
- LOG(10, ("rail_process_exec: post"));
- }
- g_free(ExeOrFile);
- g_free(WorkingDir);
- g_free(Arguments);
- return 0;
+ int pid;
+ int flags;
+ int ExeOrFileLength;
+ int WorkingDirLength;
+ int ArgumentsLen;
+ char *ExeOrFile;
+ char *WorkingDir;
+ char *Arguments;
+
+ LOG(0, ("chansrv::rail_process_exec:"));
+ in_uint16_le(s, flags);
+ in_uint16_le(s, ExeOrFileLength);
+ in_uint16_le(s, WorkingDirLength);
+ in_uint16_le(s, ArgumentsLen);
+ ExeOrFile = read_uni(s, ExeOrFileLength);
+ WorkingDir = read_uni(s, WorkingDirLength);
+ Arguments = read_uni(s, ArgumentsLen);
+ LOG(10, (" flags 0x%8.8x ExeOrFileLength %d WorkingDirLength %d "
+ "ArgumentsLen %d ExeOrFile [%s] WorkingDir [%s] "
+ "Arguments [%s]", flags, ExeOrFileLength, WorkingDirLength,
+ ArgumentsLen, ExeOrFile, WorkingDir, Arguments));
+
+ if (g_strlen(ExeOrFile) > 0)
+ {
+ LOG(10, ("rail_process_exec: pre"));
+ /* ask main thread to fork */
+ tc_mutex_lock(g_exec_mutex);
+ g_exec_name = ExeOrFile;
+ g_set_wait_obj(g_exec_event);
+ tc_sem_dec(g_exec_sem);
+ tc_mutex_unlock(g_exec_mutex);
+ LOG(10, ("rail_process_exec: post"));
+ }
+
+ g_free(ExeOrFile);
+ g_free(WorkingDir);
+ g_free(Arguments);
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_activate(struct stream* s, int size)
+rail_process_activate(struct stream *s, int size)
{
- int window_id;
- int enabled;
-
- LOG(10, ("chansrv::rail_process_activate:"));
- in_uint32_le(s, window_id);
- in_uint8(s, enabled);
- LOG(10, (" window_id 0x%8.8x enabled %d", window_id, enabled));
- if (enabled)
- {
- LOG(10, ("chansrv::rail_process_activate: calling XRaiseWindow 0x%8.8x", window_id));
- XRaiseWindow(g_display, window_id);
- LOG(10, ("chansrv::rail_process_activate: calling XSetInputFocus 0x%8.8x", window_id));
- XSetInputFocus(g_display, window_id, RevertToParent, CurrentTime);
- }
- return 0;
+ int window_id;
+ int enabled;
+
+ LOG(10, ("chansrv::rail_process_activate:"));
+ in_uint32_le(s, window_id);
+ in_uint8(s, enabled);
+ LOG(10, (" window_id 0x%8.8x enabled %d", window_id, enabled));
+
+ if (enabled)
+ {
+ LOG(10, ("chansrv::rail_process_activate: calling XRaiseWindow 0x%8.8x", window_id));
+ XRaiseWindow(g_display, window_id);
+ LOG(10, ("chansrv::rail_process_activate: calling XSetInputFocus 0x%8.8x", window_id));
+ XSetInputFocus(g_display, window_id, RevertToParent, CurrentTime);
+ }
+
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_system_param(struct stream* s, int size)
+rail_process_system_param(struct stream *s, int size)
{
- int system_param;
+ int system_param;
- LOG(10, ("chansrv::rail_process_system_param:"));
- in_uint32_le(s, system_param);
- LOG(10, (" system_param 0x%8.8x", system_param));
- return 0;
+ LOG(10, ("chansrv::rail_process_system_param:"));
+ in_uint32_le(s, system_param);
+ LOG(10, (" system_param 0x%8.8x", system_param));
+ return 0;
}
/******************************************************************************/
static int APP_CC
rail_close_window(int window_id)
{
- XEvent ce;
-
- LOG(0, ("chansrv::rail_close_window:"));
- g_memset(&ce, 0, sizeof(ce));
- ce.xclient.type = ClientMessage;
- ce.xclient.message_type = g_wm_protocols_atom;
- ce.xclient.display = g_display;
- ce.xclient.window = window_id;
- ce.xclient.format = 32;
- ce.xclient.data.l[0] = g_wm_delete_window_atom;
- ce.xclient.data.l[1] = CurrentTime;
- XSendEvent(g_display, window_id, False, NoEventMask, &ce);
- return 0;
+ XEvent ce;
+
+ LOG(0, ("chansrv::rail_close_window:"));
+ g_memset(&ce, 0, sizeof(ce));
+ ce.xclient.type = ClientMessage;
+ ce.xclient.message_type = g_wm_protocols_atom;
+ ce.xclient.display = g_display;
+ ce.xclient.window = window_id;
+ ce.xclient.format = 32;
+ ce.xclient.data.l[0] = g_wm_delete_window_atom;
+ ce.xclient.data.l[1] = CurrentTime;
+ XSendEvent(g_display, window_id, False, NoEventMask, &ce);
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_system_command(struct stream* s, int size)
+rail_process_system_command(struct stream *s, int size)
{
- int window_id;
- int command;
-
- LOG(10, ("chansrv::rail_process_system_command:"));
- in_uint32_le(s, window_id);
- in_uint16_le(s, command);
- switch (command)
- {
- case SC_SIZE:
- LOG(10, (" window_id 0x%8.8x SC_SIZE", window_id));
- break;
- case SC_MOVE:
- LOG(10, (" window_id 0x%8.8x SC_MOVE", window_id));
- break;
- case SC_MINIMIZE:
- LOG(10, (" window_id 0x%8.8x SC_MINIMIZE", window_id));
- break;
- case SC_MAXIMIZE:
- LOG(10, (" window_id 0x%8.8x SC_MAXIMIZE", window_id));
- break;
- case SC_CLOSE:
- LOG(10, (" window_id 0x%8.8x SC_CLOSE", window_id));
- rail_close_window(window_id);
- break;
- case SC_KEYMENU:
- LOG(10, (" window_id 0x%8.8x SC_KEYMENU", window_id));
- break;
- case SC_RESTORE:
- LOG(10, (" window_id 0x%8.8x SC_RESTORE", window_id));
- break;
- case SC_DEFAULT:
- LOG(10, (" window_id 0x%8.8x SC_DEFAULT", window_id));
- break;
- default:
- LOG(10, (" window_id 0x%8.8x unknown command command %d",
- window_id, command));
- break;
- }
- return 0;
+ int window_id;
+ int command;
+
+ LOG(10, ("chansrv::rail_process_system_command:"));
+ in_uint32_le(s, window_id);
+ in_uint16_le(s, command);
+
+ switch (command)
+ {
+ case SC_SIZE:
+ LOG(10, (" window_id 0x%8.8x SC_SIZE", window_id));
+ break;
+ case SC_MOVE:
+ LOG(10, (" window_id 0x%8.8x SC_MOVE", window_id));
+ break;
+ case SC_MINIMIZE:
+ LOG(10, (" window_id 0x%8.8x SC_MINIMIZE", window_id));
+ break;
+ case SC_MAXIMIZE:
+ LOG(10, (" window_id 0x%8.8x SC_MAXIMIZE", window_id));
+ break;
+ case SC_CLOSE:
+ LOG(10, (" window_id 0x%8.8x SC_CLOSE", window_id));
+ rail_close_window(window_id);
+ break;
+ case SC_KEYMENU:
+ LOG(10, (" window_id 0x%8.8x SC_KEYMENU", window_id));
+ break;
+ case SC_RESTORE:
+ LOG(10, (" window_id 0x%8.8x SC_RESTORE", window_id));
+ break;
+ case SC_DEFAULT:
+ LOG(10, (" window_id 0x%8.8x SC_DEFAULT", window_id));
+ break;
+ default:
+ LOG(10, (" window_id 0x%8.8x unknown command command %d",
+ window_id, command));
+ break;
+ }
+
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_handshake(struct stream* s, int size)
+rail_process_handshake(struct stream *s, int size)
{
- int build_number;
+ int build_number;
- LOG(10, ("chansrv::rail_process_handshake:"));
- in_uint32_le(s, build_number);
- LOG(10, (" build_number 0x%8.8x", build_number));
- return 0;
+ LOG(10, ("chansrv::rail_process_handshake:"));
+ in_uint32_le(s, build_number);
+ LOG(10, (" build_number 0x%8.8x", build_number));
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_notify_event(struct stream* s, int size)
+rail_process_notify_event(struct stream *s, int size)
{
- int window_id;
- int notify_id;
- int message;
-
- LOG(10, ("chansrv::rail_process_notify_event:"));
- in_uint32_le(s, window_id);
- in_uint32_le(s, notify_id);
- in_uint32_le(s, message);
- LOG(10, (" window_id 0x%8.8x notify_id 0x%8.8x message 0x%8.8x",
- window_id, notify_id, message));
- return 0;
+ int window_id;
+ int notify_id;
+ int message;
+
+ LOG(10, ("chansrv::rail_process_notify_event:"));
+ in_uint32_le(s, window_id);
+ in_uint32_le(s, notify_id);
+ in_uint32_le(s, message);
+ LOG(10, (" window_id 0x%8.8x notify_id 0x%8.8x message 0x%8.8x",
+ window_id, notify_id, message));
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_window_move(struct stream* s, int size)
+rail_process_window_move(struct stream *s, int size)
{
- int window_id;
- int left;
- int top;
- int right;
- int bottom;
-
- LOG(10, ("chansrv::rail_process_window_move:"));
- in_uint32_le(s, window_id);
- in_uint16_le(s, left);
- in_uint16_le(s, top);
- in_uint16_le(s, right);
- in_uint16_le(s, bottom);
- LOG(10, (" window_id 0x%8.8x left %d top %d right %d bottom %d width %d height %d",
- window_id, left, top, right, bottom, right - left, bottom - top));
- XMoveResizeWindow(g_display, window_id, left, top, right - left, bottom - top);
- return 0;
+ int window_id;
+ int left;
+ int top;
+ int right;
+ int bottom;
+
+ LOG(10, ("chansrv::rail_process_window_move:"));
+ in_uint32_le(s, window_id);
+ in_uint16_le(s, left);
+ in_uint16_le(s, top);
+ in_uint16_le(s, right);
+ in_uint16_le(s, bottom);
+ LOG(10, (" window_id 0x%8.8x left %d top %d right %d bottom %d width %d height %d",
+ window_id, left, top, right, bottom, right - left, bottom - top));
+ XMoveResizeWindow(g_display, window_id, left, top, right - left, bottom - top);
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_local_move_size(struct stream* s, int size)
+rail_process_local_move_size(struct stream *s, int size)
{
- int window_id;
- int is_move_size_start;
- int move_size_type;
- int pos_x;
- int pos_y;
-
- LOG(10, ("chansrv::rail_process_local_move_size:"));
- in_uint32_le(s, window_id);
- in_uint16_le(s, is_move_size_start);
- in_uint16_le(s, move_size_type);
- in_uint16_le(s, pos_x);
- in_uint16_le(s, pos_y);
- LOG(10, (" window_id 0x%8.8x is_move_size_start %d move_size_type %d "
- "pos_x %d pos_y %d", window_id, is_move_size_start, move_size_type,
- pos_x, pos_y));
- return 0;
+ int window_id;
+ int is_move_size_start;
+ int move_size_type;
+ int pos_x;
+ int pos_y;
+
+ LOG(10, ("chansrv::rail_process_local_move_size:"));
+ in_uint32_le(s, window_id);
+ in_uint16_le(s, is_move_size_start);
+ in_uint16_le(s, move_size_type);
+ in_uint16_le(s, pos_x);
+ in_uint16_le(s, pos_y);
+ LOG(10, (" window_id 0x%8.8x is_move_size_start %d move_size_type %d "
+ "pos_x %d pos_y %d", window_id, is_move_size_start, move_size_type,
+ pos_x, pos_y));
+ return 0;
}
/*****************************************************************************/
/* server to client only */
static int APP_CC
-rail_process_min_max_info(struct stream* s, int size)
+rail_process_min_max_info(struct stream *s, int size)
{
- LOG(10, ("chansrv::rail_process_min_max_info:"));
- return 0;
+ LOG(10, ("chansrv::rail_process_min_max_info:"));
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_client_status(struct stream* s, int size)
+rail_process_client_status(struct stream *s, int size)
{
- int flags;
+ int flags;
- LOG(10, ("chansrv::rail_process_client_status:"));
- in_uint32_le(s, flags);
- LOG(10, (" flags 0x%8.8x", flags));
- return 0;
+ LOG(10, ("chansrv::rail_process_client_status:"));
+ in_uint32_le(s, flags);
+ LOG(10, (" flags 0x%8.8x", flags));
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_sys_menu(struct stream* s, int size)
+rail_process_sys_menu(struct stream *s, int size)
{
- int window_id;
- int left;
- int top;
-
- LOG(10, ("chansrv::rail_process_sys_menu:"));
- in_uint32_le(s, window_id);
- in_uint16_le(s, left);
- in_uint16_le(s, top);
- LOG(10, (" window_id 0x%8.8x left %d top %d", window_id, left, top));
- return 0;
+ int window_id;
+ int left;
+ int top;
+
+ LOG(10, ("chansrv::rail_process_sys_menu:"));
+ in_uint32_le(s, window_id);
+ in_uint16_le(s, left);
+ in_uint16_le(s, top);
+ LOG(10, (" window_id 0x%8.8x left %d top %d", window_id, left, top));
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_lang_bar_info(struct stream* s, int size)
+rail_process_lang_bar_info(struct stream *s, int size)
{
- int language_bar_status;
+ int language_bar_status;
- LOG(10, ("chansrv::rail_process_lang_bar_info:"));
- in_uint32_le(s, language_bar_status);
- LOG(10, (" language_bar_status 0x%8.8x", language_bar_status));
- return 0;
+ LOG(10, ("chansrv::rail_process_lang_bar_info:"));
+ in_uint32_le(s, language_bar_status);
+ LOG(10, (" language_bar_status 0x%8.8x", language_bar_status));
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_appid_req(struct stream* s, int size)
+rail_process_appid_req(struct stream *s, int size)
{
- LOG(10, ("chansrv::rail_process_appid_req:"));
- return 0;
+ LOG(10, ("chansrv::rail_process_appid_req:"));
+ return 0;
}
/*****************************************************************************/
static int APP_CC
-rail_process_appid_resp(struct stream* s, int size)
+rail_process_appid_resp(struct stream *s, int size)
{
- LOG(10, ("chansrv::rail_process_appid_resp:"));
- return 0;
+ LOG(10, ("chansrv::rail_process_appid_resp:"));
+ return 0;
}
/*****************************************************************************/
/* server to client only */
static int APP_CC
-rail_process_exec_result(struct stream* s, int size)
+rail_process_exec_result(struct stream *s, int size)
{
- LOG(10, ("chansrv::rail_process_exec_result:"));
- return 0;
+ LOG(10, ("chansrv::rail_process_exec_result:"));
+ return 0;
}
/*****************************************************************************/
/* data in from client ( client -> xrdp -> chansrv ) */
int APP_CC
-rail_data_in(struct stream* s, int chan_id, int chan_flags, int length,
+rail_data_in(struct stream *s, int chan_id, int chan_flags, int length,
int total_length)
{
- int code;
- int size;
-
- LOG(10, ("chansrv::rail_data_in:"));
- in_uint8(s, code);
- in_uint8s(s, 1);
- in_uint16_le(s, size);
- switch (code)
- {
- case TS_RAIL_ORDER_EXEC: /* 1 */
- rail_process_exec(s, size);
- break;
- case TS_RAIL_ORDER_ACTIVATE: /* 2 */
- rail_process_activate(s, size);
- break;
- case TS_RAIL_ORDER_SYSPARAM: /* 3 */
- rail_process_system_param(s, size);
- break;
- case TS_RAIL_ORDER_SYSCOMMAND: /* 4 */
- rail_process_system_command(s, size);
- break;
- case TS_RAIL_ORDER_HANDSHAKE: /* 5 */
- rail_process_handshake(s, size);
- break;
- case TS_RAIL_ORDER_NOTIFY_EVENT: /* 6 */
- rail_process_notify_event(s, size);
- break;
- case TS_RAIL_ORDER_WINDOWMOVE: /* 8 */
- rail_process_window_move(s, size);
- break;
- case TS_RAIL_ORDER_LOCALMOVESIZE: /* 9 */
- rail_process_local_move_size(s, size);
- break;
- case TS_RAIL_ORDER_MINMAXINFO: /* 10 */
- rail_process_min_max_info(s, size);
- break;
- case TS_RAIL_ORDER_CLIENTSTATUS: /* 11 */
- rail_process_client_status(s, size);
- break;
- case TS_RAIL_ORDER_SYSMENU: /* 12 */
- rail_process_sys_menu(s, size);
- break;
- case TS_RAIL_ORDER_LANGBARINFO: /* 13 */
- rail_process_lang_bar_info(s, size);
- break;
- case TS_RAIL_ORDER_GET_APPID_REQ: /* 14 */
- rail_process_appid_req(s, size);
- break;
- case TS_RAIL_ORDER_GET_APPID_RESP: /* 15 */
- rail_process_appid_resp(s, size);
- break;
- case TS_RAIL_ORDER_EXEC_RESULT: /* 128 */
- rail_process_exec_result(s, size);
- break;
- default:
- LOG(10, ("rail_data_in: unknown code %d size %d", code, size));
- break;
- }
- XFlush(g_display);
- return 0;
+ int code;
+ int size;
+
+ LOG(10, ("chansrv::rail_data_in:"));
+ in_uint8(s, code);
+ in_uint8s(s, 1);
+ in_uint16_le(s, size);
+
+ switch (code)
+ {
+ case TS_RAIL_ORDER_EXEC: /* 1 */
+ rail_process_exec(s, size);
+ break;
+ case TS_RAIL_ORDER_ACTIVATE: /* 2 */
+ rail_process_activate(s, size);
+ break;
+ case TS_RAIL_ORDER_SYSPARAM: /* 3 */
+ rail_process_system_param(s, size);
+ break;
+ case TS_RAIL_ORDER_SYSCOMMAND: /* 4 */
+ rail_process_system_command(s, size);
+ break;
+ case TS_RAIL_ORDER_HANDSHAKE: /* 5 */
+ rail_process_handshake(s, size);
+ break;
+ case TS_RAIL_ORDER_NOTIFY_EVENT: /* 6 */
+ rail_process_notify_event(s, size);
+ break;
+ case TS_RAIL_ORDER_WINDOWMOVE: /* 8 */
+ rail_process_window_move(s, size);
+ break;
+ case TS_RAIL_ORDER_LOCALMOVESIZE: /* 9 */
+ rail_process_local_move_size(s, size);
+ break;
+ case TS_RAIL_ORDER_MINMAXINFO: /* 10 */
+ rail_process_min_max_info(s, size);
+ break;
+ case TS_RAIL_ORDER_CLIENTSTATUS: /* 11 */
+ rail_process_client_status(s, size);
+ break;
+ case TS_RAIL_ORDER_SYSMENU: /* 12 */
+ rail_process_sys_menu(s, size);
+ break;
+ case TS_RAIL_ORDER_LANGBARINFO: /* 13 */
+ rail_process_lang_bar_info(s, size);
+ break;
+ case TS_RAIL_ORDER_GET_APPID_REQ: /* 14 */
+ rail_process_appid_req(s, size);
+ break;
+ case TS_RAIL_ORDER_GET_APPID_RESP: /* 15 */
+ rail_process_appid_resp(s, size);
+ break;
+ case TS_RAIL_ORDER_EXEC_RESULT: /* 128 */
+ rail_process_exec_result(s, size);
+ break;
+ default:
+ LOG(10, ("rail_data_in: unknown code %d size %d", code, size));
+ break;
+ }
+
+ XFlush(g_display);
+ return 0;
}
/*****************************************************************************/
/* returns 0, event handled, 1 unhandled */
int APP_CC
-rail_xevent(void* xevent)
+rail_xevent(void *xevent)
{
- XEvent* lxevent;
- XWindowChanges xwc;
- int rv;
- int nchildren_return = 0;
- Window root_return;
- Window parent_return;
- Window *children_return;
- Window wreturn;
- int revert_to;
- XWindowAttributes wnd_attributes;
-
- LOG(10, ("chansrv::rail_xevent:"));
- if (!g_rail_up)
- {
- return 1;
- }
- rv = 1;
- lxevent = (XEvent*)xevent;
- switch (lxevent->type)
- {
- case ConfigureRequest:
- LOG(10, (" got ConfigureRequest window_id 0x%8.8x", lxevent->xconfigurerequest.window));
- g_memset(&xwc, 0, sizeof(xwc));
- xwc.x = lxevent->xconfigurerequest.x;
- xwc.y = lxevent->xconfigurerequest.y;
- xwc.width = lxevent->xconfigurerequest.width;
- xwc.height = lxevent->xconfigurerequest.height;
- xwc.border_width = lxevent->xconfigurerequest.border_width;
- xwc.sibling = lxevent->xconfigurerequest.above;
- xwc.stack_mode = lxevent->xconfigurerequest.detail;
- XConfigureWindow(g_display,
- lxevent->xconfigurerequest.window,
- lxevent->xconfigurerequest.value_mask,
- &xwc);
- rv = 0;
- break;
-
- case MapRequest:
- LOG(10, (" got MapRequest"));
- XMapWindow(g_display, lxevent->xmaprequest.window);
- rv = 0;
- break;
-
- case MapNotify:
- LOG(10, (" got MapNotify"));
- break;
-
- case UnmapNotify:
- LOG(10, (" got UnmapNotify"));
- break;
-
- case ConfigureNotify:
- LOG(10, (" got ConfigureNotify"));
- break;
-
- case FocusIn:
- LOG(10, (" got FocusIn"));
- break;
-
- case ButtonPress:
- LOG(10, (" got ButtonPress"));
- break;
-
- case EnterNotify:
- LOG(10, (" got EnterNotify"));
- break;
-
- case LeaveNotify:
- LOG(10, (" got LeaveNotify"));
- break;
-
- }
- return rv;
+ XEvent *lxevent;
+ XWindowChanges xwc;
+ int rv;
+ int nchildren_return = 0;
+ Window root_return;
+ Window parent_return;
+ Window *children_return;
+ Window wreturn;
+ int revert_to;
+ XWindowAttributes wnd_attributes;
+
+ LOG(10, ("chansrv::rail_xevent:"));
+
+ if (!g_rail_up)
+ {
+ return 1;
+ }
+
+ rv = 1;
+ lxevent = (XEvent *)xevent;
+
+ switch (lxevent->type)
+ {
+ case ConfigureRequest:
+ LOG(10, (" got ConfigureRequest window_id 0x%8.8x", lxevent->xconfigurerequest.window));
+ g_memset(&xwc, 0, sizeof(xwc));
+ xwc.x = lxevent->xconfigurerequest.x;
+ xwc.y = lxevent->xconfigurerequest.y;
+ xwc.width = lxevent->xconfigurerequest.width;
+ xwc.height = lxevent->xconfigurerequest.height;
+ xwc.border_width = lxevent->xconfigurerequest.border_width;
+ xwc.sibling = lxevent->xconfigurerequest.above;
+ xwc.stack_mode = lxevent->xconfigurerequest.detail;
+ XConfigureWindow(g_display,
+ lxevent->xconfigurerequest.window,
+ lxevent->xconfigurerequest.value_mask,
+ &xwc);
+ rv = 0;
+ break;
+
+ case MapRequest:
+ LOG(10, (" got MapRequest"));
+ XMapWindow(g_display, lxevent->xmaprequest.window);
+ rv = 0;
+ break;
+
+ case MapNotify:
+ LOG(10, (" got MapNotify"));
+ break;
+
+ case UnmapNotify:
+ LOG(10, (" got UnmapNotify"));
+ break;
+
+ case ConfigureNotify:
+ LOG(10, (" got ConfigureNotify"));
+ break;
+
+ case FocusIn:
+ LOG(10, (" got FocusIn"));
+ break;
+
+ case ButtonPress:
+ LOG(10, (" got ButtonPress"));
+ break;
+
+ case EnterNotify:
+ LOG(10, (" got EnterNotify"));
+ break;
+
+ case LeaveNotify:
+ LOG(10, (" got LeaveNotify"));
+ break;
+
+ }
+
+ return rv;
}