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

Unified Diff: chrome/browser/ui/gtk/bookmarks/bookmark_editor_gtk.h

Issue 231733005: Delete the GTK+ port of Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remerge to ToT Created 6 years, 8 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
Index: chrome/browser/ui/gtk/bookmarks/bookmark_editor_gtk.h
diff --git a/chrome/browser/ui/gtk/bookmarks/bookmark_editor_gtk.h b/chrome/browser/ui/gtk/bookmarks/bookmark_editor_gtk.h
deleted file mode 100644
index ac7c5aeea98de60d4123386564b75b68ab18ecf7..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/gtk/bookmarks/bookmark_editor_gtk.h
+++ /dev/null
@@ -1,167 +0,0 @@
-// Copyright (c) 2011 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_UI_GTK_BOOKMARKS_BOOKMARK_EDITOR_GTK_H_
-#define CHROME_BROWSER_UI_GTK_BOOKMARKS_BOOKMARK_EDITOR_GTK_H_
-
-#include <vector>
-
-#include "base/gtest_prod_util.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/strings/string16.h"
-#include "chrome/browser/bookmarks/bookmark_model_observer.h"
-#include "chrome/browser/ui/bookmarks/bookmark_editor.h"
-#include "ui/base/glib/glib_integers.h"
-#include "ui/base/gtk/gtk_signal.h"
-
-class GURL;
-
-typedef union _GdkEvent GdkEvent;
-typedef struct _GdkEventButton GdkEventButton;
-typedef struct _GtkTreeIter GtkTreeIter;
-typedef struct _GtkTreeSelection GtkTreeSelection;
-typedef struct _GtkTreeStore GtkTreeStore;
-typedef struct _GtkWidget GtkWidget;
-
-// GTK version of the bookmark editor dialog.
-class BookmarkEditorGtk : public BookmarkEditor,
- public BookmarkModelObserver {
- public:
- BookmarkEditorGtk(GtkWindow* window,
- Profile* profile,
- const BookmarkNode* parent,
- const EditDetails& details,
- BookmarkEditor::Configuration configuration);
-
- virtual ~BookmarkEditorGtk();
-
- void Show();
- void Close();
-
- private:
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, ChangeParent);
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, ChangeParentAndURL);
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, ChangeURLToExistingURL);
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, EditTitleKeepsPosition);
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, EditURLKeepsPosition);
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, ModelsMatch);
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, MoveToNewParent);
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, NewURL);
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, ChangeURLNoTree);
- FRIEND_TEST_ALL_PREFIXES(BookmarkEditorGtkTest, ChangeTitleNoTree);
-
- class ContextMenuController;
- friend class ContextMenuController;
-
- void Init(GtkWindow* parent_window);
-
- // BookmarkModel observer methods. Any structural change results in
- // resetting the tree model.
- virtual void BookmarkModelLoaded(BookmarkModel* model,
- bool ids_reassigned) OVERRIDE {}
- virtual void BookmarkNodeMoved(BookmarkModel* model,
- const BookmarkNode* old_parent,
- int old_index,
- const BookmarkNode* new_parent,
- int new_index) OVERRIDE;
- virtual void BookmarkNodeAdded(BookmarkModel* model,
- const BookmarkNode* parent,
- int index) OVERRIDE;
- virtual void BookmarkNodeRemoved(BookmarkModel* model,
- const BookmarkNode* parent,
- int old_index,
- const BookmarkNode* node) OVERRIDE;
- virtual void BookmarkAllNodesRemoved(BookmarkModel* model) OVERRIDE;
- virtual void BookmarkNodeChanged(BookmarkModel* model,
- const BookmarkNode* node) OVERRIDE {}
- virtual void BookmarkNodeChildrenReordered(BookmarkModel* model,
- const BookmarkNode* node) OVERRIDE;
- virtual void BookmarkNodeFaviconChanged(BookmarkModel* model,
- const BookmarkNode* node) OVERRIDE {}
-
- // Resets the model of the tree and updates the various buttons appropriately.
- void Reset();
-
- // Returns the current url the user has input.
- GURL GetInputURL() const;
-
- // Returns the title the user has input.
- base::string16 GetInputTitle() const;
-
- // Invokes ApplyEdits with the selected node.
- //
- // TODO(erg): This was copied from the windows version. Both should be
- // cleaned up so that we don't overload ApplyEdits.
- void ApplyEdits();
-
- // Applies the edits done by the user. |selected_parent| gives the parent of
- // the URL being edited.
- void ApplyEdits(GtkTreeIter* selected_parent);
-
- // Adds a new folder parented on |parent| and sets |child| to point to this
- // new folder.
- void AddNewFolder(GtkTreeIter* parent, GtkTreeIter* child);
-
- CHROMEGTK_CALLBACK_0(BookmarkEditorGtk, void, OnSelectionChanged);
- CHROMEGTK_CALLBACK_1(BookmarkEditorGtk, void, OnResponse, int);
- CHROMEGTK_CALLBACK_1(BookmarkEditorGtk, gboolean, OnWindowDeleteEvent,
- GdkEvent*);
-
- CHROMEGTK_CALLBACK_0(BookmarkEditorGtk, void, OnWindowDestroy);
- CHROMEGTK_CALLBACK_0(BookmarkEditorGtk, void, OnEntryChanged);
-
- CHROMEGTK_CALLBACK_0(BookmarkEditorGtk, void, OnNewFolderClicked);
-
- CHROMEGTK_CALLBACK_1(BookmarkEditorGtk, gboolean, OnTreeViewButtonPressEvent,
- GdkEventButton*);
-
- void NewFolder();
-
- // Profile the entry is from.
- Profile* profile_;
-
- // The dialog to display on screen.
- GtkWidget* dialog_;
- GtkWidget* name_entry_;
- GtkWidget* url_entry_; // This is NULL if IsEditingFolder.
- GtkWidget* tree_view_;
- GtkWidget* new_folder_button_;
-
- // Helper object that manages the currently selected item in |tree_view_|.
- GtkTreeSelection* tree_selection_;
-
- // Our local copy of the bookmark data that we make from the BookmarkModel
- // that we can modify as much as we want and still discard when the user
- // clicks Cancel.
- GtkTreeStore* tree_store_;
-
- // TODO(erg): BookmarkEditorView has an EditorTreeModel object here; convert
- // that into a GObject that implements the interface GtkTreeModel.
-
- // Initial parent to select. Is only used if node_ is NULL.
- const BookmarkNode* parent_;
-
- // Details about the node we're editing.
- const EditDetails details_;
-
- // Mode used to create nodes from.
- BookmarkModel* bb_model_;
-
- // If true, we're running the menu for the bookmark bar or other bookmarks
- // nodes.
- bool running_menu_for_root_;
-
- // Is the tree shown?
- bool show_tree_;
-
- // List of deleted bookmark folders.
- std::vector<int64> deletes_;
-
- // The context menu controller.
- scoped_ptr<ContextMenuController> menu_controller_;
-
- DISALLOW_COPY_AND_ASSIGN(BookmarkEditorGtk);
-};
-
-#endif // CHROME_BROWSER_UI_GTK_BOOKMARKS_BOOKMARK_EDITOR_GTK_H_

Powered by Google App Engine
This is Rietveld 408576698