- 05 Jan, 2021 1 commit
-
-
Matthias Clasen authored
Label the entry in the assistant demo.
-
- 04 Jan, 2021 1 commit
-
-
Matthias Clasen authored
The demo is called 'Video', so we should actually use a GtkVideo widget. Doing things this way has the advantage that we get GL support, which wasn't working with GtkPicture.
-
- 03 Jan, 2021 1 commit
-
-
Timm Bäder authored
-
- 29 Dec, 2020 1 commit
-
-
xndcn authored
According to OpenGL spec, a shader object will only be flagged for deletion unless it has been detached; when a program object is deleted, those shader objects attached to it will be detached but not deleted unless they have already been flagged for deletion. So we shall detach a shader object before it is deleted, and delete it before the program object is deleted best.
-
- 25 Dec, 2020 1 commit
-
-
Emmanuel Gil Peyrot authored
Same issue as the previous commit, int+float is error, and pow() only works on floats.
-
- 24 Dec, 2020 1 commit
-
-
Benjamin Otte authored
1. That's a bad idea UI wise as you can't see the search after you scrolled. 2. That's a bad idea code-wise because Listviews need to be put into a ScrolledWindow or they won't scroll.
-
- 15 Dec, 2020 2 commits
-
-
Matthias Clasen authored
Update this document to mention all the render nodes we have, and the default values for their properties.
-
Emmanuele Bassi authored
-
- 09 Dec, 2020 2 commits
-
-
Matthias Clasen authored
The empty video on the frontpage is a bit of a letdown, since the big arrow can't be clicked.
-
Matthias Clasen authored
When these are installed (in particular, as flatpaks), we should not hide them. Fixes: #2932
-
- 08 Dec, 2020 1 commit
-
-
Sophie Herold authored
-
- 07 Dec, 2020 2 commits
-
-
Jonas Ådahl authored
This commit changes the behavior of window size computation and the default size properties to: * The default-width and default-height properties are updated to the current window size unless the size is fixed by e.g. being maxmized, tiled etc. * The compute-size semantics are to just pick the default size, or if not adequate, use the measured size, and consequently update the default size, unless unresizable. * gtk_window_get_size() is removed, what's more likely relevant is the gtk_window_get_default_size() which will now contain more sensible values. Various places that used gtk_window_get_size() were updated to use gtk_window_get_default_size() to remember and restore previous sizes. This also changes the default value of 'default-width' and 'default-height' from -1 to 0. The gtk builder simplify tool is taught how to omit when the default size is set to both -1 and 0.
-
Jonas Ådahl authored
This makes it more explicit that managers of popovers make it "present".
-
- 04 Dec, 2020 4 commits
-
-
Matthias Clasen authored
-
Matthias Clasen authored
-
Matthias Clasen authored
-
Matthias Clasen authored
The file chooser button is gone.
-
- 03 Dec, 2020 3 commits
-
-
Christian Hergert authored
On the macOS OpenGL implementation, the use of noise2 as a function within the glsl shader collides with the builtin noise2 of a different signature. This changes the name to something similar (noize2) so that we do not risk colliding names when linking. With this commit, the shadertoy alienplanet demo works on mac OpenGL (albeit still with the Cairo renderer).
-
Benjamin Otte authored
... as discussed in the meeting.
-
Matthias Clasen authored
Easter eggs are great, but search shouldn't be one.
-
- 23 Nov, 2020 3 commits
-
-
Matthias Clasen authored
We are about to do a stable release. Time to get used again to plain old, boring header bars.
-
nana-4 authored
So the sidebar can get the proper background and border colors.
-
nana-4 authored
So the sidebar can get the proper background and border colors.
-
- 20 Nov, 2020 1 commit
-
-
Matthias Clasen authored
Show various ways to influence spacing. This is more or less modeled on the way Androids constraint layout lets you set up 'chains'.
-
- 19 Nov, 2020 2 commits
-
-
Emmanuele Bassi authored
The fishbowl widget is purely presentational, and its children should not be visible in the accessibility tree.
-
Emmanuele Bassi authored
It has no accessible content, even if it displays widgets.
-
- 18 Nov, 2020 5 commits
-
-
Matthias Clasen authored
This is just to make it easier for myself to find the right sources.
-
Matthias Clasen authored
Add GtkShortcutController as a keyword to some demos that show its use.
-
Matthias Clasen authored
We were not making the button sensitive in the case of a constant constraint, and we were not properly creating constant constraints either.
-
Matthias Clasen authored
g_file_replace_contents take a gsize, so passing -1 for string length does not work here.
-
Matthias Clasen authored
No need to go for ALGOL60 style operators when we have Unicode.
-
- 17 Nov, 2020 4 commits
-
-
Christian Hergert authored
The length parameter for g_file_replace_contents() is a gsize, so -1 is unsuitable here. Just use strlen() directly.
-
Matthias Clasen authored
This was left behind when 36140720 removed the unused popover that this size group applied to.
-
Alexander Mikhaylenko authored
It's lowercase.
-
Matthias Clasen authored
Using GtkCssSection in public headers here may be ok from the C perspective, since it all ends up in the same library anyway. But it causes circular dependency problems for our gir files that are still split by namespace. To avoid this problem, copy the GtkCssLocation struct struct as GskParseLocation, and pass take two of them instead of a GtkCssSection in the error callback. Update all users. Fixes: #2454
-
- 16 Nov, 2020 2 commits
-
-
Matthias Clasen authored
We are no longer using the hand-rolled variant of that popover on page 3, so drop it from the ui file.
-
Matthias Clasen authored
The Characters demo was leaking its columns.
-
- 12 Nov, 2020 2 commits
-
-
Emmanuele Bassi authored
The search entry changes the content of the list view, so we should mention that relation to assistive technologies.
-
Emmanuele Bassi authored
-
- 11 Nov, 2020 1 commit
-
-
Matthias Clasen authored
Add a possible replacement for GtkEntryCompletion as a demo. Move the Dropdowns demo to Lists/Selections, and make it show both GtkDropDown and the suggestion entry, with some variations.
-