Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Unified Diff: chrome/browser/autocomplete/autocomplete_edit_view_gtk.h

Issue 342069: Linux: Re-enable omnibox select-all-on-click for Chrome OS builds. (Closed)
Patch Set: ifdef button press and release handlers Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
diff --git a/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h b/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
index adef44cf03271a702eed304781dc8adbc46dc1ff..cbf4965b7513154cd0d4682f893b72fab26941a8 100644
--- a/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
+++ b/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
@@ -147,6 +147,7 @@ class AutocompleteEditViewGtk : public AutocompleteEditView,
}
gboolean HandleKeyRelease(GtkWidget* widget, GdkEventKey* event);
+#if defined(OS_CHROMEOS)
static gboolean HandleViewButtonPressThunk(GtkWidget* view,
GdkEventButton* event,
gpointer self) {
@@ -162,6 +163,7 @@ class AutocompleteEditViewGtk : public AutocompleteEditView,
HandleViewButtonRelease(event);
}
gboolean HandleViewButtonRelease(GdkEventButton* event);
+#endif
static gboolean HandleViewFocusInThunk(GtkWidget* view,
GdkEventFocus* event,
@@ -383,6 +385,27 @@ class AutocompleteEditViewGtk : public AutocompleteEditView,
// ID of the signal handler for "mark-set" on |text_buffer_|.
gulong mark_set_handler_id_;
+#if defined(OS_CHROMEOS)
+ // The following variables are used to implement select-all-on-mouse-up, which
+ // is disabled in the standard Linux build due to poor interaction with the
+ // PRIMARY X selection.
+
+ // Is the first mouse button currently down? When selection marks get moved,
+ // we use this to determine if the user was highlighting text with the mouse
+ // -- if so, we avoid selecting all the text on mouse-up.
+ bool button_1_pressed_;
+
+ // Did the user change the selected text in the middle of the current click?
+ // If so, we don't select all of the text when the button is released -- we
+ // don't want to blow away their selection.
+ bool text_selected_during_click_;
+
+ // Was the text view already focused before the user clicked in it? We use
+ // this to figure out whether we should select all of the text when the button
+ // is released (we only do so if the view was initially unfocused).
+ bool text_view_focused_before_button_press_;
+#endif
+
#if !defined(TOOLKIT_VIEWS)
// Supplies colors, et cetera.
GtkThemeProvider* theme_provider_;
« no previous file with comments | « no previous file | chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698