wxSpinCtrl no longer emits event when changed programmatically.

Some GUI thread things and tests,
  Change for borders around cmposite controls.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2000-01-02 16:25:28 +00:00
parent 169267e61f
commit 07f5b19a15
11 changed files with 77 additions and 23 deletions

View File

@@ -327,7 +327,7 @@ static void draw_frame( GtkWidget *widget, wxWindow *win )
GTK_STATE_NORMAL,
GTK_SHADOW_OUT,
dx, dy,
win->m_width-dw, win->m_height-dh );
widget->allocation.width-dw, widget->allocation.height-dh );
return;
}
@@ -338,7 +338,7 @@ static void draw_frame( GtkWidget *widget, wxWindow *win )
GTK_STATE_NORMAL,
GTK_SHADOW_IN,
dx, dy,
win->m_width-dw, win->m_height-dh );
widget->allocation.width-dw, widget->allocation.height-dh );
return;
}
@@ -349,7 +349,7 @@ static void draw_frame( GtkWidget *widget, wxWindow *win )
gdk_gc_set_foreground( gc, &widget->style->black );
gdk_draw_rectangle( widget->window, gc, FALSE,
dx, dy,
win->m_width-dw-1, win->m_height-dh-1 );
widget->allocation.width-dw-1, widget->allocation.height-dh-1 );
gdk_gc_unref( gc );
return;
}