src/eric7/WebBrowser/Bookmarks/BookmarkNode.py

branch
eric7
changeset 10475
ee41fab001f2
parent 10439
21c28b0f9e41
child 10482
72d9b5ea39b4
equal deleted inserted replaced
10474:c18ca679259d 10475:ee41fab001f2
13 class BookmarkNode: 13 class BookmarkNode:
14 """ 14 """
15 Class implementing the bookmark node type. 15 Class implementing the bookmark node type.
16 """ 16 """
17 17
18 # TODO: change this to an enum
18 # possible bookmark node types 19 # possible bookmark node types
19 Root = 0 20 Root = 0
20 Folder = 1 21 Folder = 1
21 Bookmark = 2 22 Bookmark = 2
22 Separator = 3 23 Separator = 3
23 24
25 # TODO: change this to an enum
24 # possible timestamp types 26 # possible timestamp types
25 TsAdded = 0 27 TsAdded = 0
26 TsModified = 1 28 TsModified = 1
27 TsVisited = 2 29 TsVisited = 2
28 30

eric ide

mercurial