/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-07-31 18:17:48 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-20060731181748-02e1970a99f30150
2006-07-31  Szilveszter Farkas <Szilveszter.Farkas@gmail.com>

    * Back from holiday.
    * olive.glade: separated branch and checkout dialogs (Fixed: #54019)
    * olive/frontend/gtk/checkout.py: file added respectively
    * olive/frontend/gtk/branch.py: removed checkout options
    * olive/frontend/gtk/handler.py: modified handler names + added checkout
    * olive/frontend/gtk/push.py: window gets properly resized (Fixed: #54676)

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
from add import OliveAdd
33
33
from branch import OliveBranch
 
34
from checkout import OliveCheckout
34
35
from commit import OliveCommit
35
36
from dialog import OliveDialog
36
37
from push import OlivePush
52
53
        add = OliveAdd(self.gladefile, self.comm)
53
54
        add.display()
54
55
    
55
 
    def on_menuitem_branch_branch_activate(self, widget):
56
 
        """ Branch/Branch... menu handler. """
 
56
    def on_menuitem_branch_get_activate(self, widget):
 
57
        """ Branch/Get... menu handler. """
57
58
        branch = OliveBranch(self.gladefile, self.comm)
58
59
        branch.display()
59
60
    
 
61
    def on_menuitem_branch_checkout_activate(self, widget):
 
62
        """ Branch/Checkout... menu handler. """
 
63
        checkout = OliveCheckout(self.gladefile, self.comm)
 
64
        checkout.display()
 
65
    
60
66
    def on_menuitem_branch_commit_activate(self, widget):
61
67
        """ Branch/Commit... menu handler. """
62
68
        commit = OliveCommit(self.gladefile, self.comm)