extern wxHashTable *wxWidgetHashTable;
extern wxHashTable *wxClientWidgetHashTable;
static wxWindow* g_captureWindow = NULL;
+static GC g_eraseGC;
// ----------------------------------------------------------------------------
// macros
m_mainWindow = (WXWindow) 0;
m_clientWindow = (WXWindow) 0;
m_insertIntoMain = FALSE;
+ m_updateNcArea = FALSE;
m_winCaptured = FALSE;
m_needsInputFocus = FALSE;
xattributes.bit_gravity = StaticGravity;
}
- xwindow = XCreateWindow( xdisplay, xwindow, 0, 0, size2.x, size2.y,
+ 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 );
if (HasFlag( wxNO_FULL_REPAINT_ON_RESIZE ))
{
xattributes_mask |= CWBitGravity;
- xattributes.bit_gravity = StaticGravity;
+ xattributes.bit_gravity = NorthWestGravity;
}
Window xwindow = XCreateWindow( xdisplay, xparent, pos2.x, pos2.y, size2.x, size2.y,
if (xfocus)
{
wxWindow *win = wxGetWindowFromTable( xfocus );
+ if (!win)
+ {
+ win = wxGetClientWindowFromTable( xfocus );
+ }
return win;
}
}
DoMoveWindow( new_x, new_y, new_w, new_h );
-
-#if 0
- wxSizeEvent event(wxSize(new_w, new_h), GetId());
- event.SetEventObject(this);
- GetEventHandler()->ProcessEvent(event);
-#endif
}
void wxWindowX11::DoSetClientSize(int width, int height)
width -= size.x;
}
- XMoveResizeWindow( wxGlobalDisplay(), xwindow, x, y, width, height );
+ XMoveResizeWindow( wxGlobalDisplay(), xwindow, x, y, wxMax(1, width), wxMax(1, height) );
}
#else
{
if (m_updateNcArea)
{
+ // wxLogDebug("wxWindowX11::UpdateNC: %s", GetClassInfo()->GetClassName());
// Send nc paint events.
SendNcPaintEvents();
}
wxEraseEvent erase_event( GetId(), &dc );
erase_event.SetEventObject( this );
- if (!GetEventHandler()->ProcessEvent(erase_event))
+ if (!GetEventHandler()->ProcessEvent(erase_event) )
{
- Window xwindow = (Window) m_clientWindow;
Display *xdisplay = wxGlobalDisplay();
- GC xgc = XCreateGC( xdisplay, xwindow, 0, NULL );
- XSetFillStyle( xdisplay, xgc, FillSolid );
- XSetForeground( xdisplay, xgc, m_backgroundColour.GetPixel() );
+ Window xwindow = (Window) GetClientWindow();
+ XSetForeground( xdisplay, g_eraseGC, m_backgroundColour.GetPixel() );
+
wxRegionIterator upd( m_clearRegion );
while (upd)
{
- XFillRectangle( xdisplay, xwindow, xgc,
+ XFillRectangle( xdisplay, xwindow, g_eraseGC,
upd.GetX(), upd.GetY(), upd.GetWidth(), upd.GetHeight() );
upd ++;
}
- XFreeGC( xdisplay, xgc );
}
m_clearRegion.Clear();
wxNcPaintEvent nc_paint_event( GetId() );
nc_paint_event.SetEventObject( this );
GetEventHandler()->ProcessEvent( nc_paint_event );
+
+ m_updateNcArea = FALSE;
}
// ----------------------------------------------------------------------------
m_backgroundColour.CalcPixel( (WXColormap) cm );
- if (!GetMainWindow())
- return FALSE;
-
-/*
- XSetWindowAttributes attrib;
- attrib.background_pixel = colour.GetPixel();
-
- XChangeWindowAttributes(wxGlobalDisplay(),
- (Window) GetMainWindow(),
- CWBackPixel,
- & attrib);
-*/
-
+ // We don't set the background colour as we paint
+ // the background ourselves.
+ // XSetWindowBackground( xdisplay, (Window) m_clientWindow, m_backgroundColour.GetPixel() );
+
return TRUE;
}
int wxNoOptimize::ms_count = 0;
+
+// ----------------------------------------------------------------------------
+// wxDCModule
+// ----------------------------------------------------------------------------
+
+class wxWinModule : public wxModule
+{
+public:
+ bool OnInit();
+ void OnExit();
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxWinModule)
+};
+
+IMPLEMENT_DYNAMIC_CLASS(wxWinModule, wxModule)
+
+bool wxWinModule::OnInit()
+{
+ Display *xdisplay = wxGlobalDisplay();
+ int xscreen = DefaultScreen( xdisplay );
+ Window xroot = RootWindow( xdisplay, xscreen );
+ g_eraseGC = XCreateGC( xdisplay, xroot, 0, NULL );
+ XSetFillStyle( xdisplay, g_eraseGC, FillSolid );
+
+ return TRUE;
+}
+
+void wxWinModule::OnExit()
+{
+ Display *xdisplay = wxGlobalDisplay();
+ XFreeGC( xdisplay, g_eraseGC );
+}
+
+