Home
last modified time | relevance | path

Searched refs:winAttrs (Results 1 – 5 of 5) sorted by relevance

/dports/x11-toolkits/blt/blt2.5/generic/
H A DbltDragdrop.c769 XWindowAttributes winAttrs; local
771 if (XGetWindowAttributes(display, window, &winAttrs)) {
772 *x1Ptr = winAttrs.x;
773 *y1Ptr = winAttrs.y;
774 *x2Ptr = winAttrs.x + winAttrs.width - 1;
775 *y2Ptr = winAttrs.y + winAttrs.height - 1;
777 return (winAttrs.map_state == IsViewable);
H A DbltUnixDnd.c931 XWindowAttributes winAttrs; local
933 if (XGetWindowAttributes(display, windowPtr->window, &winAttrs)) {
934 windowPtr->x1 = winAttrs.x;
935 windowPtr->y1 = winAttrs.y;
936 windowPtr->x2 = winAttrs.x + winAttrs.width - 1;
937 windowPtr->y2 = winAttrs.y + winAttrs.height - 1;
939 return (winAttrs.map_state == IsViewable);
/dports/net/samba412/samba-4.12.15/source3/modules/
H A Dvfs_gpfs.c1836 attrs.winAttrs = vfs_gpfs_dosmode_to_winattrs(dosmode); in vfs_gpfs_set_dos_attributes()
1870 attrs.winAttrs = vfs_gpfs_dosmode_to_winattrs(dosmode); in vfs_gpfs_fset_dos_attributes()
2050 attrs.winAttrs = 0; in vfs_gpfs_ntimes()
2129 if ((attrs.winAttrs & GPFS_WINATTR_OFFLINE) != 0) { in vfs_gpfs_is_offline()
/dports/biology/ncbi-toolkit/ncbi/vibrant/
H A Dvibwndws.c2145 WindowAttributes winAttrs = kWindowStandardHandlerAttribute; in Nlm_NewWindow() local
2147 WindowAttributes winAttrs = kWindowCompositingAttribute; /* kWindowStandardHandlerAttribute; */ in Nlm_NewWindow() local
2205 winAttrs |= kWindowStandardDocumentAttributes; in Nlm_NewWindow()
2210 winAttrs |= kWindowCloseBoxAttribute | kWindowCollapseBoxAttribute; in Nlm_NewWindow()
2215 winAttrs = kWindowNoAttributes; in Nlm_NewWindow()
2219 winAttrs |= kWindowCloseBoxAttribute; in Nlm_NewWindow()
2223 winAttrs |= kWindowStandardFloatingAttributes; in Nlm_NewWindow()
2228 winAttrs |= kWindowNoAttributes; in Nlm_NewWindow()
2252 winAttrs &= ~kWindowCloseBoxAttribute; in Nlm_NewWindow()
2254 osErr = CreateNewWindow(winClass, winAttrs, &rtool, &wptr); in Nlm_NewWindow()
/dports/net/samba412/samba-4.12.15/third_party/gpfs/
H A Dgpfs.h419 unsigned int winAttrs; /* values as defined below */ member