diff options
| author | Randy Palamar <randy@rnpnr.xyz> | 2024-05-12 12:35:48 -0600 |
|---|---|---|
| committer | Randy Palamar <randy@rnpnr.xyz> | 2024-05-21 20:21:46 -0600 |
| commit | 486e8631ce9269d34c00c07038e04013640f8825 (patch) | |
| tree | 2123a90bdc2f564df72d509161b098c95d6aac13 /vis.h | |
| parent | 54b3babf49ac75fce78815ae1d7a19f3def69660 (diff) | |
| download | vis-486e8631ce9269d34c00c07038e04013640f8825.tar.gz vis-486e8631ce9269d34c00c07038e04013640f8825.tar.xz | |
replace UiTerm with Ui & delete function pointers
Diffstat (limited to 'vis.h')
| -rw-r--r-- | vis.h | 25 |
1 files changed, 0 insertions, 25 deletions
@@ -110,27 +110,6 @@ void vis_exit(Vis*, int status); void vis_die(Vis*, const char *msg, ...) __attribute__((noreturn,format(printf, 2, 3))); /** - * Temporarily suspend the editor process. - * @rst - * .. note:: This function will generate a ``SIGTSTP`` signal. - * @endrst - **/ -void vis_suspend(Vis*); -/** - * Resume editor process. - * @rst - * .. note:: This function is usually called in response to a ``SIGCONT`` signal. - * @endrst - */ -void vis_resume(Vis*); -/** - * Set doupdate flag. - * @rst - * .. note:: Prevent flickering in curses by delaying window updates. - * @endrst - */ -void vis_doupdates(Vis*, bool); -/** * Inform the editor core that a signal occurred. * @return Whether the signal was handled. * @rst @@ -162,8 +141,6 @@ bool vis_interrupt_requested(Vis*); void vis_draw(Vis*); /** Completely redraw user interface. */ void vis_redraw(Vis*); -/** Blit user interface state to output device. */ -void vis_update(Vis*); /** * @} * @defgroup vis_windows @@ -226,8 +203,6 @@ void vis_prompt_show(Vis*, const char *title); * @endrst */ void vis_info_show(Vis*, const char *msg, ...) __attribute__((format(printf, 2, 3))); -/** Hide informational message. */ -void vis_info_hide(Vis*); /** Display arbitrary long message in a dedicated window. */ void vis_message_show(Vis*, const char *msg); |
