UI improvements

Change-Id: I8b3540f8a49c6a151d5cc54d9a49005e0a3c98d8
diff --git a/osx/tight-menu-item-view.h b/osx/tight-menu-item-view.h
new file mode 100644
index 0000000..43b04b6
--- /dev/null
+++ b/osx/tight-menu-item-view.h
@@ -0,0 +1,20 @@
+/* -*- Mode: objc; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
+/*
+ * @copyright See LICENCE for copyright and license information.
+ *
+ * @author Alexander Afanasyev <alexander.afanasyev@ucla.edu>
+ * @author Ilya Moiseenko <iliamo@ucla.edu>
+ */
+
+#import <Foundation/Foundation.h>
+#import <Cocoa/Cocoa.h>
+
+@interface TightMenuItemView : NSView
+{
+  NSString *status;
+}
+
+-(void)setStatus:(NSString*)value;
+
+
+@end