Home
last modified time | relevance | path

Searched refs:wm_hint (Results 1 – 14 of 14) sorted by relevance

/dports/games/xbubble/xbubble-0.5.8/src/
H A Dxbubble.c248 XWMHints wm_hint; in main() local
334 wm_hint.flags = InputHint | StateHint; in main()
335 wm_hint.input = True; in main()
336 wm_hint.initial_state = NormalState; in main()
338 XSetWMHints( display, win, &wm_hint ); in main()
/dports/multimedia/xine/xine-ui-0.99.12/src/xitk/
H A Dcontrol.c383 XWMHints *wm_hint = XAllocWMHints (); in vctrl_open_window() local
385 if (wm_hint) { in vctrl_open_window()
386 wm_hint->input = True; in vctrl_open_window()
387 wm_hint->initial_state = NormalState; in vctrl_open_window()
388 wm_hint->icon_pixmap = vctrl->gui->icon; in vctrl_open_window()
389 wm_hint->flags = InputHint | StateHint | IconPixmapHint; in vctrl_open_window()
390 XSetWMHints (vctrl->gui->display, vctrl->window, wm_hint); in vctrl_open_window()
391 XFree (wm_hint); in vctrl_open_window()
H A Dvideowin.c132 XWMHints *wm_hint; member
393 XWMHints *wm_hint; in video_window_adapt_size() local
1036 wm_hint = XAllocWMHints(); in video_window_adapt_size()
1037 if (wm_hint != NULL) { in video_window_adapt_size()
1038 wm_hint->input = True; in video_window_adapt_size()
1043 XFree(wm_hint); in video_window_adapt_size()
1732 vwin->wm_hint = XAllocWMHints(); in video_window_init()
1733 if (!vwin->wm_hint) { in video_window_init()
1738 vwin->wm_hint->input = True; in video_window_init()
1949 if (vwin->wm_hint != NULL) in video_window_exit()
[all …]
H A Dplaylist.c1006 XWMHints *wm_hint; in playlist_editor() local
1116 wm_hint = XAllocWMHints(); in playlist_editor()
1117 if (wm_hint != NULL) { in playlist_editor()
1118 wm_hint->input = True; in playlist_editor()
1119 wm_hint->initial_state = NormalState; in playlist_editor()
1120 wm_hint->icon_pixmap = gui->icon; in playlist_editor()
1121 wm_hint->flags = InputHint | StateHint | IconPixmapHint; in playlist_editor()
1122 XSetWMHints(gui->display, playlist->window, wm_hint); in playlist_editor()
1123 XFree(wm_hint); in playlist_editor()
H A Dpanel.c1212 XWMHints *wm_hint; in panel_init() local
1368 wm_hint = XAllocWMHints(); in panel_init()
1369 if (wm_hint != NULL) { in panel_init()
1370 wm_hint->input = True; in panel_init()
1371 wm_hint->initial_state = NormalState; in panel_init()
1372 wm_hint->icon_pixmap = panel->gui->icon; in panel_init()
1373 wm_hint->flags = InputHint | StateHint | IconPixmapHint; in panel_init()
1374 XSetWMHints (panel->gui->display, panel->gui->panel_window, wm_hint); in panel_init()
1375 XFree(wm_hint); in panel_init()
/dports/multimedia/xine/xine-ui-0.99.12/src/xitk/xine-toolkit/
H A Dmrlbrowser.c941 XWMHints *wm_hint; in xitk_mrlbrowser_create() local
1090 wm_hint = XAllocWMHints(); in xitk_mrlbrowser_create()
1091 if (wm_hint != NULL) { in xitk_mrlbrowser_create()
1092 wm_hint->input = True; in xitk_mrlbrowser_create()
1093 wm_hint->initial_state = NormalState; in xitk_mrlbrowser_create()
1095 wm_hint->icon_pixmap = *mb->icon; in xitk_mrlbrowser_create()
1096 wm_hint->flags = IconPixmapHint; in xitk_mrlbrowser_create()
1098 wm_hint->flags |= InputHint | StateHint; in xitk_mrlbrowser_create()
1099 XSetWMHints(mb->imlibdata->x.disp, private_data->window, wm_hint); in xitk_mrlbrowser_create()
1100 XFree(wm_hint); in xitk_mrlbrowser_create()
H A Dwindow.c243 XWMHints *wm_hint; in xitk_window_create_window() local
323 wm_hint = XAllocWMHints(); in xitk_window_create_window()
324 if (wm_hint != NULL) { in xitk_window_create_window()
325 wm_hint->input = True; in xitk_window_create_window()
326 wm_hint->initial_state = NormalState; in xitk_window_create_window()
327 wm_hint->flags = InputHint | StateHint; in xitk_window_create_window()
328 XSetWMHints(im->x.disp, xwin->window, wm_hint); in xitk_window_create_window()
329 XFree(wm_hint); in xitk_window_create_window()
/dports/games/xgalaga/xgalaga-2.1.1.0/libsprite/
H A Ddata.h62 extern XWMHints wm_hint;
H A Ddata.c93 XWMHints wm_hint = { variable
H A Dmakewindow.c400 XSetWMHints(W_Display, neww->window, &wm_hint);
/dports/x11-wm/leftwm/leftwm-0.2.11/leftwm-core/src/display_servers/xlib_display_server/
H A Devent_translate.rs99 let wm_hint = xw.get_wmhints(event.window); in from_map_request() localVariable
140 if let Some(hint) = wm_hint { in from_map_request()
/dports/x11/mrxvt-devel/mrxvt-0.5.4/src/
H A Dinit.c3236 XWMHints wm_hint; in rxvt_create_show_windows() local
3429 wm_hint.flags = (InputHint | StateHint | WindowGroupHint); in rxvt_create_show_windows()
3430 wm_hint.input = True; in rxvt_create_show_windows()
3433 wm_hint.window_group = r->TermWin.parent; in rxvt_create_show_windows()
3444 wm_hint.icon_pixmap = appIcon; in rxvt_create_show_windows()
3445 wm_hint.icon_mask = appIconMask; in rxvt_create_show_windows()
3446 wm_hint.flags |= IconPixmapHint | IconMaskHint; in rxvt_create_show_windows()
3455 &r->szHint, &wm_hint, &class_hint); in rxvt_create_show_windows()
3458 if( wm_hint.flags & IconPixmapHint ) in rxvt_create_show_windows()
3460 XFreePixmap( r->Xdisplay, wm_hint.icon_pixmap ); in rxvt_create_show_windows()
[all …]
/dports/x11/mrxvt/mrxvt-0.4.2/src/
H A Dinit.c2667 XWMHints wm_hint; in rxvt_create_show_windows() local
2813 wm_hint.flags = (InputHint | StateHint | WindowGroupHint); in rxvt_create_show_windows()
2814 wm_hint.input = True; in rxvt_create_show_windows()
2815 wm_hint.initial_state = (r->Options & Opt_iconic ? IconicState in rxvt_create_show_windows()
2817 wm_hint.window_group = r->TermWin.parent; in rxvt_create_show_windows()
2823 &r->szHint, &wm_hint, &class_hint); in rxvt_create_show_windows()
/dports/games/netrek-client-cow/netrek-client-cow-3.3.2/
H A Dx11window.c182 static XWMHints wm_hint = variable
1007 XSetWMHints(W_Display, newwin->window, &wm_hint); in W_MakeWindow()
1992 XSetWMHints(W_Display, newwin->window, &wm_hint); in W_MakeTextWindow()
2125 XSetWMHints(W_Display, newwin->window, &wm_hint);
2401 XSetWMHints(W_Display, newwin->window, &wm_hint); in W_MakeMenu()