X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=StatusIcon.vala;h=64199105d1f39596354e6e65a5de5c91c5b25bb4;hb=48b3d2b4281bfa78ae11b4dfb5f91d5475aefd90;hp=e728ff408b48e732bc56bc096c16e451702895cd;hpb=e6104dd665abd4eb0077cefd05809f233d7fba20;p=gitlive diff --git a/StatusIcon.vala b/StatusIcon.vala index e728ff40..64199105 100644 --- a/StatusIcon.vala +++ b/StatusIcon.vala @@ -39,7 +39,8 @@ public class StatusIconA : StatusIcon { public bool paused = false; public static StatusIconA statusicon; - + + public StatusIconA() { statusicon = this; @@ -54,11 +55,35 @@ public class StatusIconA : StatusIcon { var menu = new MenuA(); menu.ref(); + this.button_press_event.connect( ( ev ) =>{ + print("button press event called\n"); + + menu.show_all(); + + if (this.paused) { + menu.resume.show(); + menu.pause.hide(); + } else { + menu.resume.hide(); + menu.pause.show(); + } + // public void popup (Gtk.Widget? parent_menu_shell, Gtk.Widget? parent_menu_item, + // [CCode (scope = "async")] Gtk.MenuPositionFunc? func, uint button, uint32 activate_time); + //Gtk.get_current_event_device () + menu.popup( + null, null, + this.position_menu, + + ev.button, ev.time // time + ); + + return true; + }); this.popup_menu.connect( ( button, time) =>{ //this.button_press_event.connect( ( ) =>{ - + //print(Array.prototype.slice.call(arguments).join(',')); print("menu activiate called\n"); //var menu = this.get('menu'); @@ -98,27 +123,30 @@ public class StatusIconA : StatusIcon { } - void pause() + public void pause() { this.set_from_stock( Gtk.Stock.MEDIA_PAUSE ); + this.paused = true; } - void resume() + + public void resume() { this.set_from_stock( Gtk.Stock.MEDIA_PLAY ); - this.error_animate= false; + this.paused = false; } - void refreshing() + public void refreshing() { this.set_from_stock( Gtk.Stock.REFRESH ); } - void pauseError() + + public void pauseError() { - this.error_animate = true; + this.paused = true; var flag = true; Timeout.add_full(Priority.LOW, 500, () => { - if (!this.error_animate) { + if (!this.paused) { return false; } this.set_from_stock( flag == true ? Gtk.Stock.MEDIA_RECORD @@ -220,8 +248,14 @@ public class StatusIconA : StatusIcon { this.accel_group = null; this.activate.connect( () => { + + this.pullAll(); + /* GitMonitor.gitmonitor.stop(); var tr = GitRepo.list(); + + + for (var i= 0; i< tr.length;i++) { statusicon.set_from_stock( i%2 == 0 ? Gtk.Stock.FULLSCREEN : Gtk.Stock.LEAVE_FULLSCREEN ); @@ -256,14 +290,83 @@ public class StatusIconA : StatusIcon { } } - statusicon.set_tooltip_text("Gitlive"); - - - GitMonitor.gitmonitor.start(); + */ + }); } - + void pullAll() + { + var tr = GitRepo.list(); + + GitMonitor.gitmonitor.stop(); + + + this.total = tr.length; + this.has_error = 0; + this.pull_all_error_message = ""; + for (var i= 0; i< tr.length;i++) { + statusicon.set_from_stock( + i%2 == 0 ? Gtk.Stock.FULLSCREEN : Gtk.Stock.LEAVE_FULLSCREEN ); + + var repo = tr.index(i); + //repo.ref(); + //this.ref(); + + statusicon.set_tooltip_text("pull: " + repo.name); + + repo.pull_async(this.pullAllCallback); + // do not care if it's already in sycn.. + + + + } + + + + + } + uint total = 0; + uint has_error = 0; + string pull_all_error_message = ""; + + void pullAllCallback(GitRepo repo, int err, string res) + { + this.total--; + + if (err > 0) { + this.has_error = 1; + this.pull_all_error_message += this.pull_all_error_message.length > 0 ? "\n" : ""; + this.pull_all_error_message += "Error Pulling " + repo.name +"\n" + res; + } + + if (!Regex.match_simple ("Already up-to-date", res) ) { + var notification = new Notify.Notification( + "Pull completed ", + "Updated: " +repo.name + "\n" + res +"\n", + "dialog-information" + ); + notification.set_timeout(20); + notification.show(); + + + + } + if (this.total < 1) { + if (this.has_error > 0) { + GitMonitor.gitmonitor.pauseError(this.pull_all_error_message); + return; + } + + statusicon.set_tooltip_text("Gitlive"); + + GitMonitor.gitmonitor.start(); + //this.unref(); + //repo.unref(); + } + + } + } @@ -301,7 +404,7 @@ public class StatusIconA : StatusIcon { this.accel_group = null; this.activate.connect( () => { - //var ret = imports.Clones.Clones.show(); + Clones.singleton().show(); }); } @@ -364,4 +467,4 @@ public class StatusIconA : StatusIcon { } - + \ No newline at end of file