/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/frontend/gtk/handler.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-09-11 02:04:11 UTC
  • mto: (0.14.1 main) (93.1.1 win32.bialix)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060911020411-8195205657edb791
Implemented drive selector for Win32 platforms.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
import os
17
18
import sys
18
19
 
19
20
try:
47
48
    def on_about_activate(self, widget):
48
49
        self.dialog.about()
49
50
        
 
51
    def on_drive_activate(self, widget):
 
52
        self.comm.refresh_right(widget.get_name() + ':' + os.sep)
 
53
    
50
54
    def on_menuitem_add_files_activate(self, widget):
51
55
        """ Add file(s)... menu handler. """
52
56
        from add import OliveAdd