| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
The container destroy implementation does not quite work here,
so do our own.
|
| |
|
| |
|
| |
|
|
|
|
| |
Sad face for me.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
tracker:uri-is-descendant/parent has the unfortunate side effect of
rendering the collation mechanisms in the database useless, so those
require full table scans to be validated.
Performing these as pure string comparisons will perform much better,
as those allow the underlying sqlite to rely on its own collation
to perform the search, which can be significantly faster with many
elements in the database.
https://bugzilla.gnome.org/show_bug.cgi?id=758407
|
|
|
|
|
|
|
| |
This could produce strange warnings as it is currently passed to
tracker:uri-is-* sparql functions, as these expect no NULLs.
https://bugzilla.gnome.org/show_bug.cgi?id=758407
|
|
|
|
| |
- swipe left was missing outline conversion to allow recolorization
|
|
|
|
| |
This makes them recolor in the dark theme, which looks better.
|
|
|
|
| |
fit all images to 64x64
|
|
|
|
|
| |
- convert all objects to shapes to allow css recoloring
ala symbolic icons
|
|
|
|
| |
- rotation gestures more natural look
|
|
|
|
|
|
| |
Clarify that only parts of the font name are used.
https://bugzilla.gnome.org/show_bug.cgi?id=758367
|
|
|
|
| |
- make swipe left and right less wide
|
|
|
|
|
|
| |
- add minimal margin for safe scaling
- fixed height of 64pixels
- pixel alignment issues (grid fit)
|
|
|
|
|
|
| |
This makes it possible to switch between gesture and accelerator
types and override the builtin icons and subtitles for predefined
gestures.
|
|
|
|
|
|
|
| |
Add an enum for gestures that GtkShortcutsShortcut knows how
to show an image and subtitle for.
https://bugzilla.gnome.org/show_bug.cgi?id=758187
|
|
|
|
| |
These will be used in the shortcuts window.
|
|
|
|
|
|
|
|
|
| |
It turns out that it is nicer in glade to have just a single
widget that can show either a shortcut or a gesture, so make
GtkShortcutsShortcut do it both.
GtkShortcutsGesture is now redundant and will be removed before
the next stable release.
|
|
|
|
|
| |
We need to keep pointers to the size groups and apply
them to shortcuts that are added later.
|
|
|
|
|
|
| |
Various problems with the container implementations in
GtkShortcutsWindow, Section and Group were showing up
in glade.
|
|
|
|
|
|
|
| |
The current code in gtkshortcutswindow.c is good enough to
construct a widget once from a .ui file, but fails to handle
changes at runtime, as happen e.g. in glade. Fix this by
listening for changes to section-name and title.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Empty underlines are hard to make out. Since we get somewhat
unreliable section information from the CSS parser, we just
make sure that we always underline at least one character.
|
|
|
|
| |
Widget paths don't like NULL.
|
|
|
|
| |
The name gtk-key-bindings has been deprecated and causes warnings.
|
|
|
|
|
|
| |
This is not a standard CSS property, so rename it to
-gtk-key-bindings. We still support the old name, with a
deprecation warning.
|
|
|
|
| |
The name icon-shadow has been deprecated and causes warnings.
|
|
|
|
| |
The name icon-shadow has been deprecated and causes warnings.
|
|
|
|
|
|
| |
This is not a standard CSS property, so rename it to
-gtk-icon-shadow. We still support the old name, with a
deprecation warning.
|
|
|
|
|
| |
Emit a deprecation warning if a property is not used
by its official name.
|
|
|
|
|
| |
This will be used to rename some properties in a more
systematic way without breaking all users of the old name.
|
|
|
|
| |
This helps people fix up their css.
|
|
|
|
|
|
| |
The builder syntax for tags was invalid here (why did this not
get flagged as error ?!). While we're at it, give the warning
underline a nice, orange color.
|
|
|
|
| |
This way, we don't do weird stuff when an empty path is set.
|
|
|
|
|
|
|
| |
Imitate what we do for the type. This way we don't lose the name on
save/restore.
https://bugzilla.gnome.org/show_bug.cgi?id=758442
|
|
|
|
|
|
|
| |
Otherwise the widget path creation functions will fail. This affects
widgets still using gtk_style_context_save().
https://bugzilla.gnome.org/show_bug.cgi?id=758442
|
| |
|
|
|
|
|
| |
Now that we don't use custom CSS properties anymore, let's fail as early
as possible.
|
|
|
|
|
| |
The squiggly underline is useful, but seeing the error message
is much better, so show it in a tooltip.
|
|
|
|
|
| |
Make it possible to use gtk_container_remove on GtkShortcutsWindow.
glade needs this.
|
|
|
|
|
| |
To give glade a chance to work with GtkShortcutsWindow, the
container implementation needs to be a bit more complete.
|
|
|
|
|
|
|
|
|
| |
This makes custom CSS properties no longer configurable. But it avoids
crashes when loading custom themes, so that's a good thing.
Testcase included.
https://bugzilla.redhat.com/show_bug.cgi?id=1281234
|
| |
|
|
|
|
|
|
|
|
| |
We can't use up_panel and down_panel as differentiators for the buttons,
because these window system resources don't exist before realize().
Just use a one-off enum for this purpose.
https://bugzilla.gnome.org/show_bug.cgi?id=758094
|
|
|
|
| |
And move them into the GtkLabelSelectionInfo struct.
|
|
|
|
| |
missing #ifdef...
|
|
|
|
|
| |
Use the right state when calling gtk_style_context_get_padding,
to avoid warnings.
|