diff options
Diffstat (limited to 'doc/fl_text_editor.html')
-rw-r--r-- | doc/fl_text_editor.html | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/doc/fl_text_editor.html b/doc/fl_text_editor.html index 79c9488..ad319e8 100644 --- a/doc/fl_text_editor.html +++ b/doc/fl_text_editor.html @@ -42,11 +42,16 @@ </tr> <tr> - <td> </td> + <td>int</td> <td>Insert_Mode</td> </tr> <tr> + <td>int</td> + <td>Tab_Navigation</td> + </tr> + + <tr> <td>Key_Func</td> <td>Key_Func</td> </tr> @@ -575,16 +580,24 @@ procedure Remove_Key_Binding <tr> <td><pre> -void tab_nav(int val); +int tab_nav() const; +</pre></td> +<td><pre> +function Get_Tab_Mode + (This : in Text_Editor) + return Tab_Navigation; </pre></td> -<td>TBA</td> </tr> <tr> <td><pre> -int tab_nav() const; +void tab_nav(int val); +</pre></td> +<td><pre> +procedure Set_Tab_Mode + (This : in out Text_Editor; + To : in Tab_Navigation); </pre></td> -<td>TBA</td> </tr> </table> |