Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-11-28 | Fix warning and remove unused variable | infirit | 2 | -3/+1 | |
2014-11-28 | Don't build some RANDR code if RANDR is not available | infirit | 1 | -0/+4 | |
Based on gnome-desktop commit: f89d8a582abbb79898a93d26a8c0f52f74b20bd2 From: Federico Mena Quintero <[email protected]> Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=643940 | |||||
2014-11-28 | introspection: Fix c-includes to actually include headers | infirit | 1 | -0/+1 | |
Based on gnome-commit: 446e8ffcf16ccf909f45b293532f50996b0dd728 From: Benjamin Otte <[email protected]> | |||||
2014-11-28 | Properly get the workarea for positioning the labels | infirit | 1 | -4/+39 | |
Based on gnome-desktop commit: b4b3fbe614c245e5e2cc4ca431d0f5310eca6ed1 From: Matthias Clasen <[email protected]> Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=641996 | |||||
2014-11-28 | Fix refcount issues for ->config | infirit | 1 | -1/+1 | |
If the GnomeRRLabeler object is going to be unref'ing the config object, then it better keeps its own reference to it, otherwise it could cause problems when destroyed and re-created. Based on gnome-desktop commit: 8ceca629c2db2c8da0c7d8e391a68367c6c705d9 From: Bastien Nocera <[email protected]> | |||||
2014-11-28 | Fix two problems that causes m-s-d to crash at start | infirit | 1 | -1/+2 | |
We need to ref outputs when we are copying them in the parser, and we need to avoid confusing i and j, even if they both have dots. Based on gnome-desktop commit: 11880c8bfd7b3f1edde58b8e83e46ebd59a44311 From: Matthias Clasen <[email protected]> | |||||
2014-11-28 | MateRROutputInfo: rename boolean accessors | infirit | 3 | -7/+7 | |
Rename get_connected() to is_connected() and get_active() to is_active(), following the normal convention. Based on gnome-desktop commit: 46d48ab6ec256498d0dd0a5c97c0388381971cbf From: Giovanni Campagna <[email protected]> | |||||
2014-11-28 | Disallow null filenames passed to mate_rr_config_load_filename() | infirit | 1 | -1/+10 | |
Based on gnome-desktop commit: 7c2e51427fff29f1582eb5ed035f8c7637ea908f From: Federico Mena Quintero <[email protected]> | |||||
2014-11-28 | Make the signal be MateRRScreen::changed, not screen-changed, to match the ↵ | infirit | 1 | -1/+1 | |
vmethod name Based on gnome-desktop commit: cce5c87297ff8c163d4a29e1fc4e7277cbb4705a From: Federico Mena Quintero <[email protected]> | |||||
2014-11-28 | Turn the RANDR version checks into macros | infirit | 1 | -12/+15 | |
This makes them less error-prone to use. Also, fixes the master check for RANDR 1.2 in gnome_rr_screen_initable_init(), which wouldn't handle RANDR versions above 1.x. Based on gnome-desktop commit: 4da0756ef2e42b8040d8043029057b08e85efcec From: Federico Mena Quintero <[email protected]> | |||||
2014-11-28 | Don't export private symbols in the shared library | infirit | 1 | -0/+1 | |
Based on gnome-desktop commit: 81590ec66ee8507ae61b47d3d93a8685e970a629 From: Emilio Pozuelo Monfort <[email protected]> | |||||
2014-11-28 | Always use gdk_window_get_window_type | infirit | 1 | -6/+2 | |
2014-11-28 | Turn GnomeRRConfig and GnomeOutputInfo into GObjects | infirit | 9 | -710/+1077 | |
Based on gnome-desktop commits: 1d1f8ef64f404eccb29d384a75939701327e8e77 2c7a2e90fee98ff61e530098bc962a65dec670bc 7436f759bec00d87f597ef0b6945da8fa8969e85 From: Giovanni Campagna <[email protected]> Gnome Bug: https://bugzilla.gnome.org/show_bug.cgi?id=630913 | |||||
2014-11-28 | rr: unset primary on displays that are off | infirit | 1 | -1/+3 | |
Based on gnome-desktop commit: 4dd5a30269d71bbe1da884a849db2290df5544c9 From: William Jon McCann <[email protected]> | |||||
2014-11-28 | rr: add api for ensuring a primary display is set in config | infirit | 2 | -0/+65 | |
Based on gnome-desktop commit: f632805c549053a548877785e3e624b1fe687f23 From: William Jon McCann <[email protected]> | |||||
2014-11-28 | Add support for GObjectIntrospection | infirit | 8 | -30/+183 | |
Turned all GnomeRR structures into boxed types, then added the needed annotations and the Makefile.am bits. Does not yet include API changes, but should bind (awfully) all of libgnome-desktop. Based on gnome commit: cad94246fb5be76482212407a380cd75f9e7b932 url: https://git.gnome.org/browse/gnome-desktop/commit/?id=cad94246fb5be76482212407a380cd75f9e7b932 | |||||
2014-11-28 | Turn MateRRScreen into a GObject | infirit | 4 | -132/+310 | |
Rework MateRRScreen so that it is a full GObject, and all its data is moved to MateScreenPrivate. GObject's are more supported when it comes to introspection and bindings, in particular wrt constructors. Therefore, this is a necessary step for useful introspection generation. https://bugzilla.gnome.org/show_bug.cgi?id=630913 Based on gnome commit 4d2a27d55bcf9bb8de170ae6c6540724125aafa3 url: https://git.gnome.org/browse/gnome-desktop/commit/?id=4d2a27d55bcf9bb8de170ae6c6540724125aafa3 | |||||
2014-11-28 | changed checking for NULL a bit | Monsta | 1 | -1/+6 | |
the code below clearly assumes that slide should never be NULL, so the check is now done via g_return_if_fail Closes https://github.com/mate-desktop/mate-desktop/pull/143 | |||||
2014-11-28 | avoid dereferencing NULL pointer | Monsta | 1 | -4/+2 | |
Closes https://github.com/mate-desktop/mate-desktop/pull/145 | |||||
2014-11-28 | don't leak memory | monsta | 1 | -2/+6 | |
Closes https://github.com/mate-desktop/mate-desktop/pull/138 | |||||
2014-11-28 | va_start should be paired with va_end | monsta | 2 | -0/+4 | |
Closes https://github.com/mate-desktop/mate-desktop/pull/137 | |||||
2014-11-07 | gtk3: rgba rr-labeler api | Denis Gorodnichev | 2 | -1/+62 | |
2014-11-07 | gtk3: append missing include | Denis Gorodnichev | 1 | -0/+1 | |
2014-11-07 | mate_desktop_gtk_style_get_light_color and mate_desktop_gtk_style_get_dark_color | Denis Gorodnichev | 2 | -0/+260 | |
2014-07-12 | libmate-desktop: Remove some compatibility with glib < 2.32 | Stefano Karapetsas | 1 | -17/+0 | |
2014-07-02 | mate-color-select: Add copy button | Stefano Karapetsas | 1 | -2/+15 | |
2014-07-01 | Use palette in MateColorButton | Stefano Karapetsas | 1 | -0/+2 | |
2014-06-26 | MateColorSelection: Use colors from GTK3 palette | Stefano Karapetsas | 1 | -34/+6 | |
2014-06-26 | libmate-desktop: Fix Since: occurrences in comments copied from Gtk+ | Stefano Karapetsas | 3 | -17/+17 | |
2014-06-26 | MateColorButton: Add function to get/set rgba color for GTK3 | Stefano Karapetsas | 2 | -0/+56 | |
2014-06-25 | Merge pull request #114 from dnk/focus_chain | Stefano Karapetsas | 1 | -0/+1 | |
forbid to switch focus between labels | |||||
2014-06-23 | Use G_{BEGIN,END}_DECLS instead of #ifdef __cplusplus in header files and ↵ | Michal Ratajsky | 10 | -36/+20 | |
make sure to include glib.h for these macros | |||||
2014-06-21 | Remove unneeded includes | Michal Ratajsky | 1 | -3/+0 | |
2014-06-21 | Improve comments | Michal Ratajsky | 2 | -3/+3 | |
2014-06-21 | Correctly support GDK2 and GDK3 without a deprecation warning | Michal Ratajsky | 1 | -0/+5 | |
2014-06-21 | Make mate_gdk_spawn_command_line_on_screen available on GTK2 | Michal Ratajsky | 2 | -4/+0 | |
2014-06-21 | Add missing includes | Michal Ratajsky | 1 | -0/+2 | |
2014-06-21 | Remove trailing spaces | Michal Ratajsky | 1 | -4/+4 | |
2014-06-05 | Replace GtkObject with GObject also for gtk2 | infirit | 1 | -35/+0 | |
2014-06-05 | Use GDK_WINDOW_XID to get xid for both Gtk+ versions | infirit | 1 | -5/+1 | |
2014-06-05 | Drop support for Glib < 2.36 | infirit | 1 | -99/+0 | |
2014-06-05 | GDK_KEY_* was introduced in Gtk+ 2.22 | infirit | 2 | -30/+22 | |
2014-05-20 | forbid to switch focus between labels | Denis Gorodnichev | 1 | -0/+1 | |
2014-05-19 | Merge pull request #113 from dnk/may_be_uninitialized | Stefano Karapetsas | 1 | -3/+6 | |
gtk2: warning: cr may be uninitialized | |||||
2014-05-19 | gtk2: warning: cr may be uninitialized | Denis Gorodnichev | 1 | -3/+6 | |
2014-05-11 | MateColorSelectionDialog: Allow to use header bar with GTK 3.12 | Stefano Karapetsas | 2 | -0/+21 | |
2014-05-04 | Fix gdk_cursor_unref deprecation | Stefano Karapetsas | 2 | -0/+9 | |
2014-05-04 | libmate-desktop: Add GTK3 support to MateColorButton | Stefano Karapetsas | 6 | -59/+254 | |
2014-05-04 | libmate-desktop: Update test to use MateColorButton | Stefano Karapetsas | 1 | -7/+26 | |
2014-05-04 | libmate-desktop: Add MateColorButton dialog | Stefano Karapetsas | 7 | -1/+4347 | |
Code taken from GTK 2.24 source and renamed for MATE This will allow to use traditional color selection with GTK2 and GTK3 |