+ Window xparent = (Window) parent->GetClientWindow();
+
+ // Add window's own scrollbars to main window, not to client window
+ if (parent->GetInsertIntoMain())
+ {
+ // wxLogDebug( "Inserted into main: %s", GetName().c_str() );
+ xparent = (Window) parent->GetMainWindow();
+ }
+
+ wxSize size2(size);
+ if (size2.x == -1)
+ size2.x = 20;
+ if (size2.y == -1)
+ size2.y = 20;
+
+ wxPoint pos2(pos);
+ if (pos2.x == -1)
+ pos2.x = 0;
+ if (pos2.y == -1)
+ pos2.y = 0;
+
+#if !wxUSE_NANOX
+
+#if wxUSE_TWO_WINDOWS
+ bool need_two_windows =
+ ((( wxSUNKEN_BORDER | wxRAISED_BORDER | wxSIMPLE_BORDER | wxHSCROLL | wxVSCROLL ) & m_windowStyle) != 0);
+#else
+ bool need_two_windows = FALSE;
+#endif
+
+ XSetWindowAttributes xattributes;
+ long xattributes_mask = 0;
+
+ xattributes_mask |= CWBackPixel;
+ xattributes.background_pixel = m_backgroundColour.GetPixel();
+
+ xattributes_mask |= CWBorderPixel;
+ xattributes.border_pixel = BlackPixel( xdisplay, xscreen );
+
+ xattributes_mask |= CWEventMask;
+
+ if (need_two_windows)
+ {
+ xattributes.event_mask =
+ ExposureMask | StructureNotifyMask | ColormapChangeMask;
+
+ Window xwindow = XCreateWindow( xdisplay, xparent, pos2.x, pos2.y, size2.x, size2.y,
+ 0, DefaultDepth(xdisplay,xscreen), InputOutput, xvisual, xattributes_mask, &xattributes );
+
+ XSetWindowBackgroundPixmap( xdisplay, xwindow, None );
+
+ m_mainWindow = (WXWindow) xwindow;
+ wxAddWindowToTable( xwindow, (wxWindow*) this );
+
+ XMapWindow( xdisplay, xwindow );
+
+ xattributes.event_mask =
+ ExposureMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
+ ButtonMotionMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask |
+ KeymapStateMask | FocusChangeMask | ColormapChangeMask | StructureNotifyMask |
+ PropertyChangeMask | VisibilityChangeMask ;
+
+ if (HasFlag( wxNO_FULL_REPAINT_ON_RESIZE ))
+ {
+ xattributes_mask |= CWBitGravity;
+ xattributes.bit_gravity = StaticGravity;
+ }
+
+ if (HasFlag( wxSUNKEN_BORDER) || HasFlag( wxRAISED_BORDER))
+ {
+ pos2.x = 2;
+ pos2.y = 2;
+ size2.x -= 4;
+ size2.y -= 4;
+ } else
+ if (HasFlag( wxSIMPLE_BORDER ))
+ {
+ pos2.x = 1;
+ pos2.y = 1;
+ size2.x -= 2;
+ size2.y -= 2;
+ } else
+ {
+ pos2.x = 0;
+ pos2.y = 0;
+ }
+
+ xwindow = XCreateWindow( xdisplay, xwindow, pos2.x, pos2.y, size2.x, size2.y,
+ 0, DefaultDepth(xdisplay,xscreen), InputOutput, xvisual, xattributes_mask, &xattributes );
+
+ XSetWindowBackgroundPixmap( xdisplay, xwindow, None );
+
+ m_clientWindow = (WXWindow) xwindow;
+ wxAddClientWindowToTable( xwindow, (wxWindow*) this );
+
+ XMapWindow( xdisplay, xwindow );
+ }