Consistent header macros everywhere

This commit is contained in:
Berke Viktor
2013-04-01 01:02:03 +02:00
parent 4de6db6c47
commit 0f20423455
34 changed files with 163 additions and 12 deletions

View File

@ -17,4 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_ABOUT_H
#define HEXCHAT_ABOUT_H
void menu_about (GtkWidget * wid, gpointer sess);
#endif

View File

@ -17,4 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_ASCII_H
#define HEXCHAT_ASCII_H
void ascii_open (void);
#endif

View File

@ -17,8 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef BANLIST_H
#define BANLIST_H
#ifndef HEXCHAT_BANLIST_H
#define HEXCHAT_BANLIST_H
#include "../common/hexchat.h"
void banlist_opengui (session *sess);
@ -72,4 +72,5 @@ typedef struct mode_info_s {
int bit; /* Mask bit, e.g., 1<<MODE_BAN */
void (*tester)(banlist_info *, int); /* Function returns true to set bit into checkable */
} mode_info;
#endif /* BANLIST_H */
#endif /* HEXCHAT_BANLIST_H */

View File

@ -17,4 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_CHANLIST_H
#define HEXCHAT_CHANLIST_H
void chanlist_opengui (server *serv, int do_refresh);
#endif

View File

@ -17,6 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_CHANVIEW_H
#define HEXCHAT_CHANVIEW_H
typedef struct _chanview chanview;
typedef struct _chan chan;
@ -48,3 +51,5 @@ chan * chan_get_parent (chan *ch);
#define FOCUS_NEW_ALL 1
#define FOCUS_NEW_ONLY_ASKED 2
#define FOCUS_NEW_NONE 0
#endif

View File

@ -17,8 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef _custom_list_h_included_
#define _custom_list_h_included_
#ifndef HEXCHAT_CUSTOM_LIST_H
#define HEXCHAT_CUSTOM_LIST_H
#include <gtk/gtk.h>
@ -101,4 +101,4 @@ void custom_list_append (CustomList *, chanlistrow *);
void custom_list_resort (CustomList *);
void custom_list_clear (CustomList *);
#endif /* _custom_list_h_included_ */
#endif /* HEXCHAT_CUSTOM_LIST_H */

View File

@ -17,4 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_EDITLIST_H
#define HEXCHAT_EDITLIST_H
void editlist_gui_open (char *title1, char *title2, GSList * list, char *title, char *wmclass, char *file, char *help);
#endif

View File

@ -17,6 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_FE_GTK_H
#define HEXCHAT_FE_GTK_H
#ifdef WIN32
#include "../../config-win32.h"
#else
@ -209,3 +212,5 @@ void SPELL_ENTRY_INSERT (GtkWidget *entry, const char *text, int len, int *pos);
#define SPELL_ENTRY_SET_POS(e,p) gtk_editable_set_position(GTK_EDITABLE(e),p);
#define SPELL_ENTRY_INSERT(e,t,l,p) gtk_editable_insert_text(GTK_EDITABLE(e),t,l,p)
#endif
#endif

View File

@ -17,6 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_FKEYS_H
#define HEXCHAT_FKEYS_H
/* These are cp'ed from history.c --AGL */
#define STATE_SHIFT GDK_SHIFT_MASK
#define STATE_ALT GDK_MOD1_MASK
@ -31,3 +34,5 @@ void key_dialog_show (void);
int key_handle_key_press (GtkWidget * wid, GdkEventKey * evt, session *sess);
int key_action_insert (GtkWidget * wid, GdkEventKey * evt, char *d1, char *d2,
session *sess);
#endif

View File

