diff options
author | hut <hut@lavabit.com> | 2009-06-13 05:10:42 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-06-13 05:10:42 +0200 |
commit | 15b76d0dd865100dea6c8a00193e7cfca773f007 (patch) | |
tree | e4036e5a04cce31c6777526e9416f6f08e6ae089 /code/bars.rb | |
parent | 236fef23c8269a776c18378f66c1fd2d7d818eee (diff) | |
download | ranger-15b76d0dd865100dea6c8a00193e7cfca773f007.tar.gz |
cleanup
Diffstat (limited to 'code/bars.rb')
-rw-r--r-- | code/bars.rb | 61 |
1 files changed, 4 insertions, 57 deletions
diff --git a/code/bars.rb b/code/bars.rb index 40f7689e..5edb3604 100644 --- a/code/bars.rb +++ b/code/bars.rb @@ -1,57 +1,4 @@ -#class Bar -# def initialize( text = '' ) -# @text = text -# @text_prefix = nil -# @max = 0 -# @done = 0 -# @counter = 0 -# @thread = nil -# @update_proc = nil -# Fm.bar_add(self) -# end -# -# def kill(evil = true) -# Fm.bar_del(self) -# Fm.force_update -# -# @thread.kill -# end -# -# def update(&block) -# if block -# @update_proc = block -# elsif @update_proc -# @update_proc.call(self) -# end -# end -# -# def set_text_prefix(text) -# @text_prefix = text -# end -# def set_text(text) -# @text_prefix = nil -# @text = text -# end -# alias text= set_text -# -# attr_accessor :thread, :counter, :max -#end -# -#class CopyBar < Bar -# def initialize( text = '' ) -# super -# -# @update_proc = proc do |b| -# begin -# b.done = File.size(fname).to_f / finished -# rescue -# b.done = 0 -# end -# end -# end -#end - -class Bar2 +class Bar def kill(evil = true) Fm.bar_del(self) Fm.force_update @@ -90,7 +37,7 @@ class Bar2 end end -class CopyOrMoveBar < Bar2 +class CopyOrMoveBar < Bar def initialize(files, path) path = path.path unless path.is_a? String Fm.bar_add(self) @@ -116,7 +63,7 @@ class CopyOrMoveBar < Bar2 end end -class CopyBar2 < CopyOrMoveBar +class CopyBar < CopyOrMoveBar def run_operation(file, path) if File.directory?(file) FileUtils.cp_r_in_bar(self, file, path) @@ -126,7 +73,7 @@ class CopyBar2 < CopyOrMoveBar end end -class MoveBar2 < CopyOrMoveBar +class MoveBar < CopyOrMoveBar def run_operation(file, path) FileUtils.mv_in_bar(self, file, path) end |