Changeset 8331 for branches/ScatterSearch (trunk integration)/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4
- Timestamp:
- 07/26/12 09:51:13 (12 years ago)
- Location:
- branches/ScatterSearch (trunk integration)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ScatterSearch (trunk integration)
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/ScatterSearch (trunk integration)/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/Plugin.cs.frame
r7259 r8331 26 26 27 27 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views { 28 [Plugin("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views","Provides views for the symbolic expression tree encoding.", "3.4. 2.$WCREV$")]28 [Plugin("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views","Provides views for the symbolic expression tree encoding.", "3.4.3.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views-3.4.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] -
branches/ScatterSearch (trunk integration)/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/Properties/AssemblyInfo.cs.frame
r7259 r8331 45 45 46 46 [assembly: AssemblyVersion("3.4.0.0")] 47 [assembly: AssemblyFileVersion("3.4. 2.$WCREV$")]47 [assembly: AssemblyFileVersion("3.4.3.$WCREV$")] -
branches/ScatterSearch (trunk integration)/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolicExpressionGrammarEditorView.cs
r7581 r8331 164 164 } 165 165 166 private void symbolsTreeView_BeforeCheck(object sender, TreeViewCancelEventArgs e) { 167 if (e.Action == TreeViewAction.Unknown) return; 168 e.Cancel = Content == null || Content.ReadOnly || ReadOnly || Locked; 169 } 170 166 171 private void symbolsTreeView_AfterCheck(object sender, TreeViewEventArgs e) { 167 if (e.Action != TreeViewAction.Unknown) { 168 Content.StartGrammarManipulation(); 169 allowedChildSymbolsControl.Symbol = null; 170 var symbol = (ISymbol)e.Node.Tag; 171 symbol.Enabled = e.Node.Checked; 172 foreach (var node in IterateTreeNodes()) 173 node.Checked = ((ISymbol)node.Tag).Enabled; 174 175 Content.FinishedGrammarManipulation(); 176 } 177 } 178 179 private void symbolsTreeView_BeforeCheck(object sender, TreeViewCancelEventArgs e) { 180 if (Content == null || Content.ReadOnly) e.Cancel = true; 181 if (ReadOnly || Locked) e.Cancel = true; 172 if (e.Action == TreeViewAction.Unknown) return; 173 Content.StartGrammarManipulation(); 174 allowedChildSymbolsControl.Symbol = null; 175 var symbol = (ISymbol)e.Node.Tag; 176 symbol.Enabled = e.Node.Checked; 177 foreach (var node in IterateTreeNodes()) 178 node.Checked = ((ISymbol)node.Tag).Enabled; 179 180 Content.FinishedGrammarManipulation(); 182 181 } 183 182
Note: See TracChangeset
for help on using the changeset viewer.