Fixes #2009 , balloons don't go away, by adding a custom tooltip property to the...
[pithos-ms-client] / trunk / Pithos.Client / PithosSettings.cs
index 3e9410e..649399b 100644 (file)
@@ -17,6 +17,11 @@ namespace Pithos.Client
             set { Settings.Default.PithosPath=value; }
         }
 
+        public string PithosSite
+        {
+            get { return Settings.Default.PithosSite; }            
+        }
+
         public string IconsPath
         {
             get { return Settings.Default.IconPath; }
@@ -41,6 +46,24 @@ namespace Pithos.Client
             set { Settings.Default.Accounts = value; }
         }
 
+        public bool UseDefaultProxy
+        {
+            get { return Settings.Default.UseDefaultProxy; }
+            set { Settings.Default.UseDefaultProxy = value; }
+        }
+
+        public bool UseManualProxy
+        {
+            get { return Settings.Default.UseManualProxy; }
+            set { Settings.Default.UseManualProxy = value; }
+        }
+
+        public bool UseNoProxy
+        {
+            get { return Settings.Default.UseNoProxy; }
+            set { Settings.Default.UseNoProxy = value; }
+        }
+
         public bool ExtensionsActivated
         {
 
@@ -65,7 +88,7 @@ namespace Pithos.Client
             set { Settings.Default.ProxyServer = value; }
         }
 
-        public string ProxyPort
+        public int ProxyPort
         {
             get { return Settings.Default.ProxyPort; }
             set { Settings.Default.ProxyPort = value; }