// Copyright (c) 2009 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_GTK_TABS_TAB_GTK_H_ #define CHROME_BROWSER_GTK_TABS_TAB_GTK_H_ #include "app/theme_provider.h" #include "base/basictypes.h" #include "base/message_loop.h" #include "chrome/browser/gtk/tabs/tab_renderer_gtk.h" #include "chrome/browser/tabs/tab_strip_model.h" namespace gfx { class Path; } class ThemeProvider; class TabGtk : public TabRendererGtk, public MessageLoopForUI::Observer { public: // An interface implemented by an object that can help this Tab complete // various actions. The index parameter is the index of this Tab in the // TabRenderer::Model. class TabDelegate { public: // Returns true if the specified Tab is selected. virtual bool IsTabSelected(const TabGtk* tab) const = 0; // Selects the specified Tab. virtual void SelectTab(TabGtk* tab) = 0; // Closes the specified Tab. virtual void CloseTab(TabGtk* tab) = 0; // Returns true if the specified command is enabled for the specified Tab. virtual bool IsCommandEnabledForTab( TabStripModel::ContextMenuCommand command_id, const TabGtk* tab) const = 0; // Executes the specified command for the specified Tab. virtual void ExecuteCommandForTab( TabStripModel::ContextMenuCommand command_id, TabGtk* tab) = 0; // Starts/Stops highlighting the tabs that will be affected by the // specified command for the specified Tab. virtual void StartHighlightTabsForCommand( TabStripModel::ContextMenuCommand command_id, TabGtk* tab) = 0; virtual void StopHighlightTabsForCommand( TabStripModel::ContextMenuCommand command_id, TabGtk* tab) = 0; virtual void StopAllHighlighting() = 0; // Potentially starts a drag for the specified Tab. virtual void MaybeStartDrag(TabGtk* tab, const gfx::Point& point) = 0; // Continues dragging a Tab. virtual void ContinueDrag(GdkDragContext* context) = 0; // Ends dragging a Tab. |canceled| is true if the drag was aborted in a way // other than the user releasing the mouse. Returns whether the tab has been // destroyed. virtual bool EndDrag(bool canceled) = 0; // Returns true if the associated TabStrip's delegate supports tab moving or // detaching. Used by the Frame to determine if dragging on the Tab // itself should move the window in cases where there's only one // non drag-able Tab. virtual bool HasAvailableDragActions() const = 0; // Returns the theme provider for icons and colors. virtual ThemeProvider* GetThemeProvider() = 0; }; TabGtk(TabDelegate* delegate); virtual ~TabGtk(); // Access the delegate. TabDelegate* delegate() const { return delegate_; } GtkWidget* widget() const { return event_box_; } // Used to set/check whether this Tab is being animated closed. void set_closing(bool closing) { closing_ = closing; } bool closing() const { return closing_; } // TabRendererGtk overrides: virtual bool IsSelected() const; virtual bool IsVisible() const; virtual void SetVisible(bool visible) const; virtual void CloseButtonClicked(); virtual void UpdateData(TabContents* contents, bool loading_only); // button-press-event handler that handles mouse clicks. static gboolean OnMousePress(GtkWidget* widget, GdkEventButton* event, TabGtk* tab); // button-release-event handler that handles mouse click releases. static gboolean OnMouseRelease(GtkWidget* widget, GdkEventButton* event, TabGtk* tab); // enter-notify-event handler that signals when the mouse enters the tab. static gboolean OnEnterNotify(GtkWidget* widget, GdkEventCrossing* event, TabGtk* tab); // leave-notify-event handler that signals when the mouse enters the tab. static gboolean OnLeaveNotify(GtkWidget* widget, GdkEventCrossing* event, TabGtk* tab); // drag-begin handler that signals when a drag action begins. static void OnDragBegin(GtkWidget* widget, GdkDragContext* context, TabGtk* tab); // drag-end handler that signals when a drag action ends. static void OnDragEnd(GtkWidget* widget, GdkDragContext* context, TabGtk* tab); // drag-failed handler that is emitted when the drag fails. static gboolean OnDragFailed(GtkWidget* widget, GdkDragContext* context, GtkDragResult result, TabGtk* tab); protected: // MessageLoop::Observer implementation: virtual void WillProcessEvent(GdkEvent* event); virtual void DidProcessEvent(GdkEvent* event); private: class ContextMenuController; friend class ContextMenuController; // Shows the context menu. void ShowContextMenu(); // Invoked when the context menu closes. void ContextMenuClosed(); // An instance of a delegate object that can perform various actions based on // user gestures. TabDelegate* delegate_; // True if the tab is being animated closed. bool closing_; // The context menu controller. scoped_ptr menu_controller_; // The windowless widget used to collect input events for the tab. We can't // use an OwnedWidgetGtk because of the way the dragged tab controller // destroys the source tab. The source tab is destroyed when the drag ends // before we let gtk handle the end of the drag. This results in the widget // having an extra reference, which will cause OwnedWidgetGtk.Destroy to // DCHECK. GtkWidget* event_box_; // True if this tab is being dragged. bool dragging_; DISALLOW_COPY_AND_ASSIGN(TabGtk); }; #endif // CHROME_BROWSER_GTK_TABS_TAB_GTK_H_