/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
1
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic) <szilveszter.farkas@gmail.com>
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
17
import sys
18
19
try:
20
    import pygtk
21
    pygtk.require("2.0")
22
except:
23
    pass
24
try:
25
    import gtk
26
    import gtk.glade
27
    import gobject
28
    import pango
29
except:
30
    sys.exit(1)
31
32
import bzrlib
0.8.35 by Szilveszter Farkas (Phanatic)
Fixed a small bug in the Status window.
33
import bzrlib.errors as errors
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
34
35
from bzrlib.status import show_tree_status
36
from bzrlib.workingtree import WorkingTree
37
38
from dialog import OliveDialog
39
40
class OliveStatus:
41
    """ Display Status window and perform the needed actions. """
0.13.6 by Jelmer Vernooij
Don't pass along dialog context everywhere.
42
    def __init__(self, gladefile, wt, wtpath):
0.8.46 by Szilveszter Farkas (Phanatic)
Modified OliveDialog class interface; huge cleanups.
43
        """ Initialize the Status window. """
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
44
        self.gladefile = gladefile
45
        self.glade = gtk.glade.XML(self.gladefile, 'window_status')
46
        
0.8.35 by Szilveszter Farkas (Phanatic)
Fixed a small bug in the Status window.
47
        # Get the Status window widget
48
        self.window = self.glade.get_widget('window_status')
0.12.1 by Jelmer Vernooij
Don't use communicator for status.
49
        self.wt = wt
50
        self.wtpath = wtpath
0.8.35 by Szilveszter Farkas (Phanatic)
Fixed a small bug in the Status window.
51
        
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
52
        # Check if current location is a branch
53
        try:
0.12.1 by Jelmer Vernooij
Don't use communicator for status.
54
            branch = wt.branch
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
55
        except errors.NotBranchError:
56
            self.notbranch = True
57
            return
58
        except:
59
            raise
60
        
0.12.1 by Jelmer Vernooij
Don't use communicator for status.
61
        file_id = self.wt.path2id(wtpath)
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
62
63
        self.notbranch = False
64
        if file_id is None:
65
            self.notbranch = True
66
            return
67
        
68
        # Set the old working tree
69
        self.old_tree = self.wt.branch.repository.revision_tree(self.wt.branch.last_revision())
70
        
71
        # Dictionary for signal_autoconnect
72
        dic = { "on_button_status_close_clicked": self.close }
73
        
74
        # Connect the signals to the handlers
75
        self.glade.signal_autoconnect(dic)
76
        
77
        # Generate status output
78
        self._generate_status()
79
80
    def _generate_status(self):
81
        """ Generate 'bzr status' output. """
82
        self.model = gtk.TreeStore(str, str)
83
        self.treeview = self.glade.get_widget('treeview_status')
84
        self.treeview.set_model(self.model)
85
        
86
        cell = gtk.CellRendererText()
87
        cell.set_property("width-chars", 20)
88
        column = gtk.TreeViewColumn()
89
        column.pack_start(cell, expand=True)
90
        column.add_attribute(cell, "text", 0)
91
        self.treeview.append_column(column)
92
        
0.12.1 by Jelmer Vernooij
Don't use communicator for status.
93
        delta = self.wt.changes_from(self.old_tree)
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
94
0.8.80 by Szilveszter Farkas (Phanatic)
If the TreeView in the Status window would be empty, display a "No changes." message.
95
        changes = False
96
        
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
97
        if len(delta.added):
0.8.80 by Szilveszter Farkas (Phanatic)
If the TreeView in the Status window would be empty, display a "No changes." message.
98
            changes = True
0.8.55 by Szilveszter Farkas (Phanatic)
Gettext support added.
99
            titer = self.model.append(None, [ _('Added'), None ])
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
100
            for path, id, kind in delta.added:
101
                self.model.append(titer, [ path, path ])
102
103
        if len(delta.removed):
0.8.80 by Szilveszter Farkas (Phanatic)
If the TreeView in the Status window would be empty, display a "No changes." message.
104
            changes = True
0.8.55 by Szilveszter Farkas (Phanatic)
Gettext support added.
105
            titer = self.model.append(None, [ _('Removed'), None ])
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
106
            for path, id, kind in delta.removed:
107
                self.model.append(titer, [ path, path ])
108
109
        if len(delta.renamed):
0.8.80 by Szilveszter Farkas (Phanatic)
If the TreeView in the Status window would be empty, display a "No changes." message.
110
            changes = True
0.8.55 by Szilveszter Farkas (Phanatic)
Gettext support added.
111
            titer = self.model.append(None, [ _('Renamed'), None ])
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
112
            for oldpath, newpath, id, kind, text_modified, meta_modified \
113
                    in delta.renamed:
114
                self.model.append(titer, [ oldpath, newpath ])
115
116
        if len(delta.modified):
0.8.80 by Szilveszter Farkas (Phanatic)
If the TreeView in the Status window would be empty, display a "No changes." message.
117
            changes = True
0.8.55 by Szilveszter Farkas (Phanatic)
Gettext support added.
118
            titer = self.model.append(None, [ _('Modified'), None ])
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
119
            for path, id, kind, text_modified, meta_modified in delta.modified:
120
                self.model.append(titer, [ path, path ])
121
        
122
        done_unknown = False
123
        for path in self.wt.unknowns():
0.8.80 by Szilveszter Farkas (Phanatic)
If the TreeView in the Status window would be empty, display a "No changes." message.
124
            changes = True
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
125
            if not done_unknown:
0.8.55 by Szilveszter Farkas (Phanatic)
Gettext support added.
126
                titer = self.model.append(None, [ _('Unknown'), None ])
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
127
                done_unknown = True
128
            self.model.append(titer, [ path, path ])
129
0.8.80 by Szilveszter Farkas (Phanatic)
If the TreeView in the Status window would be empty, display a "No changes." message.
130
        if not changes:
131
            self.model.append(None, [ _('No changes.'), None ])
132
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
133
        self.treeview.expand_all()
134
    
135
    def display(self):
136
        """ Display the Diff window. """
137
        if self.notbranch:
0.13.6 by Jelmer Vernooij
Don't pass along dialog context everywhere.
138
            error_dialog(_('Directory is not a branch'),
0.8.55 by Szilveszter Farkas (Phanatic)
Gettext support added.
139
                                     _('You can perform this action only in a branch.'))
0.8.35 by Szilveszter Farkas (Phanatic)
Fixed a small bug in the Status window.
140
            self.close()
0.8.29 by Szilveszter Farkas (Phanatic)
Implemented Status window; some code cleanups.
141
        else:
142
            self.window.show_all()
143
144
    def close(self, widget=None):
145
        self.window.destroy()