| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| |
| |
| |
| |
| | |
The 'Position' key in a profile section has precedence over the global 'Position' key, but otherwise the same semantics.
We need this along with lp:~larsu/unity8/per-profile-indicator-positions to enable different positioning on the desktop and phone.
Approved by PS Jenkins bot, Charles Kerr.
|
| |
| |
| |
| |
| |
| | |
The 'Position' key in a profile section has precedence over the global
'Position' key, but otherwise the same semantics.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
They used to be created lazily when the root menu item changed to include and
image or a label. However, there is no way to notify a panel that this
happened.
Panels connect to notify signals on these widgets when an entry gets added. If
the widgets don't exist from the very beginning, the panel won't update when
they change.
|
|/ |
|
| |
|
|
|
|
|
|
|
| |
An attribute for the root menu action may contain an action name. If it exists,
the action is activated whenever the middle mouse button is pressed on the
indicator.
|
|
|
|
|
|
|
| |
An attribute that can be set on the root menu item. If it exists, it must point
to an action that is activatable with a int32 parameter. It is activated on
scroll events. The parameter signifies magnitude and direction of the scroll.
|
|
|
|
|
|
| |
Only implemented in IndicatorNg right now, which gets that information from the
indicator file.
|
|
|
|
| |
parsed as '(u)' rather than 'u'
|
|
|
|
| |
set_accessible. Previously these were only called if the respective fields weren't NULL, which made it impossible to, for example, turn off a label or icon once it had been set.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The old file format had some shortcomings:
(1) It was impossible to efficiently reuse a menu for different profiles,
because the profile name was implicit in the object path. The only way to do
this was to export the same menu twice. Now, object paths have to be set
explicitly in the indicator file.
(2) The well-known dbus name of a service and the name of its service file were
similar but slightly different (com.canonical.indicator.test vs
com.canonical.test.indicator), which caused some confusion on when to use
which. Now, the file name *is* the bus name, and the `BusName` key has been
dropped.
The new file format is documented in README.
|
|
|
|
|
| |
This makes the flow a bit more apparent. Also gets rid of a goto.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
* debian/control:
- Bump GLib to 2.37.
* configure.ac:
- Bump GLib to 2.37.
* libindicator/indicator-image-helper.c:
- Support display of GBytesIcons.
* libindicator/indicator-ng.c:
- Change action state icon type to GVariant.
|
|
|
|
|
|
|
|
|
| |
Hopefully, this is more straightforward to use than (sssb). It's also
extensible.
(sssb) is still supported for backwards compatibility, but I wouldn't recommend
using it anymore.
|
| |
|
|
|
|
|
|
|
|
|
| |
Hopefully, this is more straightforward to use than (sssb). It's also
extensible.
(sssb) is still supported for backwards compatibility, but I wouldn't recommend
using it anymore.
|
| |
|
| |
|
|
|
|
|
|
|
| |
This uses a (slightly) awkward heuristic: when the well-known name vanishes
from the session bus, it only restarts the service when it didn't explicitly
hide the indicator before.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
gtk_icon_set_from_gicon doesn't scale rectangular icons correctly.
This adds indicator_image_helper_update_from_gicon() and makes refresh_image()
set a broken image instead of erroring out when an icon couldn't be found.
|
|
|
|
|
| |
Most indicators only need one of those.
|
| |
|
|
|
|
|
| |
If it returns false, we'd use uninitialized memory.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
We needed the entry anyway (that's what indicator_ng_get_entry was for).
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
IndicatorNg is an indicator object that reads an indicator service file and
watches the bus for a corresponding service to appear. It turns the menus and
actions exported by the service into an indicator entry.
|