@ -17,6 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_GTKUTIL_H
#define HEXCHAT_GTKUTIL_H
#include <gtk/gtktreeview.h>
#include <gtk/gtktreemodel.h>
@ -57,3 +60,4 @@ gboolean gtkutil_treemodel_string_to_iter (GtkTreeModel *model, gchar *pathstr,
gboolean gtkutil_treeview_get_selected_iter (GtkTreeView *view, GtkTreeIter *iter_ret);
gboolean gtkutil_treeview_get_selected (GtkTreeView *view, GtkTreeIter *iter_ret, ...);
#endif

View File

@ -17,5 +17,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_JOIND_H
#define HEXCHAT_JOIND_H
void joind_open (server *serv);
void joind_close (server *serv);
#endif

View File

@ -17,6 +17,9 @@
* 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;
@ -50,3 +53,5 @@ gboolean mg_drag_begin_cb (GtkWidget *widget, GdkDragContext *context, gpointer
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);
#endif

View File

@ -17,6 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_MENU_H
#define HEXCHAT_MENU_H
GtkWidget *menu_create_main (void *accel_group, int bar, int away, int toplevel, GtkWidget **menu_widgets);
void menu_urlmenu (GdkEventButton * event, char *url);
void menu_chanmenu (session *sess, GdkEventButton * event, char *chan);
@ -58,3 +61,5 @@ void menu_change_layout (void);
#if (MENU_ID_NUM < MENU_ID_USERMENU)
#error MENU_ID_NUM is set wrong
#endif
#endif

View File

@ -17,7 +17,12 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_MMX_CMOD_H
#define HEXCHAT_MMX_CMOD_H
void shade_ximage_15_mmx(void *data, int bpl, int w, int h, int rm, int gm, int bm);
void shade_ximage_16_mmx(void *data, int bpl, int w, int h, int rm, int gm, int bm);
void shade_ximage_32_mmx(void *data, int bpl, int w, int h, int rm, int gm, int bm);
int have_mmx (void);
#endif

View File

@ -17,5 +17,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_NOTIFYGUI_H
#define HEXCHAT_NOTIFYGUI_H
void notify_gui_update (void);
void notify_opengui (void);
#endif

View File

@ -17,6 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_PALETTE_H
#define HEXCHAT_PALETTE_H
extern GdkColor colors[];
#define COL_MARK_FG 32
@ -33,3 +36,5 @@ extern GdkColor colors[];
void palette_alloc (GtkWidget * widget);
void palette_load (void);
void palette_save (void);
#endif

View File

@ -17,6 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_PIXMAPS_H
#define HEXCHAT_PIXMAPS_H
extern GdkPixbuf *pix_ulist_voice;
extern GdkPixbuf *pix_ulist_halfop;
extern GdkPixbuf *pix_ulist_op;
@ -38,3 +41,5 @@ extern GdkPixbuf *pix_hexchat;
extern GdkPixmap *pixmap_load_from_file (char *file);
extern void pixmaps_init (void);
#endif

View File

@ -17,7 +17,12 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_PLUGIN_TRAY_H
#define HEXCHAT_PLUGIN_TRAY_H
int tray_plugin_init (void *, char **, char **, char **, char *);
int tray_plugin_deinit (void *);
gboolean tray_toggle_visibility (gboolean force_hide);
void tray_apply_setup (void);
#endif

View File

@ -17,5 +17,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_PLUGINGUI_H
#define HEXCHAT_PLUGINGUI_H
void plugingui_open (void);
void plugingui_load (void);
#endif

View File

@ -17,4 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_RAWLOG_H
#define HEXCHAT_RAWLOG_H
void open_rawlog (server *serv);
#endif

View File

@ -17,4 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_SEARCH_H
#define HEXCHAT_SEARCH_H
void search_open (session * sess);
#endif

View File

@ -17,4 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_SERVLISTGUI_H
#define HEXCHAT_SERVLISTGUI_H
void servlist_autojoinedit (ircnet *net, char *channel, gboolean add);
#endif

View File

@ -17,4 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
void setup_apply_real (int new_pix, int do_ulist, int do_layout);
#ifndef HEXCHAT_SETUP_H
#define HEXCHAT_SETUP_H
void setup_apply_real (int new_pix, int do_ulist, int do_layout);
#endif

View File

@ -17,5 +17,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_TEXTGUI_H
#define HEXCHAT_TEXTGUI_H
void PrintTextRaw (void *xtbuf, unsigned char *text, int indent, time_t stamp);
void pevent_dialog_show (void);
#endif

View File

@ -17,4 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_URLGRAB_H
#define HEXCHAT_URLGRAB_H
void url_opengui (void);
#endif

View File

@ -17,6 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_USERLISTGUI_H
#define HEXCHAT_USERLISTGUI_H
void userlist_set_value (GtkWidget *treeview, gfloat val);
gfloat userlist_get_value (GtkWidget *treeview);
GtkWidget *userlist_create (GtkWidget *box);
@ -25,3 +28,5 @@ void userlist_show (session *sess);
void userlist_select (session *sess, char *name);
char **userlist_selection_list (GtkWidget *widget, int *num_ret);
GdkPixbuf *get_user_icon (server *serv, struct User *user);
#endif

View File

@ -17,8 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __XTEXT_H__
#define __XTEXT_H__
#ifndef HEXCHAT_XTEXT_H
#define HEXCHAT_XTEXT_H
#include <gtk/gtkadjustment.h>
#ifdef USE_XFT