📄 gtkvscale.c
字号:
gtk_widget_queue_clear_area (GTK_WIDGET (range), x, y, width, height);}static voidgtk_vscale_size_request (GtkWidget *widget, GtkRequisition *requisition){ GtkScale *scale; gint value_width; g_return_if_fail (widget != NULL); g_return_if_fail (GTK_IS_VSCALE (widget)); g_return_if_fail (requisition != NULL); scale = GTK_SCALE (widget); requisition->width = (RANGE_CLASS (scale)->slider_width + widget->style->klass->ythickness * 2); requisition->height = (SCALE_CLASS (scale)->slider_length + widget->style->klass->xthickness) * 2; if (scale->draw_value) { value_width = gtk_scale_get_value_width (scale); if ((scale->value_pos == GTK_POS_LEFT) || (scale->value_pos == GTK_POS_RIGHT)) { requisition->width += value_width + SCALE_CLASS (scale)->value_spacing; if (requisition->height < (widget->style->font->ascent + widget->style->font->descent)) requisition->height = widget->style->font->ascent + widget->style->font->descent; } else if ((scale->value_pos == GTK_POS_TOP) || (scale->value_pos == GTK_POS_BOTTOM)) { if (requisition->width < value_width) requisition->width = value_width; requisition->height += widget->style->font->ascent + widget->style->font->descent; } }}static voidgtk_vscale_size_allocate (GtkWidget *widget, GtkAllocation *allocation){ GtkRange *range; GtkScale *scale; gint width, height; gint x, y; g_return_if_fail (widget != NULL); g_return_if_fail (GTK_IS_VSCALE (widget)); g_return_if_fail (allocation != NULL); widget->allocation = *allocation; if (GTK_WIDGET_REALIZED (widget)) { range = GTK_RANGE (widget); scale = GTK_SCALE (widget); gtk_vscale_pos_trough (GTK_VSCALE (widget), &x, &y, &width, &height); gdk_window_move_resize (range->trough, x, y, width, height); gtk_range_slider_update (GTK_RANGE (widget)); }}static voidgtk_vscale_pos_trough (GtkVScale *vscale, gint *x, gint *y, gint *w, gint *h){ GtkWidget *widget; GtkScale *scale; g_return_if_fail (vscale != NULL); g_return_if_fail (GTK_IS_VSCALE (vscale)); g_return_if_fail ((x != NULL) && (y != NULL) && (w != NULL) && (h != NULL)); widget = GTK_WIDGET (vscale); scale = GTK_SCALE (vscale); *w = (RANGE_CLASS (scale)->slider_width + widget->style->klass->xthickness * 2); *h = widget->allocation.height; if (scale->draw_value) { *x = 0; *y = 0; switch (scale->value_pos) { case GTK_POS_LEFT: *x = (gtk_scale_get_value_width (scale) + SCALE_CLASS (scale)->value_spacing + (widget->allocation.width - widget->requisition.width) / 2); break; case GTK_POS_RIGHT: *x = (widget->allocation.width - widget->requisition.width) / 2; break; case GTK_POS_TOP: *x = (widget->allocation.width - *w) / 2; *y = widget->style->font->ascent + widget->style->font->descent; *h -= *y; break; case GTK_POS_BOTTOM: *x = (widget->allocation.width - *w) / 2; *h -= widget->style->font->ascent + widget->style->font->descent; break; } } else { *x = (widget->allocation.width - *w) / 2; *y = 0; } *y += 1; *h -= 2; *x += widget->allocation.x; *y += widget->allocation.y;}static voidgtk_vscale_pos_background (GtkVScale *vscale, gint *x, gint *y, gint *w, gint *h){ GtkWidget *widget; GtkScale *scale; gint tx, ty, twidth, theight; g_return_if_fail (vscale != NULL); g_return_if_fail (GTK_IS_VSCALE (vscale)); g_return_if_fail ((x != NULL) && (y != NULL) && (w != NULL) && (h != NULL)); gtk_vscale_pos_trough (vscale, &tx, &ty, &twidth, &theight); widget = GTK_WIDGET (vscale); scale = GTK_SCALE (vscale); *x = widget->allocation.x; *y = widget->allocation.y; *w = widget->allocation.width; *h = widget->allocation.height; switch (scale->value_pos) { case GTK_POS_LEFT: *w -= twidth; break; case GTK_POS_RIGHT: *x += twidth; *w -= twidth; break; case GTK_POS_TOP: *h -= theight; break; case GTK_POS_BOTTOM: *y += theight; *h -= theight; break; }}static voidgtk_vscale_draw_slider (GtkRange *range){ GtkStateType state_type; g_return_if_fail (range != NULL); g_return_if_fail (GTK_IS_VSCALE (range)); if (range->slider) { if ((range->in_child == RANGE_CLASS (range)->slider) || (range->click_child == RANGE_CLASS (range)->slider)) state_type = GTK_STATE_PRELIGHT; else state_type = GTK_STATE_NORMAL; gtk_paint_slider (GTK_WIDGET (range)->style, range->slider, state_type, GTK_SHADOW_OUT, NULL, GTK_WIDGET (range), "vscale", 0, 0, -1, -1, GTK_ORIENTATION_VERTICAL); }}static voidgtk_vscale_draw_value (GtkScale *scale){ GtkStateType state_type; GtkWidget *widget; gchar buffer[32]; gint text_width; gint width, height; gint x, y; g_return_if_fail (scale != NULL); g_return_if_fail (GTK_IS_VSCALE (scale)); widget = GTK_WIDGET (scale); if (scale->draw_value) { sprintf (buffer, "%0.*f", GTK_RANGE (scale)->digits, GTK_RANGE (scale)->adjustment->value); text_width = gdk_string_measure (GTK_WIDGET (scale)->style->font, buffer); switch (scale->value_pos) { case GTK_POS_LEFT: gdk_window_get_position (GTK_RANGE (scale)->trough, &x, NULL); gdk_window_get_position (GTK_RANGE (scale)->slider, NULL, &y); gdk_window_get_size (GTK_RANGE (scale)->trough, &width, NULL); gdk_window_get_size (GTK_RANGE (scale)->slider, NULL, &height); x -= SCALE_CLASS (scale)->value_spacing + text_width; y += widget->allocation.y + ((height - (GTK_WIDGET (scale)->style->font->ascent + GTK_WIDGET (scale)->style->font->descent)) / 2 + GTK_WIDGET (scale)->style->font->ascent); break; case GTK_POS_RIGHT: gdk_window_get_position (GTK_RANGE (scale)->trough, &x, NULL); gdk_window_get_position (GTK_RANGE (scale)->slider, NULL, &y); gdk_window_get_size (GTK_RANGE (scale)->trough, &width, NULL); gdk_window_get_size (GTK_RANGE (scale)->slider, NULL, &height); x += width + SCALE_CLASS (scale)->value_spacing; y += widget->allocation.y + ((height - (GTK_WIDGET (scale)->style->font->ascent + GTK_WIDGET (scale)->style->font->descent)) / 2 + GTK_WIDGET (scale)->style->font->ascent); break; case GTK_POS_TOP: gdk_window_get_position (GTK_RANGE (scale)->trough, &x, &y); gdk_window_get_size (GTK_RANGE (scale)->slider, &width, NULL); gdk_window_get_size (GTK_RANGE (scale)->trough, NULL, &height); x += (width - text_width) / 2; y -= GTK_WIDGET (scale)->style->font->descent; break; case GTK_POS_BOTTOM: gdk_window_get_position (GTK_RANGE (scale)->trough, &x, &y); gdk_window_get_size (GTK_RANGE (scale)->slider, &width, NULL); gdk_window_get_size (GTK_RANGE (scale)->trough, NULL, &height); x += (width - text_width) / 2; y += height + GTK_WIDGET (scale)->style->font->ascent; break; } state_type = GTK_STATE_NORMAL; if (!GTK_WIDGET_IS_SENSITIVE (scale)) state_type = GTK_STATE_INSENSITIVE; gtk_paint_string (GTK_WIDGET (scale)->style, GTK_WIDGET (scale)->window, state_type, NULL, GTK_WIDGET (scale), "vscale", x, y, buffer); }}static gintgtk_vscale_trough_keys (GtkRange *range, GdkEventKey *key, GtkScrollType *scroll, GtkTroughType *pos){ gint return_val = FALSE; switch (key->keyval) { case GDK_Up: return_val = TRUE; *scroll = GTK_SCROLL_STEP_BACKWARD; break; case GDK_Down: return_val = TRUE; *scroll = GTK_SCROLL_STEP_FORWARD; break; case GDK_Page_Up: return_val = TRUE; *scroll = GTK_SCROLL_PAGE_BACKWARD; break; case GDK_Page_Down: return_val = TRUE; *scroll = GTK_SCROLL_PAGE_FORWARD; break; case GDK_Home: return_val = TRUE; *pos = GTK_TROUGH_START; break; case GDK_End: return_val = TRUE; *pos = GTK_TROUGH_END; break; } return return_val;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -