summaryrefslogtreecommitdiff
path: root/mate-panel/panel-applet-frame.c
AgeCommit message (Collapse)AuthorFilesLines
2022-06-01Add "center-stick" capability applets on the panelThe Squash1-1/+1
Conventionally, the applets on a MATE Panel are positioned relative to the left edge of the panel (if the panel is horizontal) or the top edge (if the panel is vertical). There has also been some (buggy) support for positioning of applets relative to the right (or bottom) edge of the panel, so that applets on the right side of the panel will stay on the right side even if the user changes screen resolutions or if the panel changes size for some other reason. However, many users want to also place applets at or near the center of their panel(s). There is no such conventional support for positioning applets relative to the center of the panel, so users have positioned applets near the center of the panel -- but the position recorded is relative to the left side of the panel. As such, the applets will almost certainly shift over to the left or right slightly if the panel is ever resized, and the user will have to reposition all those centered applets yet again. This is especially frustrating if the user switches monitors on a regular basis! This patch radically revamps the MATE Panel's positioning framework, and deprecates the original "right-stick" feature. To replace the right-stick feature, this patch instead associates an "edge relativity" setting with each and every panel applet: An applet can be relative to the start (left/ top), end (right/bottom), or center of the panel. This setting can be changed using DConf/GSettings, using a custom panel layout file, or even by simply dragging the applet to the appropriate place on the panel. (Conventionally, applets are not even right-stuck automatically even when the user drags the applet over to the far right of the panel!) As a bonus, when the user drags an applet across the center of the panel, the applet will temporarily "stick" to the very center of the panel, to allow the user to very precisely align any applet they wish.
2022-01-26Fix implicit conversion changes signedness: 'gboolean' to 'guint'rbuj1-1/+1
2021-12-20Fix some -Wsign-compare warningsrbuj1-3/+3
2021-12-16Use g_clear_pointer() and g_clear_object()rbuj1-4/+2
2021-06-22update copyright to 2021raveit651-0/+1
2020-09-07Remove variableScope warnings reported by cppcheckrbuj1-4/+2
cppcheck --enable=all . 2> err.txt grep variableScope err.txt
2020-07-23panel-applet-frame: Fix leaking bg_patternTomas Bzatek1-19/+21
Also acquire it only when needed. This fixes a leak for me when switching workspaces back and forth.
2020-07-05Avoid using single-line cpp commentsrbuj1-1/+1
2019-05-16[mate-panel] Avoid deprecated g_type_class_add_privateWu Xiaotian1-7/+3
2019-03-10Wayland support for panel-applet-frame.cWilliam Wold1-4/+14
2018-04-09avoid gtk_dialog_add_buttons with stock idsPablo Barciela1-7/+10
2018-01-31require GTK+ 3.22 and GLib 2.50monsta1-32/+2
2018-01-25avoid deprecated GtkStockPablo Barciela1-2/+2
2018-01-16get focus when displaying "applet broken" dialogPablo Barciela1-0/+4
2016-11-21move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build optionmonsta1-117/+1
and require libmate-desktop >= 1.17 WARNING: use GTK+3 build of libmateweather for this build. that lib is not migrated to GTK+3 only as we will possibly use libgweather instead of it.
2016-09-01GTK+-3.20 panel-frame: use GtkSeat instead of deprecated device pointerraveit651-3/+2
2016-06-29fix some warnings and deprecationsSorokin Alexei1-1/+10
2016-03-25Gtk3.18/3.20-move background handling toplevel lukefromdc1-5/+21
panel-applet-frame.c
2016-02-09GTK+3 panel-applet-frame: fix deprecated gdk_pointer_ungrabWolfgang Ulbrich1-1/+2
2016-01-05rename mate-panel-*.{c|h} -> panel-*.{c|h} for consistencymonsta1-0/+1193
(libmate-panel-applet files are left alone since there are public header files used by all panel applets)