summaryrefslogtreecommitdiff
path: root/src/ui/tile-preview.c
AgeCommit message (Collapse)AuthorFilesLines
2020-08-04Remove multiple empty linesrbuj1-1/+0
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 'N;/^\n$/D;P;D;' {} \;
2018-08-28theme: replace mutter/metacity with marcoVictor Kareh1-1/+1
2018-03-22Support HiDPI window decorationsVictor Kareh1-0/+7
2017-07-29avoid deprecated gdk_display_get_screenZenWalker1-2/+2
2017-04-23tile-preview: avoid a deprecation warningAlberts Muktupāvels1-3/+4
Taken from: https://git.gnome.org/browse/metacity/commit/?id=3380502
2016-10-15move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build optionmonsta1-110/+1
2016-02-28GTK+3: Get values from GtkStyleContext states properlyraveit651-1/+6
this avoids warnings like this: Warning of Windowmanagement:Log level 16: State 4 for context 0x55988f9ad950 doesn't match state 128 set via gtk_style_context_set_state ()
2015-09-18gtk3: draw 1px tile borderDenis Gorodnichev1-6/+9
2015-09-16tile-preview: Small cleanupinfirit1-9/+1
* GDK_DISPLAY_XDISPLAY and gdk_display_get_default are in Gtk2 * Get window from GdkEvent
2015-06-10Merge pull request #164 from dnk/tile_preview_glitchMartin Wimpress1-1/+2
tile preview: invalidate window before showing
2015-01-14check compositor statusDenis Gorodnichev1-15/+16
2015-01-14show tile preview with external compositorDenis Gorodnichev1-4/+3
2015-01-14tile preview: invalidate window before showingDenis Gorodnichev1-1/+2
2014-11-25merge metacity(gtk3) changesDenis Gorodnichev1-5/+69
merge metacity(gtk3) changes fix warnings clean up unused variables replace UNUSED_VARIABLE by G_GNUC_UNUSED
2014-10-25Cleanup GTK_CHECK_VERSION and unify where possibleinfirit1-5/+1
gdk_x11_window_lookup_for_display since 2.24 GDK_WINDOW_XID since always gtk_widget_get_visible since 2.18 gtk_widget_set_mapped since 2.20 gdk_event_new since 2.2 gdk_x11_window_lookup_for_display since 2.24 gdk_text_property_to_utf8_list_for_display since 2.2 gtk_widget_get_realized since 2.20 gdk_visual_get_depth since 2.22 gtk_widget_get_window since 2.14 gtk_widget_set_allocation since 2.18
2014-01-24tile-preview: Fix GTK3 supportStefano Karapetsas1-7/+17
2014-01-24ui: Fix endif positionStefano Karapetsas1-1/+1
2014-01-24tile-preview: Replace gtk_window_set_visual with gtk_widget_set_visualStefano Karapetsas1-1/+1
2014-01-24tile-preview: Add GTK3 supportStefano Karapetsas1-1/+28
2013-05-31Implement side-by-side tilingStefano Karapetsas1-0/+251
Patch by Florian Müllner for Metacity https://bugzilla.gnome.org/show_bug.cgi?id=607694 When dragging a window over a screen edge and dropping it there, maximize it vertically and scale it horizontally to cover the corresponding half of the current monitor. Whenever a "hot area" which triggers this behavior is entered, an indication of window's target size is displayed after a short delay to avoid distraction when moving a window between monitors.