info-view.html 3.16 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
<div>This is view contains hints about available keyboard shortcuts.</div>
<div class="info-topic" id="info-global">
  <div class="info-topic-header">Global shortcuts</div>
  <div class="info-topic-content">
    <table>
      <tr>
        <td>CTRL+L</td>
        <td>Open load file dialog.</td>
      </tr>
      <tr>
        <td>CTRL+R</td>
        <td>Reload turbolizer (Chrome shortcut)</td>
      </tr>
    </table>
  </div>
</div>
<div class="info-topic" id="info-graph-view">
  <div class="info-topic-header">Graph view</div>
  <div class="info-topic-content">
    <table>
      <tr>
        <td>r</td>
        <td>Relayout graph</td>
      </tr>
      <tr>
        <td>a</td>
        <td>Select all nodes</td>
      </tr>
      <tr>
        <td>/</td>
        <td>Select search box</td>
      </tr>
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
      <tr>
        <td>i</td>
        <td>Reveal node's input nodes</td>
      </tr>
      <tr>
        <td>o</td>
        <td>Reveal node's output nodes</td>
      </tr>
      <tr>
        <td>s</td>
        <td>Hide selected nodes</td>
      </tr>
      <tr>
        <td>u</td>
        <td>Hide unselected nodes</td>
      </tr>
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
    </table>
  </div>
</div>
<div class="info-topic" id="info-graph-nodes">
  <div class="info-topic-header">TurboFan graph nodes</div>
  <div class="info-topic-content">
    <div>The following commands transform node selections, i.e. each operation will be applied
      to each node in the current selection and the union of the resulting nodes will become the
      new selection.</div>
    <table>
      <tr>
        <td>UP</td>
        <td>Select all input nodes</td>
      </tr>
      <tr>
        <td>DOWN</td>
        <td>Select all output nodes</td>
      </tr>
      <tr>
        <td>1-9</td>
        <td>Select input node 1-9</td>
      </tr>
      <tr>
        <td>CTRL+1-9</td>
        <td>Toggle input edge 1-9</td>
      </tr>
      <tr>
        <td>c</td>
        <td>Select control output node</td>
      </tr>
      <tr>
        <td>e</td>
        <td>Select effect output node</td>
      </tr>
      <tr>
84
        <td>p</td>
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
        <td>Select node's origin node</td>
      </tr>
    </table>
  </div>
</div>
<div class="info-topic" id="info-graph-search">
  <div class="info-topic-header">Graph search</div>
  <div class="info-topic-content">
    <table>
      <tr>
        <td>ENTER</td>
        <td>Select nodes according to regular expression. Invisible nodes are included depending on the state of the
          checkbox "only visible".</td>
      </tr>
      <tr>
        <td>CTRL+ENTER</td>
        <td>Select nodes according to regular expression, always including invisible nodes regardless of checkbox.</td>
      </tr>
    </table>
    <div style="font-weight: bold">
      Useful patterns
    </div>
    <table>
      <tr>
        <td>IfTrue</td>
        <td>Select nodes which have 'IfTrue' in title or description.</td>
      </tr>
      <tr>
        <td>^42:</td>
114
        <td>Select exactly the node with id 42.</td>
115 116 117 118 119 120 121 122 123
      </tr>
      <tr>
        <td>Origin:&nbsp;#42&nbsp;</td>
        <td>Select nodes which were created while node with id 42 was reduced. This is inaccurate if the node was
          changed in-place.</td>
      </tr>
    </table>
  </div>
</div>