a bit of debug code
radiobox gets frames again git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2361 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -79,11 +79,12 @@ MyCanvas::MyCanvas( wxWindow *parent, wxWindowID id,
|
|||||||
const wxPoint &pos, const wxSize &size )
|
const wxPoint &pos, const wxSize &size )
|
||||||
: wxScrolledWindow( parent, id, pos, size, wxSUNKEN_BORDER )
|
: wxScrolledWindow( parent, id, pos, size, wxSUNKEN_BORDER )
|
||||||
{
|
{
|
||||||
(void) new wxButton( this, -1, "wxButton", wxPoint(10,10) );
|
|
||||||
|
// (void) new wxButton( this, -1, "wxButton", wxPoint(10,10) );
|
||||||
|
|
||||||
(void) new wxTextCtrl( this, -1, "wxTextCtrl", wxPoint(10,50) );
|
// (void) new wxTextCtrl( this, -1, "wxTextCtrl", wxPoint(10,50) );
|
||||||
|
|
||||||
(void) new wxCheckBox( this, -1, "Disable", wxPoint(10,90) );
|
(void) new wxRadioButton( this, -1, "Disable", wxPoint(10,90) );
|
||||||
|
|
||||||
wxString choices[] =
|
wxString choices[] =
|
||||||
{
|
{
|
||||||
@@ -94,9 +95,9 @@ MyCanvas::MyCanvas( wxWindow *parent, wxWindowID id,
|
|||||||
"examples."
|
"examples."
|
||||||
};
|
};
|
||||||
|
|
||||||
(void) new wxComboBox( this, -1, "This", wxPoint(10,130), wxDefaultSize, 5, choices );
|
// (void) new wxComboBox( this, -1, "This", wxPoint(10,130), wxDefaultSize, 5, choices );
|
||||||
|
|
||||||
(void) new wxRadioBox( this, -1, "This", wxPoint(10,200), wxDefaultSize, 5, choices );
|
// (void) new wxRadioBox( this, -1, "This", wxPoint(10,200), wxDefaultSize, 5, choices );
|
||||||
}
|
}
|
||||||
|
|
||||||
MyCanvas::~MyCanvas()
|
MyCanvas::~MyCanvas()
|
||||||
@@ -105,6 +106,8 @@ MyCanvas::~MyCanvas()
|
|||||||
|
|
||||||
void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) )
|
void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) )
|
||||||
{
|
{
|
||||||
|
return;
|
||||||
|
|
||||||
wxPaintDC dc( this );
|
wxPaintDC dc( this );
|
||||||
PrepareDC( dc );
|
PrepareDC( dc );
|
||||||
|
|
||||||
|
@@ -249,7 +249,7 @@ bool wxRadioBox::Show( bool show )
|
|||||||
|
|
||||||
wxWindow::Show( show );
|
wxWindow::Show( show );
|
||||||
|
|
||||||
if ((m_windowStyle & wxNO_BORDER) == 0)
|
if ((m_windowStyle & wxNO_BORDER) != 0)
|
||||||
gtk_widget_hide( m_widget );
|
gtk_widget_hide( m_widget );
|
||||||
|
|
||||||
wxNode *node = m_boxes.First();
|
wxNode *node = m_boxes.First();
|
||||||
|
@@ -339,6 +339,8 @@ static gint gtk_window_key_press_callback( GtkWidget *widget, GdkEventKey *gdk_e
|
|||||||
if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
|
if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
|
||||||
wxPrintf( win->GetClassInfo()->GetClassName() );
|
wxPrintf( win->GetClassInfo()->GetClassName() );
|
||||||
wxPrintf( _T(".\n") );
|
wxPrintf( _T(".\n") );
|
||||||
|
|
||||||
|
wxPrintf( _T("keyval: %d.\n"), (int) gdk_event->keyval );
|
||||||
*/
|
*/
|
||||||
|
|
||||||
long key_code = 0;
|
long key_code = 0;
|
||||||
@@ -3331,6 +3333,45 @@ void wxWindow::ScrollWindow( int dx, int dy, const wxRect* WXUNUSED(rect) )
|
|||||||
|
|
||||||
wxCHECK_RET( m_wxwindow != NULL, _T("window needs client area for scrolling") );
|
wxCHECK_RET( m_wxwindow != NULL, _T("window needs client area for scrolling") );
|
||||||
|
|
||||||
|
if (!m_scrollGC)
|
||||||
|
{
|
||||||
|
m_scrollGC = gdk_gc_new( m_wxwindow->window );
|
||||||
|
gdk_gc_set_exposures( m_scrollGC, TRUE );
|
||||||
|
}
|
||||||
|
|
||||||
|
int cw = 0;
|
||||||
|
int ch = 0;
|
||||||
|
GetClientSize( &cw, &ch );
|
||||||
|
int w = cw - abs(dx);
|
||||||
|
int h = ch - abs(dy);
|
||||||
|
|
||||||
|
if ((h < 0) || (w < 0))
|
||||||
|
{
|
||||||
|
Refresh();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
int s_x = 0;
|
||||||
|
int s_y = 0;
|
||||||
|
if (dx < 0) s_x = -dx;
|
||||||
|
if (dy < 0) s_y = -dy;
|
||||||
|
int d_x = 0;
|
||||||
|
int d_y = 0;
|
||||||
|
if (dx > 0) d_x = dx;
|
||||||
|
if (dy > 0) d_y = dy;
|
||||||
|
|
||||||
|
gdk_window_copy_area( m_wxwindow->window, m_scrollGC, d_x, d_y,
|
||||||
|
m_wxwindow->window, s_x, s_y, w, h );
|
||||||
|
|
||||||
|
wxRect rect;
|
||||||
|
if (dx < 0) rect.x = cw+dx; else rect.x = 0;
|
||||||
|
if (dy < 0) rect.y = ch+dy; else rect.y = 0;
|
||||||
|
if (dy != 0) rect.width = cw; else rect.width = abs(dx);
|
||||||
|
if (dx != 0) rect.height = ch; else rect.height = abs(dy);
|
||||||
|
|
||||||
|
Refresh( TRUE, &rect );
|
||||||
|
}
|
||||||
|
|
||||||
wxNode *node = m_children.First();
|
wxNode *node = m_children.First();
|
||||||
while (node)
|
while (node)
|
||||||
{
|
{
|
||||||
@@ -3339,42 +3380,6 @@ void wxWindow::ScrollWindow( int dx, int dy, const wxRect* WXUNUSED(rect) )
|
|||||||
node = node->Next();
|
node = node->Next();
|
||||||
}
|
}
|
||||||
|
|
||||||
int cw = 0;
|
|
||||||
int ch = 0;
|
|
||||||
GetClientSize( &cw, &ch );
|
|
||||||
|
|
||||||
int w = cw - abs(dx);
|
|
||||||
int h = ch - abs(dy);
|
|
||||||
if ((h < 0) || (w < 0))
|
|
||||||
{
|
|
||||||
Refresh();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
int s_x = 0;
|
|
||||||
int s_y = 0;
|
|
||||||
if (dx < 0) s_x = -dx;
|
|
||||||
if (dy < 0) s_y = -dy;
|
|
||||||
int d_x = 0;
|
|
||||||
int d_y = 0;
|
|
||||||
if (dx > 0) d_x = dx;
|
|
||||||
if (dy > 0) d_y = dy;
|
|
||||||
|
|
||||||
if (!m_scrollGC)
|
|
||||||
{
|
|
||||||
m_scrollGC = gdk_gc_new( m_wxwindow->window );
|
|
||||||
gdk_gc_set_exposures( m_scrollGC, TRUE );
|
|
||||||
}
|
|
||||||
|
|
||||||
gdk_window_copy_area( m_wxwindow->window, m_scrollGC, d_x, d_y,
|
|
||||||
m_wxwindow->window, s_x, s_y, w, h );
|
|
||||||
|
|
||||||
wxRect rect;
|
|
||||||
if (dx < 0) rect.x = cw+dx; else rect.x = 0;
|
|
||||||
if (dy < 0) rect.y = ch+dy; else rect.y = 0;
|
|
||||||
if (dy != 0) rect.width = cw; else rect.width = abs(dx);
|
|
||||||
if (dx != 0) rect.height = ch; else rect.height = abs(dy);
|
|
||||||
|
|
||||||
Refresh( TRUE, &rect );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------------------------------------------
|
//-------------------------------------------------------------------------------------
|
||||||
|
@@ -249,7 +249,7 @@ bool wxRadioBox::Show( bool show )
|
|||||||
|
|
||||||
wxWindow::Show( show );
|
wxWindow::Show( show );
|
||||||
|
|
||||||
if ((m_windowStyle & wxNO_BORDER) == 0)
|
if ((m_windowStyle & wxNO_BORDER) != 0)
|
||||||
gtk_widget_hide( m_widget );
|
gtk_widget_hide( m_widget );
|
||||||
|
|
||||||
wxNode *node = m_boxes.First();
|
wxNode *node = m_boxes.First();
|
||||||
|
@@ -339,6 +339,8 @@ static gint gtk_window_key_press_callback( GtkWidget *widget, GdkEventKey *gdk_e
|
|||||||
if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
|
if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
|
||||||
wxPrintf( win->GetClassInfo()->GetClassName() );
|
wxPrintf( win->GetClassInfo()->GetClassName() );
|
||||||
wxPrintf( _T(".\n") );
|
wxPrintf( _T(".\n") );
|
||||||
|
|
||||||
|
wxPrintf( _T("keyval: %d.\n"), (int) gdk_event->keyval );
|
||||||
*/
|
*/
|
||||||
|
|
||||||
long key_code = 0;
|
long key_code = 0;
|
||||||
@@ -3331,6 +3333,45 @@ void wxWindow::ScrollWindow( int dx, int dy, const wxRect* WXUNUSED(rect) )
|
|||||||
|
|
||||||
wxCHECK_RET( m_wxwindow != NULL, _T("window needs client area for scrolling") );
|
wxCHECK_RET( m_wxwindow != NULL, _T("window needs client area for scrolling") );
|
||||||
|
|
||||||
|
if (!m_scrollGC)
|
||||||
|
{
|
||||||
|
m_scrollGC = gdk_gc_new( m_wxwindow->window );
|
||||||
|
gdk_gc_set_exposures( m_scrollGC, TRUE );
|
||||||
|
}
|
||||||
|
|
||||||
|
int cw = 0;
|
||||||
|
int ch = 0;
|
||||||
|
GetClientSize( &cw, &ch );
|
||||||
|
int w = cw - abs(dx);
|
||||||
|
int h = ch - abs(dy);
|
||||||
|
|
||||||
|
if ((h < 0) || (w < 0))
|
||||||
|
{
|
||||||
|
Refresh();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
int s_x = 0;
|
||||||
|
int s_y = 0;
|
||||||
|
if (dx < 0) s_x = -dx;
|
||||||
|
if (dy < 0) s_y = -dy;
|
||||||
|
int d_x = 0;
|
||||||
|
int d_y = 0;
|
||||||
|
if (dx > 0) d_x = dx;
|
||||||
|
if (dy > 0) d_y = dy;
|
||||||
|
|
||||||
|
gdk_window_copy_area( m_wxwindow->window, m_scrollGC, d_x, d_y,
|
||||||
|
m_wxwindow->window, s_x, s_y, w, h );
|
||||||
|
|
||||||
|
wxRect rect;
|
||||||
|
if (dx < 0) rect.x = cw+dx; else rect.x = 0;
|
||||||
|
if (dy < 0) rect.y = ch+dy; else rect.y = 0;
|
||||||
|
if (dy != 0) rect.width = cw; else rect.width = abs(dx);
|
||||||
|
if (dx != 0) rect.height = ch; else rect.height = abs(dy);
|
||||||
|
|
||||||
|
Refresh( TRUE, &rect );
|
||||||
|
}
|
||||||
|
|
||||||
wxNode *node = m_children.First();
|
wxNode *node = m_children.First();
|
||||||
while (node)
|
while (node)
|
||||||
{
|
{
|
||||||
@@ -3339,42 +3380,6 @@ void wxWindow::ScrollWindow( int dx, int dy, const wxRect* WXUNUSED(rect) )
|
|||||||
node = node->Next();
|
node = node->Next();
|
||||||
}
|
}
|
||||||
|
|
||||||
int cw = 0;
|
|
||||||
int ch = 0;
|
|
||||||
GetClientSize( &cw, &ch );
|
|
||||||
|
|
||||||
int w = cw - abs(dx);
|
|
||||||
int h = ch - abs(dy);
|
|
||||||
if ((h < 0) || (w < 0))
|
|
||||||
{
|
|
||||||
Refresh();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
int s_x = 0;
|
|
||||||
int s_y = 0;
|
|
||||||
if (dx < 0) s_x = -dx;
|
|
||||||
if (dy < 0) s_y = -dy;
|
|
||||||
int d_x = 0;
|
|
||||||
int d_y = 0;
|
|
||||||
if (dx > 0) d_x = dx;
|
|
||||||
if (dy > 0) d_y = dy;
|
|
||||||
|
|
||||||
if (!m_scrollGC)
|
|
||||||
{
|
|
||||||
m_scrollGC = gdk_gc_new( m_wxwindow->window );
|
|
||||||
gdk_gc_set_exposures( m_scrollGC, TRUE );
|
|
||||||
}
|
|
||||||
|
|
||||||
gdk_window_copy_area( m_wxwindow->window, m_scrollGC, d_x, d_y,
|
|
||||||
m_wxwindow->window, s_x, s_y, w, h );
|
|
||||||
|
|
||||||
wxRect rect;
|
|
||||||
if (dx < 0) rect.x = cw+dx; else rect.x = 0;
|
|
||||||
if (dy < 0) rect.y = ch+dy; else rect.y = 0;
|
|
||||||
if (dy != 0) rect.width = cw; else rect.width = abs(dx);
|
|
||||||
if (dx != 0) rect.height = ch; else rect.height = abs(dy);
|
|
||||||
|
|
||||||
Refresh( TRUE, &rect );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------------------------------------------
|
//-------------------------------------------------------------------------------------
|
||||||
|
Reference in New Issue
Block a user