Changeset 36255
- Timestamp:
- 12/24/09 12:14:24 (3 years ago)
- Location:
- lang/csharp/soyText
- Files:
-
- 12 modified
-
soyText.suo (modified) (previous)
-
soyText/Document.cs (modified) (2 diffs)
-
soyText/EditorTab.cs (modified) (1 diff)
-
soyText/Form2.Designer.cs (modified) (7 diffs)
-
soyText/Form2.cs (modified) (1 diff)
-
soyText/bin/Debug/soyText.application (modified) (1 diff)
-
soyText/bin/Debug/soyText.exe (modified) (previous)
-
soyText/bin/Debug/soyText.exe.manifest (modified) (2 diffs)
-
soyText/bin/Debug/soyText.pdb (modified) (previous)
-
soyText/bin/Debug/soyText.vshost.application (modified) (1 diff)
-
soyText/bin/Debug/workSpaceList.txt (modified) (1 diff)
-
soyText/soyText.suo (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
lang/csharp/soyText/soyText/Document.cs
r35780 r36255 169 169 c = c.Replace("\r", ""); 170 170 if (c.Length == 0) return (id ?? "(NEW)"); 171 if (c.Length < 10) return c;171 if (c.Length < 10) return tgh+c; 172 172 return tgh+ c.Substring(0, 10); 173 173 } … … 179 179 { 180 180 return new DocumentLine(this, lineNo); 181 } 182 public String[] bodyLines 183 { 184 get 185 { 186 return Str.lines(body); 187 } 181 188 } 182 189 String[] _lineStrings; -
lang/csharp/soyText/soyText/EditorTab.cs
r35894 r36255 241 241 var c = SearchCondition.fromExpression(condition); 242 242 c.makeMatch(d); 243 if (moveSelectionTo && content.SelectedText.Length > 0)243 if (moveSelectionTo)// && content.SelectedText.Length > 0) 244 244 { 245 245 d.body = content.SelectedText; -
lang/csharp/soyText/soyText/Form2.Designer.cs
r34894 r36255 55 55 this.tabMenu = new System.Windows.Forms.ContextMenuStrip(this.components); 56 56 this.閉じるCToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 57 this.検索キャッシュ消去RToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 57 58 this.tabControl1 = new SoyText.TabControl2(); 58 this.検索キャッシュ消去RToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();59 59 this.menuStrip1.SuspendLayout(); 60 60 this.tabMenu.SuspendLayout(); … … 75 75 this.menuStrip1.TabIndex = 8; 76 76 this.menuStrip1.Text = "menuStrip1"; 77 this.menuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.menuStrip1_ItemClicked); 77 78 // 78 79 // 文書DToolStripMenuItem … … 92 93 // 93 94 this.newMenu.Name = "newMenu"; 94 this.newMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys. W)));95 this.newMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); 95 96 this.newMenu.Size = new System.Drawing.Size(291, 22); 96 97 this.newMenu.Text = "新規(&N)"; … … 223 224 // 224 225 this.戻るBToolStripMenuItem.Name = "戻るBToolStripMenuItem"; 225 this.戻るBToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys. Alt | System.Windows.Forms.Keys.Left)));226 this.戻るBToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W))); 226 227 this.戻るBToolStripMenuItem.Size = new System.Drawing.Size(185, 22); 227 228 this.戻るBToolStripMenuItem.Text = "戻る(&B)"; … … 247 248 this.検索キャッシュ消去RToolStripMenuItem}); 248 249 this.tabMenu.Name = "tabMenu"; 249 this.tabMenu.Size = new System.Drawing.Size(178, 70);250 this.tabMenu.Size = new System.Drawing.Size(178, 48); 250 251 this.tabMenu.Opening += new System.ComponentModel.CancelEventHandler(this.tabMenu_Opening); 251 252 // … … 253 254 // 254 255 this.閉じるCToolStripMenuItem.Name = "閉じるCToolStripMenuItem"; 255 this.閉じるCToolStripMenuItem.Size = new System.Drawing.Size(1 52, 22);256 this.閉じるCToolStripMenuItem.Size = new System.Drawing.Size(177, 22); 256 257 this.閉じるCToolStripMenuItem.Text = "閉じる(&C)"; 257 258 this.閉じるCToolStripMenuItem.Click += new System.EventHandler(this.閉じるCToolStripMenuItem_Click); 259 // 260 // 検索キャッシュ消去RToolStripMenuItem 261 // 262 this.検索キャッシュ消去RToolStripMenuItem.Name = "検索キャッシュ消去RToolStripMenuItem"; 263 this.検索キャッシュ消去RToolStripMenuItem.Size = new System.Drawing.Size(177, 22); 264 this.検索キャッシュ消去RToolStripMenuItem.Text = "検索キャッシュ消去(&R)"; 265 this.検索キャッシュ消去RToolStripMenuItem.Click += new System.EventHandler(this.検索キャッシュ消去RToolStripMenuItem_Click); 258 266 // 259 267 // tabControl1 … … 268 276 this.tabControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseDown); 269 277 this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged); 270 //271 // 検索キャッシュ消去RToolStripMenuItem272 //273 this.検索キャッシュ消去RToolStripMenuItem.Name = "検索キャッシュ消去RToolStripMenuItem";274 this.検索キャッシュ消去RToolStripMenuItem.Size = new System.Drawing.Size(177, 22);275 this.検索キャッシュ消去RToolStripMenuItem.Text = "検索キャッシュ消去(&R)";276 this.検索キャッシュ消去RToolStripMenuItem.Click += new System.EventHandler(this.検索キャッシュ消去RToolStripMenuItem_Click);277 278 // 278 279 // Form2 -
lang/csharp/soyText/soyText/Form2.cs
r34894 r36255 281 281 } 282 282 283 private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e) 284 { 285 286 } 287 283 288 } 284 289 } -
lang/csharp/soyText/soyText/bin/Debug/soyText.application
r36102 r36255 12 12 </dsig:Transforms> 13 13 <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 14 <dsig:DigestValue> SxCU6uxNqRytG8jqI7GFeQqWDi4=</dsig:DigestValue>14 <dsig:DigestValue>jYuLRPjYW2H2N5bCInHlr6aKX0g=</dsig:DigestValue> 15 15 </hash> 16 16 </dependentAssembly> -
lang/csharp/soyText/soyText/bin/Debug/soyText.exe.manifest
r36102 r36255 113 113 </dependency> 114 114 <dependency> 115 <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="soyText.exe" size="113 152">115 <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="soyText.exe" size="113664"> 116 116 <assemblyIdentity name="soyText" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> 117 117 <hash> … … 120 120 </dsig:Transforms> 121 121 <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 122 <dsig:DigestValue> W7fox0x48+JOxP7XuWRHUGYzB74=</dsig:DigestValue>122 <dsig:DigestValue>jXCclsclMRGudaPRlZ+ZGKhywMA=</dsig:DigestValue> 123 123 </hash> 124 124 </dependentAssembly> -
lang/csharp/soyText/soyText/bin/Debug/soyText.vshost.application
r36102 r36255 12 12 </dsig:Transforms> 13 13 <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 14 <dsig:DigestValue> SxCU6uxNqRytG8jqI7GFeQqWDi4=</dsig:DigestValue>14 <dsig:DigestValue>jYuLRPjYW2H2N5bCInHlr6aKX0g=</dsig:DigestValue> 15 15 </hash> 16 16 </dependentAssembly> -
lang/csharp/soyText/soyText/bin/Debug/workSpaceList.txt
r36102 r36255 1 1 C:\bin\_app\soyText\storage 2 C:\bin\_app\soyText\storage3 c:/bin/storage/
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)