From 3f98df4e00c282cca1f2f2b504219b590575f59f Mon Sep 17 00:00:00 2001
From: Maxime Graulich <maxime.graulich@gmail.com>
Date: Thu, 5 Sep 2013 13:03:56 +0000
Subject: [PATCH] iOS: Show/Hide progress

---
 contrib/mobile/iOS/Onelab/ModelViewController.mm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/contrib/mobile/iOS/Onelab/ModelViewController.mm b/contrib/mobile/iOS/Onelab/ModelViewController.mm
index 77dc3c74ab..15fc81c7b6 100644
--- a/contrib/mobile/iOS/Onelab/ModelViewController.mm
+++ b/contrib/mobile/iOS/Onelab/ModelViewController.mm
@@ -48,6 +48,7 @@
 	_runStopButton.frame = CGRectMake(self.view.frame.size.width - _runStopButton.frame.size.width - 7, 50, _runStopButton.frame.size.width, _runStopButton.frame.size.height );
 	_progressLabel.frame = CGRectMake(50, self.view.frame.size.height - 25, _progressLabel.frame.size.width, _progressLabel.frame.size.height);
 	_progressIndicator.frame = CGRectMake(20, self.view.frame.size.height - 25, _progressIndicator.frame.size.width, _progressIndicator.frame.size.height);
+	[_progressIndicator addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleProgressIndicatorTap:)]];
 	[_progressLabel setHidden:YES];
 	[_progressIndicator setHidden:YES];
 	if(self.initialModel != nil){
@@ -286,6 +287,10 @@ void messageFromCpp (void *self, std::string level, std::string msg)
 {
 	[_progressLabel setText:progress];
 }
+-(void)handleProgressIndicatorTap:(id)sender
+{
+	[_progressLabel setHidden:!_progressLabel.hidden];
+}
 void getBitmap(void *self, const char *text, int textsize, unsigned char **map, int *height, int *width, int *realWidth)
 {
     [(__bridge id)self getBitmapFromStringObjC:text withTextSize:textsize inMap:map inHeight:height inWidth:width inRealWidth:realWidth];
-- 
GitLab