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:
4
README
4
README
@@ -60,8 +60,8 @@ TODO
|
||||
For version 1.0 following aims have to be done:
|
||||
|
||||
- searching database
|
||||
- tagging files
|
||||
- user definied group of tags (represented by color in cloud tag)
|
||||
- tagging files (40%)
|
||||
- user definied group of tags (represented by color in cloud tag) (10%)
|
||||
x file details:
|
||||
x files properties
|
||||
x thumbnail
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user