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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 84 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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
/*
* GNT - The GLib Ncurses Toolkit
*
* GNT is the legal property of its developers, whose names are too numerous
* to list here. Please refer to the COPYRIGHT file distributed with this
* source distribution.
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#ifndef GNT_H
#define GNT_H
/**
* SECTION:gnt
* @section_id: libgnt-gnt
* @title: General
* @short_description: General API for managing GNT
*/
#include <glib.h>
#ifndef GNTSEAL
# if defined(GNTSEAL_ENABLE)
# define GNTSEAL(ident) _gnt_sealed__ ## ident
# else
# define GNTSEAL(ident) ident
# endif
#endif /* !GNTSEAL */
#include "gntwidget.h"
#include "gntclipboard.h"
#include "gntcolors.h"
#include "gntkeys.h"
/**
* gnt_init:
*
* Initialize GNT.
*/
void gnt_init(void);
/**
* gnt_main:
*
* Start running the mainloop for gnt.
*/
void gnt_main(void);
/**
* gnt_ascii_only:
*
* Check whether the terminal is capable of UTF8 display.
*
* Returns: %FALSE if the terminal is capable of drawing UTF-8, %TRUE otherwise.
*/
gboolean gnt_ascii_only(void);
/**
* gnt_window_present:
* @window: The window the present.
*
* Present a window. If the event was triggered because of user interaction,
* the window is moved to the foreground. Otherwise, the Urgent hint is set.
*
* Since: 2.1.0
*/
void gnt_window_present(GntWidget *window);
#ifndef GNT_DISABLE_DEPRECATED
/**
* gnt_screen_occupy:
*
* Internal function -- do not use.
* Use gnt_widget_show() instead.
*
* Deprecated: 2.14.0: Use gnt_widget_show() instead.
*/
void gnt_screen_occupy(GntWidget *widget) G_GNUC_DEPRECATED;
/**
* gnt_screen_release:
*
* Internal function -- do not use.
* Use gnt_widget_hide() instead.
*
* Deprecated: 2.14.0: Use gnt_widget_hide() instead.
*/
void gnt_screen_release(GntWidget *widget) G_GNUC_DEPRECATED;
/**
* gnt_screen_update:
*
* Internal function -- do not use.
* Use gnt_widget_draw() instead.
*
* Deprecated: 2.14.0: Use gnt_widget_draw() instead.
*/
void gnt_screen_update(GntWidget *widget) G_GNUC_DEPRECATED;
#endif /* GNT_DISABLE_DEPRECATED */
/**
* gnt_screen_resize_widget:
* @widget: The widget to resize.
* @width: The desired width.
* @height: The desired height.
*
* Resize a widget.
*/
void gnt_screen_resize_widget(GntWidget *widget, int width, int height);
/**
* gnt_screen_move_widget:
* @widget: The widget to move.
* @x: The desired x-coordinate.
* @y: The desired y-coordinate.
*
* Move a widget.
*/
void gnt_screen_move_widget(GntWidget *widget, int x, int y);
/**
* gnt_screen_rename_widget:
* @widget: The widget to rename.
* @text: The new name for the widget.
*
* Rename a widget.
*/
void gnt_screen_rename_widget(GntWidget *widget, const char *text);
/**
* gnt_widget_has_focus:
* @widget: The widget.
*
* Check whether a widget has focus.
*
* Returns: %TRUE if the widget has the current focus, %FALSE otherwise.
*/
gboolean gnt_widget_has_focus(GntWidget *widget);
/**
* gnt_widget_set_urgent:
* @widget: The widget to set the URGENT hint for.
*
* Set the URGENT hint for a widget.
*/
void gnt_widget_set_urgent(GntWidget *widget);
/**
* gnt_register_action:
* @label: The user-visible label for the action.
* @callback: The callback function for the action.
*
* Register a global action.
*/
void gnt_register_action(const char *label, void (*callback)(void));
/**
* gnt_screen_menu_show:
* @menu: The menu to display.
*
* Show a menu.
*
* Returns: %TRUE if the menu is displayed, %FALSE otherwise (e.g., if another menu is currently displayed).
*/
gboolean gnt_screen_menu_show(gpointer menu);
/**
* gnt_quit:
*
* Terminate the mainloop of gnt.
*/
void gnt_quit(void);
/**
* gnt_get_clipboard:
*
* Get the global clipboard.
*
* Returns: (transfer none): The clipboard.
*/
GntClipboard * gnt_get_clipboard(void);
/**
* gnt_get_clipboard_string:
*
* Get the string in the clipboard.
*
* Returns: A copy of the string in the clipboard. The caller
* must g_free() the string.
*/
gchar * gnt_get_clipboard_string(void);
/**
* gnt_set_clipboard_string:
* @string: The new content of the new clipboard.
*
* Set the contents of the global clipboard.
*/
void gnt_set_clipboard_string(const gchar *string);
/**
* gnt_giveup_console:
* @wd: The working directory for the new application.
* @argv: The argument vector.
* @envp: The environment, or %NULL.
* @stin: Location to store the child's stdin, or %NULL.
* @stout: Location to store the child's stdout, or %NULL.
* @sterr: Location to store the child's stderr, or %NULL.
* @callback: The callback to call after the child exits.
* @data: The data to pass to the callback.
*
* Spawn a different application that will consume the console.
*
* Returns: %TRUE if the child was successfully spawned, %FALSE otherwise.
*/
gboolean gnt_giveup_console(const char *wd, char **argv, char **envp,
gint *stin, gint *stout, gint *sterr,
void (*callback)(int status, gpointer data), gpointer data);
/**
* gnt_is_refugee:
*
* Check whether a child process is in control of the current terminal.
*
* Returns: %TRUE if a child process (eg., PAGER) is occupying the current
* terminal, %FALSE otherwise.
*/
gboolean gnt_is_refugee(void);
#endif /* GNT_H */
|