Lines Matching refs:text_area
456 GdkRectangle text_area;
488 gtk_entry_get_text_area (GTK_ENTRY (widget), &text_area);
518 layout_offset_x = text_area.x + text_area.width - logical.width - 4;
554 progress_x = text_area.width * progress_fraction;
560 progress_width = text_area.width - progress_x;
561 progress_height = text_area.height;
572 progress_width = text_area.width * progress_fraction;
573 progress_height = text_area.height;
584 cairo_rectangle (cr, 0, 0, text_area.width, text_area.height);
594 cairo_move_to (cr, layout_offset_x, text_area.y + layout_offset_y-3);
608 cairo_move_to (cr, layout_offset_x, text_area.y + layout_offset_y-3);
706 GdkRectangle text_area;
707 gtk_entry_get_text_area (GTK_ENTRY (widget), &text_area);
709 if (x >= text_area.x && x < text_area.width &&
710 y >= text_area.y && y < text_area.height)
712 x -= text_area.x;
713 y -= text_area.y;
720 else if (y > text_area.height / 2)
780 GdkRectangle text_area;
781 gtk_entry_get_text_area (GTK_ENTRY (widget), &text_area);
795 x = text_area.width - x;
808 step = (upper - lower) / text_area.width / 10.0;
815 diff = x - (text_area.width - private->start_x);
830 fraction = x / (gdouble) text_area.width;