Changeset 36255

Show
Ignore:
Timestamp:
12/24/09 12:14:24 (3 years ago)
Author:
hoge1e3
Message:
 
Location:
lang/csharp/soyText
Files:
12 modified

Legend:

Unmodified
Added
Removed
  • lang/csharp/soyText/soyText/Document.cs

    r35780 r36255  
    169169            c = c.Replace("\r", ""); 
    170170            if (c.Length == 0) return (id ?? "(NEW)"); 
    171             if (c.Length < 10) return c; 
     171            if (c.Length < 10) return tgh+c; 
    172172            return tgh+ c.Substring(0, 10); 
    173173        } 
     
    179179        { 
    180180            return new DocumentLine(this, lineNo); 
     181        } 
     182        public String[] bodyLines 
     183        { 
     184            get 
     185            { 
     186                return Str.lines(body); 
     187            } 
    181188        } 
    182189        String[] _lineStrings; 
  • lang/csharp/soyText/soyText/EditorTab.cs

    r35894 r36255  
    241241            var c = SearchCondition.fromExpression(condition); 
    242242            c.makeMatch(d); 
    243             if (moveSelectionTo && content.SelectedText.Length > 0) 
     243            if (moveSelectionTo)// && content.SelectedText.Length > 0) 
    244244            { 
    245245                d.body = content.SelectedText; 
  • lang/csharp/soyText/soyText/Form2.Designer.cs

    r34894 r36255  
    5555            this.tabMenu = new System.Windows.Forms.ContextMenuStrip(this.components); 
    5656            this.閉じるCToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 
     57            this.検索キャッシュ消去RToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 
    5758            this.tabControl1 = new SoyText.TabControl2(); 
    58             this.検索キャッシュ消去RToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 
    5959            this.menuStrip1.SuspendLayout(); 
    6060            this.tabMenu.SuspendLayout(); 
     
    7575            this.menuStrip1.TabIndex = 8; 
    7676            this.menuStrip1.Text = "menuStrip1"; 
     77            this.menuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.menuStrip1_ItemClicked); 
    7778            //  
    7879            // 文書DToolStripMenuItem 
     
    9293            //  
    9394            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))); 
    9596            this.newMenu.Size = new System.Drawing.Size(291, 22); 
    9697            this.newMenu.Text = "新規(&N)"; 
     
    223224            //  
    224225            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))); 
    226227            this.戻るBToolStripMenuItem.Size = new System.Drawing.Size(185, 22); 
    227228            this.戻るBToolStripMenuItem.Text = "戻る(&B)"; 
     
    247248            this.検索キャッシュ消去RToolStripMenuItem}); 
    248249            this.tabMenu.Name = "tabMenu"; 
    249             this.tabMenu.Size = new System.Drawing.Size(178, 70); 
     250            this.tabMenu.Size = new System.Drawing.Size(178, 48); 
    250251            this.tabMenu.Opening += new System.ComponentModel.CancelEventHandler(this.tabMenu_Opening); 
    251252            //  
     
    253254            //  
    254255            this.閉じるCToolStripMenuItem.Name = "閉じるCToolStripMenuItem"; 
    255             this.閉じるCToolStripMenuItem.Size = new System.Drawing.Size(152, 22); 
     256            this.閉じるCToolStripMenuItem.Size = new System.Drawing.Size(177, 22); 
    256257            this.閉じるCToolStripMenuItem.Text = "閉じる(&C)"; 
    257258            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); 
    258266            //  
    259267            // tabControl1 
     
    268276            this.tabControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseDown); 
    269277            this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged); 
    270             //  
    271             // 検索キャッシュ消去RToolStripMenuItem 
    272             //  
    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); 
    277278            //  
    278279            // Form2 
  • lang/csharp/soyText/soyText/Form2.cs

    r34894 r36255  
    281281        } 
    282282 
     283        private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e) 
     284        { 
     285 
     286        } 
     287 
    283288    } 
    284289} 
  • lang/csharp/soyText/soyText/bin/Debug/soyText.application

    r36102 r36255  
    1212        </dsig:Transforms> 
    1313        <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 
    14         <dsig:DigestValue>SxCU6uxNqRytG8jqI7GFeQqWDi4=</dsig:DigestValue> 
     14        <dsig:DigestValue>jYuLRPjYW2H2N5bCInHlr6aKX0g=</dsig:DigestValue> 
    1515      </hash> 
    1616    </dependentAssembly> 
  • lang/csharp/soyText/soyText/bin/Debug/soyText.exe.manifest

    r36102 r36255  
    113113  </dependency> 
    114114  <dependency> 
    115     <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="soyText.exe" size="113152"> 
     115    <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="soyText.exe" size="113664"> 
    116116      <assemblyIdentity name="soyText" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> 
    117117      <hash> 
     
    120120        </dsig:Transforms> 
    121121        <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> 
    123123      </hash> 
    124124    </dependentAssembly> 
  • lang/csharp/soyText/soyText/bin/Debug/soyText.vshost.application

    r36102 r36255  
    1212        </dsig:Transforms> 
    1313        <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 
    14         <dsig:DigestValue>SxCU6uxNqRytG8jqI7GFeQqWDi4=</dsig:DigestValue> 
     14        <dsig:DigestValue>jYuLRPjYW2H2N5bCInHlr6aKX0g=</dsig:DigestValue> 
    1515      </hash> 
    1616    </dependentAssembly> 
  • lang/csharp/soyText/soyText/bin/Debug/workSpaceList.txt

    r36102 r36255  
    11C:\bin\_app\soyText\storage 
    2 C:\bin\_app\soyText\storage 
    3 c:/bin/storage/