blob: 6c82cbd019cd1486e7718ff8fe71858990b8c00b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// 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_BOOKMARKS_BOOKMARK_EDITOR_H_
#define CHROME_BROWSER_BOOKMARKS_BOOKMARK_EDITOR_H_
#include "app/gfx/native_widget_types.h"
class BookmarkNode;
class Profile;
// Small, cross platform interface that shows the correct platform specific
// bookmark editor dialog.
class BookmarkEditor {
public:
// Handler is notified when the BookmarkEditor creates a new bookmark.
// Handler is owned by the BookmarkEditor and deleted when it is deleted.
class Handler {
public:
virtual ~Handler() {}
virtual void NodeCreated(const BookmarkNode* new_node) = 0;
};
// An enumeration of the possible configurations offered.
enum Configuration {
SHOW_TREE,
NO_TREE
};
// Shows the platform specific BookmarkEditor subclass editing |node|. |node|
// may be one of three values:
// . NULL, in which a case a new entry is created initially parented to
// |parent|.
// . non-null and a url.
// . non-null and a folder. In this case the url field is not shown and an
// entry for the node is not shown in the tree.
// If |show_tree| is false the tree is not shown. BookmarkEditor takes
// ownership of |handler| and deletes it when done. |handler| may be
// null. See description of Handler for details.
static void Show(gfx::NativeView parent_window,
Profile* profile,
const BookmarkNode* parent,
const BookmarkNode* node,
Configuration configuration,
Handler* handler);
};
#endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_EDITOR_H_
|