summaryrefslogtreecommitdiff
path: root/libmetacity
Commit message (Collapse)AuthorAgeFilesLines
* libmetacity: avoid implicit conversion warningsAlberts Muktupāvels2018-03-111-4/+4
| | | | | warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion]
* libmetacity: set a clip region for titleAlberts Muktupāvels2017-07-211-0/+11
|
* libmetacity: add space between buttons and titleAlberts Muktupāvels2017-07-201-6/+2
|
* libmetacity: properly calculate available space for buttonsAlberts Muktupāvels2017-07-202-5/+11
|
* libmetacity: fix copy/paste errorsAlberts Muktupāvels2017-07-182-4/+4
|
* libmetacity: remove unused includeAlberts Muktupāvels2017-04-111-1/+0
|
* libmetacity: don't use MetaFrameStyleSet with GTK+ themeAlberts Muktupāvels2017-04-115-274/+224
|
* libmetacity: add meta_theme_set_dpiAlberts Muktupāvels2017-04-022-1/+20
|
* libmetacity: add meta_theme_set_scaleAlberts Muktupāvels2017-04-023-24/+41
|
* libmetacity: track gtk-xft-* settingsAlberts Muktupāvels2017-04-021-12/+97
|
* libmetacity: add meta_theme_impl_set_scaleAlberts Muktupāvels2017-04-022-0/+15
|
* libmetacity: fix copy/paste errorAlberts Muktupāvels2017-04-021-1/+1
|
* libmetacity: add meta_style_info_set_scaleAlberts Muktupāvels2017-04-022-12/+31
|
* libmetacity: do not reload CSS changing composited statusAlberts Muktupāvels2017-03-043-9/+60
|
* libmetacity: fix memory leakAlberts Muktupāvels2017-03-041-0/+3
|
* libmetacity: fix gradients with one alpha valueAlberts Muktupāvels2017-02-251-4/+13
| | | | | | Commit 71d5decc42f3367bcbe2c4656356edd0f94d9feb ported gradient code from GdkPixbuf to cairo. Ported coded wrongly assumed that alpha values always match color stops.
* libmetacity: use POS_EXPR_INT for POS_TOKEN_VARIABLEAlberts Muktupāvels2017-02-053-2/+13
| | | | | | | | | | Commit 90f64f2ba50413c3fd20a7049162736e2eb98811 changed POS_TOKEN_VARIABLE type from POS_EXPR_INT to POS_EXPR_DOUBLE. Unfortunately this breaks existing themes. Use POS_EXPR_DOUBLE only on HiDPI screens (scale > 1) to restore previous behaviour. https://bugzilla.gnome.org/show_bug.cgi?id=778209
* libmetacity: add missing break statementAlberts Muktupāvels2017-02-051-0/+1
|
* Fix translator commentsPiotr Drąg2017-01-282-8/+8
| | | | They need to be exactly one line above a string to show up in .po files.
* libmetacity: add meta_theme_impl_get_scaleAlberts Muktupāvels2016-11-285-30/+37
|
* libmetacity: add scale to MetaDrawInfoAlberts Muktupāvels2016-11-283-8/+11
|
* libmetacity: fix inverted button layoutAlberts Muktupāvels2016-10-161-5/+7
|
* libmetacity: switch from .ssd to .csdAlberts Muktupāvels2016-08-311-1/+1
|
* libmetacity: add meta_theme_get_buttonsAlberts Muktupāvels2016-08-182-0/+60
|
* libmetacity: don't expose button layout functionsAlberts Muktupāvels2016-08-181-0/+2
|
* libmetacity: don't expose MetaButton structAlberts Muktupāvels2016-08-187-30/+68
|
* use structured loggingAlberts Muktupāvels2016-08-181-0/+1
|
* libmetacity: redo button layout codeAlberts Muktupāvels2016-08-1811-984/+875
|
* libmetacity: move all button releated info to MetaButtonLayoutAlberts Muktupāvels2016-08-177-75/+92
|
* libmetacity: don't expose MetaButtonLayoutAlberts Muktupāvels2016-08-178-21/+23
|
* libmetacity: rename MetaButtonFunction to MetaButtonTypeAlberts Muktupāvels2016-08-1716-499/+416
| | | | | | Name `function` is used inside Metacity theme. Rename existing MetaButtonType to MetaButtonFunction and MetaButtonFunction to MetaButtonType.
* libmetacity: use callback function to get button stateAlberts Muktupāvels2016-08-165-71/+100
|
* libmetacity: don't expose MetaButtonTypeAlberts Muktupāvels2016-08-1611-263/+315
|
* libmetacity: add meta_theme_set_button_layoutAlberts Muktupāvels2016-08-162-13/+27
|
* libmetacity: redo image scalingAlberts Muktupāvels2016-08-071-32/+81
|
* libmetacity: rename scale_surface to get_surface_from_pixbufAlberts Muktupāvels2016-08-071-20/+20
|
* libmetacity: improve image scalingAlberts Muktupāvels2016-07-141-30/+31
|
* libmetacity: use fmod with doublesAlberts Muktupāvels2016-07-121-4/+9
|
* libmetacity: fix copy/paste bugAlberts Muktupāvels2016-07-121-45/+45
|
* libmetacity: replace ints with doubles in few placesAlberts Muktupāvels2016-07-0910-125/+168
| | | | | | | | | When we draw decorations we scale down client width and height. This causes problem when client width or height is odd number - decorations is not drawn in full size. Replace ints with doubles to make sure that cairo scales decorations to correct size. Improves HiDPI support.
* libmetacity: use cairo to scale imagesAlberts Muktupāvels2016-07-081-236/+76
|
* libmetacity: use cairo to apply alphaAlberts Muktupāvels2016-07-076-357/+111
|
* libmetacity: merge needs_alpha into apply_alphaAlberts Muktupāvels2016-07-072-10/+1
|
* libmetacity: remove unused gradient functionsAlberts Muktupāvels2016-07-072-698/+0
|
* libmetacity: use cairo to draw tintAlberts Muktupāvels2016-07-073-68/+53
|
* libmetacity: fix gradientsAlberts Muktupāvels2016-07-071-3/+9
|
* libmetacity: fix 'use cairo to render gradient' commitAlberts Muktupāvels2016-07-071-2/+2
|
* libmetacity: use cairo to render gradientAlberts Muktupāvels2016-07-073-52/+83
|
* libmetacity: remove bogus commentJasper St. Pierre2016-07-071-11/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=662962
* libmetacity: consolidate unused opsJasper St. Pierre2016-07-071-21/+7
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=662962