+2005-08-06 Kristian Høgsberg <krh@redhat.com>
+
+ * backend/ev-selection.c: (ev_selection_render_selection):
+ * backend/ev-selection.h:
+ * pdf/ev-poppler.cc:
+ * shell/ev-jobs.c: (ev_job_render_new):
+ * shell/ev-jobs.h:
+ * shell/ev-pixbuf-cache.c: (get_selection_colors),
+ (add_job_if_needed), (ev_pixbuf_cache_get_selection_pixbuf):
+ * shell/ev-view.c: (ev_view_focus_in), (ev_view_focus_out),
+ (ev_view_class_init):
+
+ Change selection color on focus in and focus out events. Also,
+ poppler now uses GdkColor for specifying the selection colors, so
+ drop some awkward conversion code.
+
2005-08-06 Yair Hershkovitz <yairhr@gmail.com>
* configure.ac: Added Hebrew translation
GdkPixbuf **pixbuf,
EvRectangle *points,
EvRectangle *old_points,
- guint text,
- guint base)
+ GdkColor *text,
+ GdkColor *base)
{
EvSelectionIface *iface = EV_SELECTION_GET_IFACE (selection);
GdkPixbuf **pixbuf,
EvRectangle *points,
EvRectangle *old_points,
- guint text,
- guint base);
+ GdkColor *text,
+ GdkColor *base);
GdkRegion * (* get_selection_map) (EvSelection *selection,
EvRenderContext *rc);
GdkRegion * (* get_selection_region) (EvSelection *selection,
GdkPixbuf **pixbuf,
EvRectangle *points,
EvRectangle *old_points,
- guint text,
- guint base);
+ GdkColor *text,
+ GdkColor *base);
GdkRegion *ev_selection_get_selection_map (EvSelection *selection,
EvRenderContext *rc);
GdkRegion *ev_selection_get_selection_region (EvSelection *selection,
GdkPixbuf **pixbuf,
EvRectangle *points,
EvRectangle *old_points,
- guint text,
- guint base)
+ GdkColor *text,
+ GdkColor *base)
{
PdfDocument *pdf_document;
double width_points, height_points;
gint width,
gint height,
EvRectangle *selection_points,
- guint text,
- guint base,
+ GdkColor *text,
+ GdkColor *base,
gboolean include_links,
gboolean include_text,
gboolean include_selection)
GdkPixbuf *selection;
GdkRegion *selection_region;
EvRectangle selection_points;
- guint base;
- guint text;
+ GdkColor *base;
+ GdkColor *text;
gint include_links : 1;
gint include_text : 1;
gint width,
gint height,
EvRectangle *selection_points,
- guint text,
- guint base,
+ GdkColor *text,
+ GdkColor *base,
gboolean include_links,
gboolean include_text,
gboolean include_selection);
static void copy_job_to_job_info (EvJobRender *job_render,
CacheJobInfo *job_info,
EvPixbufCache *pixbuf_cache);
-static guint convert_gdk_color_to_uint (GdkColor *color);
static gboolean new_selection_pixbuf_needed(EvPixbufCache *pixbuf_cache,
CacheJobInfo *job_info,
gint page,
#define FIRST_VISABLE_PREV(pixbuf_cache) \
(MAX (0, pixbuf_cache->preload_cache_size + 1 - pixbuf_cache->start_page))
+static void
+get_selection_colors (GtkWidget *widget, GdkColor **text, GdkColor **base)
+{
+ if (GTK_WIDGET_HAS_FOCUS (widget)) {
+ *text = &widget->style->text [GTK_STATE_SELECTED];
+ *base = &widget->style->base [GTK_STATE_SELECTED];
+ } else {
+ *text = &widget->style->text [GTK_STATE_ACTIVE];
+ *base = &widget->style->base [GTK_STATE_ACTIVE];
+ }
+}
+
static void
add_job_if_needed (EvPixbufCache *pixbuf_cache,
CacheJobInfo *job_info,
gboolean include_text = FALSE;
gboolean include_selection = FALSE;
int width, height;
- guint text, base;
+ GdkColor *text, *base;
if (job_info->job)
return;
gtk_widget_ensure_style (pixbuf_cache->view);
- text = convert_gdk_color_to_uint (& (pixbuf_cache->view->style->text [GTK_STATE_SELECTED]));
- base = convert_gdk_color_to_uint (& (pixbuf_cache->view->style->base [GTK_STATE_SELECTED]));
+ get_selection_colors (pixbuf_cache->view, &text, &base);
job_info->job = ev_job_render_new (pixbuf_cache->document,
job_info->rc,
return job_info->link_mapping;
}
-/* Selection */
-static guint
-convert_gdk_color_to_uint (GdkColor *color)
-{
- g_assert (color);
-
- return 0xff << 24 |
- (color->red & 0xff00) << 8 |
- (color->green & 0xff00) |
- (color->blue & 0xff00) >> 8;
-}
-
static gboolean
new_selection_pixbuf_needed (EvPixbufCache *pixbuf_cache,
CacheJobInfo *job_info,
*/
if (ev_rect_cmp (&(job_info->new_points), &(job_info->selection_points))) {
EvRectangle *old_points;
- guint text, base;
+ GdkColor *text, *base;
/* we need to get a new selection pixbuf */
ev_document_doc_mutex_lock ();
gtk_widget_ensure_style (pixbuf_cache->view);
- text = convert_gdk_color_to_uint (& (pixbuf_cache->view->style->text [GTK_STATE_SELECTED]));
- base = convert_gdk_color_to_uint (& (pixbuf_cache->view->style->base [GTK_STATE_SELECTED]));
+ get_selection_colors (pixbuf_cache->view, &text, &base);
ev_selection_render_selection (EV_SELECTION (pixbuf_cache->document),
job_info->rc, &(job_info->selection),
return FALSE;
}
+static gint
+ev_view_focus_in (GtkWidget *widget,
+ GdkEventFocus *event)
+{
+ if (EV_VIEW (widget)->pixbuf_cache)
+ ev_pixbuf_cache_style_changed (EV_VIEW (widget)->pixbuf_cache);
+ gtk_widget_queue_draw (widget);
+
+ return FALSE;
+}
+
+static gint
+ev_view_focus_out (GtkWidget *widget,
+ GdkEventFocus *event)
+{
+ if (EV_VIEW (widget)->pixbuf_cache)
+ ev_pixbuf_cache_style_changed (EV_VIEW (widget)->pixbuf_cache);
+ gtk_widget_queue_draw (widget);
+
+ return FALSE;
+}
+
static gboolean
ev_view_leave_notify_event (GtkWidget *widget, GdkEventCrossing *event)
{
widget_class->button_press_event = ev_view_button_press_event;
widget_class->motion_notify_event = ev_view_motion_notify_event;
widget_class->button_release_event = ev_view_button_release_event;
+ widget_class->focus_in_event = ev_view_focus_in;
+ widget_class->focus_out_event = ev_view_focus_out;
widget_class->size_request = ev_view_size_request;
widget_class->size_allocate = ev_view_size_allocate;
widget_class->realize = ev_view_realize;