git-gui: Refactor our ui_status_value update technique
commit699d5601f59938d62ec2506f319c25a656a403da
authorShawn O. Pearce <spearce@spearce.org>
Fri, 6 Jul 2007 03:16:13 +0000 (5 23:16 -0400)
committerShawn O. Pearce <spearce@spearce.org>
Mon, 9 Jul 2007 01:12:57 +0000 (8 21:12 -0400)
treed7a55162fe267f52e46c173c2bce6acbe5577e4b
parent311e02a4a5c7b82c996214f06d58e2b51b3ecc22
git-gui: Refactor our ui_status_value update technique

I'm really starting to dislike global variables.  The ui_status_value
global varible is just one of those that seems to appear in a lot of
code and in many cases we didn't even declare it "global" within the
proc that updates it so we haven't always been getting all of the
updates we expected to see.

This change introduces two new global procs:

  ui_status $msg;   # Sets the status bar to show $msg.
  ui_ready;         # Changes the status bar to show "Ready."

The second (special) form is used because we often update the area
with this message once we are done processing a block of work and
want the user to know we have completed it.

I'm not fixing the cases that appear in lib/branch.tcl right now
as I'm actually in the middle of a huge refactoring of that code
to support making a detached HEAD checkout.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui.sh
lib/commit.tcl
lib/diff.tcl
lib/index.tcl
lib/merge.tcl