asciipumper- mspaint style program to create irc ascii art |
git clone git://git.acid.vegas/asciipumper.git |
Log | Files | Refs | Archive | README |
Settings.Designer.cs (8584B)
1 //------------------------------------------------------------------------------ 2 // <auto-generated> 3 // This code was generated by a tool. 4 // Runtime Version:2.0.50727.1318 5 // 6 // Changes to this file may cause incorrect behavior and will be lost if 7 // the code is regenerated. 8 // </auto-generated> 9 //------------------------------------------------------------------------------ 10 11 namespace AsciiPumper.Properties { 12 13 14 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")] 16 internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 18 private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 20 public static Settings Default { 21 get { 22 return defaultInstance; 23 } 24 } 25 26 [global::System.Configuration.UserScopedSettingAttribute()] 27 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 [global::System.Configuration.DefaultSettingValueAttribute("Consolas")] 29 public string PaintFontName { 30 get { 31 return ((string)(this["PaintFontName"])); 32 } 33 set { 34 this["PaintFontName"] = value; 35 } 36 } 37 38 [global::System.Configuration.UserScopedSettingAttribute()] 39 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 40 [global::System.Configuration.DefaultSettingValueAttribute("False")] 41 public bool LMBIsForeground { 42 get { 43 return ((bool)(this["LMBIsForeground"])); 44 } 45 set { 46 this["LMBIsForeground"] = value; 47 } 48 } 49 50 [global::System.Configuration.UserScopedSettingAttribute()] 51 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 52 [global::System.Configuration.DefaultSettingValueAttribute("True")] 53 public bool MMBIsForeground { 54 get { 55 return ((bool)(this["MMBIsForeground"])); 56 } 57 set { 58 this["MMBIsForeground"] = value; 59 } 60 } 61 62 [global::System.Configuration.UserScopedSettingAttribute()] 63 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 64 [global::System.Configuration.DefaultSettingValueAttribute("False")] 65 public bool RMBIsForeground { 66 get { 67 return ((bool)(this["RMBIsForeground"])); 68 } 69 set { 70 this["RMBIsForeground"] = value; 71 } 72 } 73 74 [global::System.Configuration.UserScopedSettingAttribute()] 75 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 76 [global::System.Configuration.DefaultSettingValueAttribute("20")] 77 public int CellHeight { 78 get { 79 return ((int)(this["CellHeight"])); 80 } 81 set { 82 this["CellHeight"] = value; 83 } 84 } 85 86 [global::System.Configuration.UserScopedSettingAttribute()] 87 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 88 [global::System.Configuration.DefaultSettingValueAttribute("10")] 89 public int CellWidth { 90 get { 91 return ((int)(this["CellWidth"])); 92 } 93 set { 94 this["CellWidth"] = value; 95 } 96 } 97 98 [global::System.Configuration.UserScopedSettingAttribute()] 99 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 100 [global::System.Configuration.DefaultSettingValueAttribute("Salmon")] 101 public global::System.Drawing.Color HighlightColor { 102 get { 103 return ((global::System.Drawing.Color)(this["HighlightColor"])); 104 } 105 set { 106 this["HighlightColor"] = value; 107 } 108 } 109 110 [global::System.Configuration.UserScopedSettingAttribute()] 111 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 112 [global::System.Configuration.DefaultSettingValueAttribute("DimGray")] 113 public global::System.Drawing.Color SeperatorColor { 114 get { 115 return ((global::System.Drawing.Color)(this["SeperatorColor"])); 116 } 117 set { 118 this["SeperatorColor"] = value; 119 } 120 } 121 122 [global::System.Configuration.UserScopedSettingAttribute()] 123 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 124 [global::System.Configuration.DefaultSettingValueAttribute("80")] 125 public int Columns { 126 get { 127 return ((int)(this["Columns"])); 128 } 129 set { 130 this["Columns"] = value; 131 } 132 } 133 134 [global::System.Configuration.UserScopedSettingAttribute()] 135 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 136 [global::System.Configuration.DefaultSettingValueAttribute("15")] 137 public int Rows { 138 get { 139 return ((int)(this["Rows"])); 140 } 141 set { 142 this["Rows"] = value; 143 } 144 } 145 146 [global::System.Configuration.UserScopedSettingAttribute()] 147 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 148 [global::System.Configuration.DefaultSettingValueAttribute("0")] 149 public byte LMBColor { 150 get { 151 return ((byte)(this["LMBColor"])); 152 } 153 set { 154 this["LMBColor"] = value; 155 } 156 } 157 158 [global::System.Configuration.UserScopedSettingAttribute()] 159 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 160 [global::System.Configuration.DefaultSettingValueAttribute("4")] 161 public byte MMBColor { 162 get { 163 return ((byte)(this["MMBColor"])); 164 } 165 set { 166 this["MMBColor"] = value; 167 } 168 } 169 170 [global::System.Configuration.UserScopedSettingAttribute()] 171 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 172 [global::System.Configuration.DefaultSettingValueAttribute("1")] 173 public byte RMBColor { 174 get { 175 return ((byte)(this["RMBColor"])); 176 } 177 set { 178 this["RMBColor"] = value; 179 } 180 } 181 182 [global::System.Configuration.UserScopedSettingAttribute()] 183 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 184 [global::System.Configuration.DefaultSettingValueAttribute("10")] 185 public float PaintFontSize { 186 get { 187 return ((float)(this["PaintFontSize"])); 188 } 189 set { 190 this["PaintFontSize"] = value; 191 } 192 } 193 194 [global::System.Configuration.UserScopedSettingAttribute()] 195 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 196 [global::System.Configuration.DefaultSettingValueAttribute("True")] 197 public bool ShouldWatermark { 198 get { 199 return ((bool)(this["ShouldWatermark"])); 200 } 201 set { 202 this["ShouldWatermark"] = value; 203 } 204 } 205 206 [global::System.Configuration.UserScopedSettingAttribute()] 207 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 208 [global::System.Configuration.DefaultSettingValueAttribute("<?xml version=\"1.0\" encoding=\"utf-16\"?>\r\n<ArrayOfString xmlns:xsi=\"http://www.w3." + 209 "org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n <s" + 210 "tring>asciipumper.txt</string>\r\n</ArrayOfString>")] 211 public global::System.Collections.Specialized.StringCollection RecentFiles { 212 get { 213 return ((global::System.Collections.Specialized.StringCollection)(this["RecentFiles"])); 214 } 215 set { 216 this["RecentFiles"] = value; 217 } 218 } 219 } 220 }