summary refs log tree commit diff stats
path: root/src/common/text.c
AgeCommit message (Expand)Author
2017-10-02Use g_utf8_make_valid if available for cleaner utf8 handling (#2065)Joseph Bisch
2017-06-18Fix crash on coloring NULL nicksPatrick Griffis
2017-06-10Actually respect away_omit_alerts for custom sounds...Patrick Griffis
2017-06-10Disable custom sounds when away_omit_alerts enabledYuGiOhJCJ
2016-11-11Respect plugin hook changing tab colorPatrick Griffis
2016-11-11Further tab color improvementsPatrick Griffis
2016-11-11More fixes for tab color handling with pluginsPatrick Griffis
2016-10-10Don't abort if translated text event failsPatrick Griffis
2016-09-11Sanitize network name for scrollback filesPatrick Griffis
2016-07-24Kill fe_set_hilight()Patrick Griffis
2016-06-24Forcibly reset iconv converter after every conversion.Arnavion
2016-04-26More minor scrollback loading improvementsPatrick Griffis
2016-02-18Fix strict prototype warningsPatrick Griffis
2016-01-31Improve scrollback file handlingPatrick Griffis
2016-01-28Sanitize server name for log filesPatrick Griffis
2016-01-28Add support for cap-notifyPatrick Griffis
2015-05-28Fix warningTingPing
2015-04-04Fix some text event descriptionsTingPing
2015-03-02Fix incorrect timestamp in scrollback with server-timebendem
2015-02-28Make use of g_path_is_absolute()TingPing
2015-02-28Clean up some ifdefsTingPing
2015-02-27Write scrollback as binary on win32TingPing
2015-01-31Save iconv converters for input and output in the server.Arnavion
2015-01-18Server line text-encoding-related fixes.Arnavion
2015-01-14Don't crash if the log file can't be opened.Arnavion
2014-12-31Fix some unused warningsTingPing
2014-12-28Fix building as c89TingPing
2014-12-28Use glib for all allocationsTingPing
2014-12-15Fixed some more signed-unsigned-comparison warnings.Arnavion
2014-12-11Fix some leaksTingPing
2014-12-08Fixed leak of filename string.Arnavion
2014-12-08Minor tidying upArnavion
2014-12-08ltin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/* 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_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