diff --git a/ivette/src/frama-c/server.js b/ivette/src/frama-c/server.js
index c6d7cfebccd2113e3ba4cc85695fe73da79d719d..1363dec2144bac6226215f33f96aeb1e6e52d18b 100644
--- a/ivette/src/frama-c/server.js
+++ b/ivette/src/frama-c/server.js
@@ -100,19 +100,31 @@ var killer;    // killer timeout
 // --------------------------------------------------------------------------
 
 export const buffer = new Buffer({ maxlines: 200 });
+export const feedback = '' ;
 
 // --------------------------------------------------------------------------
 // --- Server Status
 // --------------------------------------------------------------------------
 
 /**
-   @summary Current Server `STATUS`.
+   @summary Current Server Status.
    @return {STATUS} the current server status
    @description
    See [STATUS](module-frama-c_server.html#~STATUS) code definitions.
 */
 export function getStatus() { return status; }
 
+/**
+   @summary Hook on current server (Custom React Hook).
+   @return {STATUS} the current server status
+   @description
+   See [STATUS](module-frama-c_server.html#~STATUS) code definitions.
+*/
+export function useStatus() {
+  Dome.useUpdate(STATUS);
+  return status;
+}
+
 /** Return `FAILED` status message. */
 export function getError() { return error; }
 
@@ -443,6 +455,7 @@ function _close(error) {
   if (error) {
     _status(FAILED,error);
   } else {
+    if (status === RESTART) setImmediate(start);
     _status(IDLE);
   }
 }
@@ -630,7 +643,8 @@ function _receive(resp) {
 
 export default {
   configure, buffer,
-  getStatus, getError, getPending, isRunning,
+  getStatus, useStatus,
+  getError, getPending, isRunning,
   start, stop, kill, restart, clear,
   sendGET, sendSET, sendEXEC,
   onReady, onShutdown,
diff --git a/ivette/src/frama-c/states.js b/ivette/src/frama-c/states.js
index f5c2c778e537b4140fe741efb9de378637e4ed98..57f5e122ffcde831995848b653ce9e7250591b26 100644
--- a/ivette/src/frama-c/states.js
+++ b/ivette/src/frama-c/states.js
@@ -35,7 +35,7 @@ export const PROJECT = 'frama-c.project' ;
 export const STATE = 'frama-c.state.' ;
 
 // --------------------------------------------------------------------------
-// --- Current Project
+// --- Synchronized Current Project
 // --------------------------------------------------------------------------
 
 var currentProject = undefined ;
@@ -48,6 +48,12 @@ Server.onReady(() => {
     });
 });
 
+Server.onShutdown(() => {
+  currentProject = undefined ;
+  globalStates = {} ;
+  Dome.emit(PROJECT);
+});
+
 // --------------------------------------------------------------------------
 // --- Project API
 // --------------------------------------------------------------------------
diff --git a/ivette/src/renderer/Application.js b/ivette/src/renderer/Application.js
index 87cb9d4b1339c2c5fa51bab3272c68eb2b68606f..8f934bb378adbbafe305c7c252b0e88df41a06eb 100644
--- a/ivette/src/renderer/Application.js
+++ b/ivette/src/renderer/Application.js
@@ -34,6 +34,7 @@ export default (function() {
           selected={sidebar}
           onClick={flipSidebar}
           />
+        <Controller.Control/>
         <Toolbar.Filler/>
         <Toolbar.Button
           icon='ITEMS.GRID'
diff --git a/ivette/src/renderer/Controller.js b/ivette/src/renderer/Controller.js
index 30c3e2751cf9385fd1491b477fb8db8911855884..8afc80bae7fe1bbe7c769bc2da2753346abbf4b5 100644
--- a/ivette/src/renderer/Controller.js
+++ b/ivette/src/renderer/Controller.js
@@ -7,7 +7,7 @@ import Dome from 'dome' ;
 import Server from 'frama-c/server' ;
 import States from 'frama-c/states' ;
 
-import { Filler, Button } from 'dome/layout/toolbars' ;
+import { Filler, Button, ButtonGroup } from 'dome/layout/toolbars' ;
 import { LED } from 'dome/controls/buttons' ;
 import { Label, Code } from 'dome/controls/labels' ;
 import { Text } from 'dome/text/editors' ;
@@ -39,6 +39,36 @@ Dome.onCommand((argv,cwd) => {
   Server.start();
 });
 
+// --------------------------------------------------------------------------
+// --- Server Control
+// --------------------------------------------------------------------------
+
+export const Control = () => {
+  let status = Server.useStatus();
+  let play = { enabled: false } ;
+  let stop = { enabled: false } ;
+  let reload = { enabled: false } ;
+  switch(status) {
+  case 'IDLE':
+    play = { enabled: true, onClick:Server.start };
+    break;
+  case 'RUNNING':
+    stop = { enabled: true, onClick:Server.stop };
+    reload = { enabled: true, onClick:Server.restart };
+    break;
+  }
+  return (
+    <ButtonGroup>
+      <Button icon='MEDIA.PLAY' {...play}
+              title='Start the server' />
+      <Button icon='RELOAD' {...reload}
+              title='Re-start the server' />
+      <Button icon='MEDIA.STOP' {...stop}
+              title='Shut down the server'/>
+    </ButtonGroup>
+  );
+};
+
 // --------------------------------------------------------------------------
 // --- Server Console
 // --------------------------------------------------------------------------
@@ -109,6 +139,6 @@ export const Stats = () => {
 // --- Controller Exports
 // --------------------------------------------------------------------------
 
-export default { Console, Status, Stats };
+export default { Control, Console, Status, Stats };
 
 // --------------------------------------------------------------------------