summaryrefslogtreecommitdiff
path: root/src/terminal-window.c
AgeCommit message (Collapse)AuthorFilesLines
2022-09-11terminal-window: Vble is assigned a value that is never usedrbuj1-6/+1
2022-07-18Remove time.hrbuj1-2/+5
2022-03-23terminal-window: gtk+ 2.17.1 fixed gtk bug 535557rbuj1-14/+1
2022-03-22Fix implicit conversion changes signedness: 'gboolean' to 'guint'rbuj1-1/+1
2021-12-11Use a blank line at mostrbuj1-6/+0
2021-06-25update copyright to 2021raveit651-0/+1
2021-03-30terminal-window: Remove -Wmissing-field-initializers warningsrbuj1-15/+15
2021-02-05build: Use PACKAGE_URL variablerbuj1-1/+1
2021-01-16Update copyright to 2021rbuj1-1/+1
2020-12-27Remove unused macrosrbuj1-1/+0
2020-09-01Remove -Wfloat-conversion warningsrbuj1-2/+6
2020-06-20restore deprecated gtk_menu_popup for context-menuraveit651-14/+5
fixing weird behaviour with wayland compositor
2020-04-13Add set-title-dialog.uirbuj1-35/+11
2020-04-03terminal-window: expand the content of the comment on about dialogrbuj1-1/+1
2020-04-02Add confirm-close-dialog.uirbuj1-22/+16
2020-03-30fix searching in terminal windowNorbert Preining1-3/+3
Make sure are regex are compiled with PCRE2_MULTILINE which is a requirement by the vte library
2020-03-30terminal-window: add icons to "open tab" and "close window/tab"Pablo Barciela1-3/+3
in popup menu
2020-03-21terminal-window: show VTE version in about dialogPablo Barciela1-1/+6
2020-01-13Update copyright to 2020raveit651-1/+1
2020-01-05terminal-window: avoid to make new GSettings in every new windowPablo Barciela1-8/+3
use GSettings app instead
2019-12-19terminal-window: Fix memory leakPablo Barciela1-7/+8
Gsettings needs to be freed
2019-09-11terminal-window: : suppress GtkAction warningsraveit651-1/+88
2019-08-29terminal-window: avoid 'g_type_class_add_private'Pablo Barciela1-4/+2
2019-08-27terminal-window: "utilities-terminal" icon with "Open Terminal"Pablo Barciela1-4/+3
2019-07-06Remove trailing whitespacesLaurent Napias1-3/+3
2019-06-10Change url project's websiteLaurent Napias1-1/+1
2019-04-11Ensure proper translation of the about dialog titlerbuj1-1/+2
Note that GTK+ sets a default title of _("About %s") on the dialog window (where %s is replaced by the name of the application, but in order to ensure proper translation of the title, applications should set the title property explicitly when constructing a GtkAboutDialog https://developer.gnome.org/gtk3/stable/GtkAboutDialog.html
2019-04-11Make translatable the copyright info in about dialogrbuj1-8/+6
2019-04-11Show confirmation dialog if there are multiple open tabs on closingStefan Tauner1-14/+19
As a followup #149 this fixes the behavior of the code to match the description of the respective gsettings entry "confirm-window-close". Said entry is also updated to reflect the change added in #149. No changes to the gsettings handling were made thus only users who have "confirm-window-close" turned on already will see the new behavior.
2019-04-11about: update copyrightrbuj1-1/+1
2019-03-15Use gresources for about_DATA, uimanager_DATA & builder_DATArbuj1-15/+16
2019-03-12Retain copied selection when changing tabsVictor Kareh1-3/+2
2018-09-04terminal-window: Fix warnings with menu popupPablo Barciela1-1/+14
2018-09-04terminal-window: replace deprecated gtk_menu_popupraveit651-65/+7
2018-06-27terminal-window: avoid deprecated 'vte_terminal_copy_clipboard'Pablo Barciela1-0/+8
2018-06-15terminal-window: Fix: Session dbus daemon saturatedPablo Barciela1-13/+10
Fixes https://github.com/mate-desktop/mate-terminal/issues/233
2018-02-09avoid deprecated GtkStockPablo Barciela1-21/+21
2018-01-29require GTK+ 3.22 and GLib 2.50monsta1-22/+0
and drop additional checks for min/max GLib versions, it's not needed
2018-01-27require VTE 0.46monsta1-4/+0
2018-01-09update copyright year to 2018monsta1-1/+1
2017-12-29middle click on a tab: add the gsettings key to enable the featurePablo Barciela1-1/+5
Closes https://github.com/mate-desktop/mate-terminal/issues/184
2017-12-09WidthOfScreen and HeightOfScreen implementationPablo Barciela1-7/+4
This commit reverts: https://github.com/mate-desktop/mate-terminal/commit/5c6f10892aed32bf7c450962119f65c470898d6d And it applies an alternative to fix the deprecated functions: gdk_screen_get_width gdk_screen_get_height
2017-11-20add the abbility to switch tabs using [ctrl+tab] and [ctrl+shift+tab]Pablo Barciela1-0/+44
If true the gsettings key "ctrl-tab-switch-tabs" into "org.mate.terminal.global" Closes https://github.com/mate-desktop/mate-terminal/issues/98
2017-11-08avoid deprecated vte_terminal_search_get_gregexPablo Barciela1-0/+4
Fixes https://github.com/mate-desktop/mate-terminal/issues/199
2017-10-24add "select all" keyboard shortcut: [control] + [shift] + [A]Pablo Barciela1-1/+1
and it can be changed in "edit" -> "keyboard shortcuts" Closes https://github.com/mate-desktop/mate-terminal/issues/191
2017-08-24gtk 3.22: avoid deprecated gdk_screen_get_monitor... functions:ZenWalker1-0/+13
avoid deprecated: gdk_screen_get_monitor_geometry gdk_screen_get_monitor_at_window
2017-08-10avoid deprecated gdk_screen_get_width/heightZenWalker1-4/+7
2017-04-16update copyright year to 2017monsta1-1/+1
2017-04-12Fix: Double click with right button causes Xorg to crashZenWalker1-3/+3
Fixes #171
2017-01-30call gtk_notebook_detach_tab only if the tab is detachedPablo Barciela1-3/+14
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1398234