1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-18 03:50:25 +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

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):
"""This handles only the graphical representation of the
application. The widgets set is loaded from glade file"""
GLADE = os.path.join(utils.globals.GLADE_DIR, "main.glade")
def __init__(self, ctrl):
View.__init__(self, ctrl, self.GLADE)
# hide v2.0 features
self['separatormenuitem4'].hide()
self['list1'].hide()
self['thumbnails1'].hide()
#self['tag_cloud_textview'].drag_dest_set(0, [], 0)
return
pass # end of class