summary refs log tree commit diff stats
path: root/src/fe-gtk/menu.c
AgeCommit message (Collapse)Author
2017-09-15Use localized "HexChat" in window titlesChase Patterson
Also allow rearranging of "HexChat" in window titles
2017-09-15Change windows from starting with "Hexchat: " to ending with " - Hexchat"Chase Patterson
2017-08-19UI text consistency, capitalization etc.torhus
2017-08-18Adjust use of ellipsis (...) in menus according to Gnome HIG (#2035)torhus
* Adjust use of ellipses (...) in menus according to Gnome HIG https://developer.gnome.org/hig/stable/writing-style.html.en
2017-07-20Add mnemonic for URL GrabberPatrick Griffis
2017-02-27Removed ctrl+w keybinding from close menu. Closes #397.Poke
2016-06-29menu: Ensure that toggling lag-o-meter changes timer stateBen Gamari
2016-02-18Fix strict prototype warningsPatrick Griffis
2015-02-19Remove compiled date from aboutTingPing
Distros like Debian depend on repeated builds having the same results which this breaks. Since this provides no real value just remove it.
2014-12-28Fix building as c89TingPing
2014-12-28Use glib for all allocationsTingPing
- Removes need to check for malloc failure - Removes need for NULL checks on free - Adds checks for integer overflows - Removes some extra memset calls - Removes chance of mixing libc and glib malloc/free
2014-12-08Minor tidying upArnavion
2014-06-04Fix warningTingPing
2014-06-04Use glib to parse and launch commands for util_execTingPing
Fixes #958
2014-05-30win32: Fix exiting fullscreen to a maximized windowTingPing
2014-05-29Make lawyers happyBerke Viktor
2014-05-27osx: Properly use app menuTingPing
Mentioned in #994
2014-04-02Add marker-line functionality for scrollback, instant seek.RichardHitt
Fixes #662.
2014-02-12Fix some leaksTingPing
2014-01-18Update most deprecated gtk functionsTingPing
2014-01-18Update most deprecated gdk functionsTingPing
2014-01-16Show a popup when opening plugin window when built without supportTingPing
2013-10-27Properly set away and fullscreen menu itemsTingPing
2013-09-29Add default keybindings for italics and underlineTingPing
2013-09-25Only show users country if its not unknownTingPing
2013-09-23typo..TingPing
2013-09-23Update help messages for userlist buttons and user popupsTingPing
2013-09-23Revert menu.c @ ae04663aa9TingPing
This caused a few bugs such as improperly setting away/back and redrawing the channel tree when the menu is opened.
2013-09-20First round of using GTK accessor functionsTingPing
This is the first step to build with GSEAL_ENABLE setup.c uses a deprecated fontchooser, chanview-tabs.c didn't like the conversion, and I am waiting to do some work on xtext.c before converting it.
2013-09-19Make manual reposition after unfullscreen Windows onlyTingPing
2013-09-19Replace more GDK_* with GDK_KEYTingPing
2013-09-19Add fullscreen to to view menuTingPing
2013-09-15Replace search window with a searchbarTingPing
2013-09-15Replace search window with a searchbarTingPing
2013-08-04Add label for website in about dialogTingPing
2013-08-03Use built-in gtk_about_dialogTingPing
2013-07-12Update docs linksTingPing
2013-06-13More autojoin wording tweaksTingPing
2013-06-13Tweak autojoin wordingTingPing
2013-06-08Add more mnemonics to the menuTingPing
2013-06-06Add autoconnect option to menu of networksTingPing
2013-06-06Make autojoin a toggle menuTingPing
2013-06-02Rename favorite channels to autojoin channelsTingPing
2013-05-12Fix favorite channels except in inbound.cBerke Viktor
2013-05-11GtkComboBoxText requires GTK+ 2.24, dump code for older versionsBerke Viktor
2013-05-04Replace g_strdup_printf with g_build_filename where possibleBerke Viktor
2013-04-03Update hiding menu textTingPing
2013-04-03add %u to userlist popups for accountTingPing
2013-04-03Support account-notify and extended-join capabilitiesTingPing
2013-04-03Remove hardcoded clear keybindingTingPing
You can re-add this easily in settings > keyboard shortcuts
n>view = gtkutil_treeview_new (box, GTK_TREE_MODEL (store), NULL, NAME_COLUMN, _("Name"), VERSION_COLUMN, _("Version"), FILE_COLUMN, _("File"), DESC_COLUMN, _("Description"), -1); gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (view), TRUE); for (col_id=0; (col = gtk_tree_view_get_column (GTK_TREE_VIEW (view), col_id)); col_id++) gtk_tree_view_column_set_alignment (col, 0.5); gtk_widget_show (view); return view; } static void plugingui_close_button (GtkWidget * wid, gpointer a) { gtk_widget_destroy (plugin_window); } static void plugingui_close (GtkWidget * wid, gpointer a) { plugin_window = NULL; } extern GSList *plugin_list; void fe_pluginlist_update (void) { xchat_plugin *pl; GSList *list; GtkTreeView *view; GtkListStore *store; GtkTreeIter iter; if (!plugin_window) return; view = g_object_get_data (G_OBJECT (plugin_window), "view"); store = GTK_LIST_STORE (gtk_tree_view_get_model (view)); gtk_list_store_clear (store); list = plugin_list; while (list) { pl = list->data; if (pl->version[0] != 0) { gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, NAME_COLUMN, pl->name, VERSION_COLUMN, pl->version, FILE_COLUMN, file_part (pl->filename), DESC_COLUMN, pl->desc, -1); } list = list->next; } } static void plugingui_load_cb (session *sess, char *file) { if (file) { char *buf = malloc (strlen (file) + 9); if (strchr (file, ' ')) sprintf (buf, "LOAD \"%s\"", file); else sprintf (buf, "LOAD %s", file); handle_command (sess, buf, FALSE); free (buf); } } void plugingui_load (void) { /* let's do it the Perl way */ const char *xdir; char *sub_dir; xdir = get_xdir_utf8 (); sub_dir = malloc (strlen (xdir) + 8); strcpy (sub_dir, xdir); strcat (sub_dir, "/addons"); gtkutil_file_req (_("Select a Plugin or Script to load"), plugingui_load_cb, current_sess, #if 0 /* native file dialogs */ #ifdef WIN32 "Plugins and Scripts\0*.dll;*.lua;*.pl;*.py;*.tcl\0" "All files\0*.*\0\0", 0); #else #endif #endif /* native file dialogs */ #ifdef WIN32 sub_dir, "*.dll;*.lua;*.pl;*.py;*.tcl", FRF_ADDFOLDER|FRF_FILTERISINITIAL|FRF_EXTENSIONS); #else sub_dir, "*.so;*.lua;*.pl;*.py;*.tcl", FRF_ADDFOLDER|FRF_FILTERISINITIAL|FRF_EXTENSIONS); #endif free (sub_dir); } static void plugingui_loadbutton_cb (GtkWidget * wid, gpointer unused) { plugingui_load (); } static void plugingui_unload (GtkWidget * wid, gpointer unused) { int len; char *modname, *file, *buf; GtkTreeView *view; GtkTreeIter iter; view = g_object_get_data (G_OBJECT (plugin_window), "view"); if (!gtkutil_treeview_get_selected (view, &iter, NAME_COLUMN, &modname, FILE_COLUMN, &file, -1)) return; len = strlen (file); #ifdef WIN32 if (len > 4 && g_ascii_strcasecmp (file + len - 4, ".dll") == 0) #else #if defined(__hpux) if (len > 3 && g_ascii_strcasecmp (file + len - 3, ".sl") == 0) #else if (len > 3 && g_ascii_strcasecmp (file + len - 3, ".so") == 0) #endif #endif { if (plugin_kill (modname, FALSE) == 2) fe_message (_("That plugin is refusing to unload.\n"), FE_MSG_ERROR); } else { /* let python.so or perl.so handle it */ buf = malloc (strlen (file) + 10); if (strchr (file, ' ')) sprintf (buf, "UNLOAD \"%s\"", file); else sprintf (buf, "UNLOAD %s", file); handle_command (current_sess, buf, FALSE); free (buf); } g_free (modname); g_free (file); } void plugingui_open (void) { GtkWidget *view; GtkWidget *vbox, *action_area; if (plugin_window) { gtk_window_present (GTK_WINDOW (plugin_window)); return; } plugin_window = gtk_dialog_new (); g_signal_connect (G_OBJECT (plugin_window), "destroy", G_CALLBACK (plugingui_close), 0); gtk_window_set_default_size (GTK_WINDOW (plugin_window), 500, 250); vbox = GTK_DIALOG (plugin_window)->vbox; action_area = GTK_DIALOG (plugin_window)->action_area; gtk_container_set_border_width (GTK_CONTAINER (vbox), 4); gtk_window_set_position (GTK_WINDOW (plugin_window), GTK_WIN_POS_CENTER); gtk_window_set_title (GTK_WINDOW (plugin_window), _(DISPLAY_NAME": Plugins and Scripts")); view = plugingui_treeview_new (vbox); g_object_set_data (G_OBJECT (plugin_window), "view", view); gtkutil_button (action_area, GTK_STOCK_REVERT_TO_SAVED, NULL, plugingui_loadbutton_cb, NULL, _("_Load...")); gtkutil_button (action_area, GTK_STOCK_DELETE, NULL, plugingui_unload, NULL, _("_UnLoad")); gtkutil_button (action_area, GTK_STOCK_CLOSE, NULL, plugingui_close_button, NULL, _("_Close")); fe_pluginlist_update (); gtk_widget_show (plugin_window); }