1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 11:30:19 +01:00

* Added drag and drop support from files TreeView to tags cloud.

* Added tags add.
 * Code clean up.
 * Removed unnecessary imports.
 * Adapted to PEP8.
This commit is contained in:
2008-04-16 14:07:18 +00:00
parent f98c905591
commit a98ba36a23
4 changed files with 764 additions and 612 deletions

4
README
View File

@@ -60,8 +60,8 @@ TODO
For version 1.0 following aims have to be done: For version 1.0 following aims have to be done:
- searching database - searching database
- tagging files - tagging files (40%)
- user definied group of tags (represented by color in cloud tag) - user definied group of tags (represented by color in cloud tag) (10%)
x file details: x file details:
x files properties x files properties
x thumbnail x thumbnail

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -29,15 +29,17 @@ from gtkmvc import View
class MainView(View): class MainView(View):
"""This handles only the graphical representation of the """This handles only the graphical representation of the
application. The widgets set is loaded from glade file""" application. The widgets set is loaded from glade file"""
GLADE = os.path.join(utils.globals.GLADE_DIR, "main.glade") GLADE = os.path.join(utils.globals.GLADE_DIR, "main.glade")
def __init__(self, ctrl): def __init__(self, ctrl):
View.__init__(self, ctrl, self.GLADE) View.__init__(self, ctrl, self.GLADE)
# hide v2.0 features # hide v2.0 features
self['separatormenuitem4'].hide() self['separatormenuitem4'].hide()
self['list1'].hide() self['list1'].hide()
self['thumbnails1'].hide() self['thumbnails1'].hide()
#self['tag_cloud_textview'].drag_dest_set(0, [], 0)
return return
pass # end of class pass # end of class