mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-10 11:25:08 -05:00
62 lines
2.9 KiB
C
62 lines
2.9 KiB
C
/* HexChat
|
|
* Copyright (C) 1998-2010 Peter Zelezny.
|
|
* Copyright (C) 2009-2013 Berke Viktor.
|
|
*
|
|
* This program 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 St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef HEXCHAT_MAINGUI_H
|
|
#define HEXCHAT_MAINGUI_H
|
|
|
|
extern GtkStyle *input_style;
|
|
extern GtkWidget *parent_window;
|
|
|
|
void mg_changui_new (session *sess, restore_gui *res, int tab, int focus);
|
|
void mg_update_xtext (GtkWidget *wid);
|
|
void mg_open_quit_dialog (gboolean minimize_button);
|
|
void mg_switch_page (int relative, int num);
|
|
void mg_move_tab (session *, int delta);
|
|
void mg_move_tab_family (session *, int delta);
|
|
void mg_bring_tofront (GtkWidget *vbox);
|
|
void mg_bring_tofront_sess (session *sess);
|
|
void mg_decide_userlist (session *sess, gboolean switch_to_current);
|
|
void mg_set_topic_tip (session *sess);
|
|
GtkWidget *mg_create_generic_tab (char *name, char *title, int force_toplevel, int link_buttons, void *close_callback, void *userdata, int width, int height, GtkWidget **vbox_ret, void *family);
|
|
void mg_set_title (GtkWidget *button, char *title);
|
|
void mg_set_access_icon (session_gui *gui, GdkPixbuf *pix, gboolean away);
|
|
void mg_apply_setup (void);
|
|
void mg_close_sess (session *);
|
|
void mg_tab_close (session *sess);
|
|
void mg_detach (session *sess, int mode);
|
|
void mg_progressbar_create (session_gui *gui);
|
|
void mg_progressbar_destroy (session_gui *gui);
|
|
void mg_dnd_drop_file (session *sess, char *target, char *uri);
|
|
void mg_change_layout (int type);
|
|
void mg_update_meters (session_gui *);
|
|
void mg_inputbox_cb (GtkWidget *igad, session_gui *gui);
|
|
void mg_create_icon_item (char *label, char *stock, GtkWidget *menu, void *callback, void *userdata);
|
|
GtkWidget *mg_submenu (GtkWidget *menu, char *text);
|
|
/* DND */
|
|
gboolean mg_drag_begin_cb (GtkWidget *widget, GdkDragContext *context, gpointer userdata);
|
|
void mg_drag_end_cb (GtkWidget *widget, GdkDragContext *context, gpointer userdata);
|
|
gboolean mg_drag_drop_cb (GtkWidget *widget, GdkDragContext *context, int x, int y, guint time, gpointer user_data);
|
|
gboolean mg_drag_motion_cb (GtkWidget *widget, GdkDragContext *context, int x, int y, guint time, gpointer user_data);
|
|
/* search */
|
|
void mg_search_toggle(session *sess);
|
|
void mg_search_handle_previous(GtkWidget *wid, session *sess);
|
|
void mg_search_handle_next(GtkWidget *wid, session *sess);
|
|
|
|
#endif
|