Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | No error for deprecations | Ted Gould | 2013-12-18 | 1 | -1/+2 |
| | |||||
* | IdoScaleMenuItem: allow changing value with left/right and +/- keys | Lars Uebernickel | 2013-11-28 | 1 | -2/+72 |
|\ | |||||
| * | Also allow using + and - keys to change the slider | Lars Uebernickel | 2013-10-24 | 1 | -0/+4 |
| | | |||||
| * | IdoScaleMenuItem: intercept left and right keys | Lars Uebernickel | 2013-10-21 | 1 | -0/+78 |
| | | |||||
* | | idoactionhelper: remove potentially stray idle source when finalizing | Lars Uebernickel | 2013-11-27 | 1 | -1/+6 |
| | | |||||
* | | ido_calendar_menu_item_new_from_model: initialize local variables with NULL | Lars Uebernickel | 2013-11-26 | 1 | -2/+2 |
| | | | | | | | | | | | | Both of these variables will be passed to g_free() without checking whether g_menu_item_get_attribute() failed. | ||||
* | | ido_user_menu_item: remove superfluous unref | Lars Uebernickel | 2013-11-06 | 1 | -1/+0 |
| | | | | | | | | | | The return value of g_file_icon_get_file() is transer-none. | ||||
* | | idoscalemenuitem: disconnect signal from parent | Lars Uebernickel | 2013-10-31 | 1 | -20/+13 |
| | | | | | | | | | | | | | | | | | | This fixes a crash: the widget installed a handler for the parent's hide signal, but was destroyed before the parent without disconnecting the signal. This patch also moves the connection into GktWidget.parent_set instead of connecting to the notify signal. | ||||
* | | IdoUserMenuItem: only allow file icons as avatars | Lars Uebernickel | 2013-10-28 | 1 | -105/+55 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | In practice, all avatars are file icons. This restriction allowed for quite some cleanup, as we don't need to worry about symbolic icons and themes aymore. Note: this patch removes the warning when the user avatar image was not found. This is a common enough case that the warning just clutters up logs. Approved by Charles Kerr, PS Jenkins bot. | ||||
| * | | ido_user_menu_item_set_icon_from_file_icon: don't initialize width and height | Lars Uebernickel | 2013-10-28 | 1 | -2/+3 |
| | | | |||||
| * | | ido_user_menu_item_set_icon_from_file_icon: free file | Lars Uebernickel | 2013-10-28 | 1 | -0/+1 |
| | | | |||||
| * | | Don't export ido_user_menu_item_set_icon_from_file_icon() | Lars Uebernickel | 2013-10-27 | 1 | -1/+1 |
| | | | |||||
| * | | IdoUserMenuItem: only allow file icons as avatars | Lars Uebernickel | 2013-10-26 | 1 | -105/+53 |
| |/ | | | | | | | | | | | | | | | | | In practice, all avatars are file icons. This restriction allowed for quite some cleanup, as we don't need to worry about symbolic icons and themes aymore. Note: this patch removes the warning when the user avatar image was not found. This is a common enough case that the warning just clutters up logs. | ||||
* | | Unref serialized_icon | Lars Uebernickel | 2013-10-22 | 1 | -0/+2 |
| | | |||||
* | | Don't call gtk_image_clear() on a NULL widget | Lars Uebernickel | 2013-10-22 | 1 | -1/+1 |
| | | |||||
* | | Make IdoSwitchMenuItem accessible from gtk_menu_new_from_model | Lars Uebernickel | 2013-10-22 | 3 | -0/+68 |
| | | |||||
* | | IdoSwitchMenuItem: deprecate get_content_area and add set_{label,icon} | Lars Uebernickel | 2013-10-22 | 2 | -1/+84 |
|/ | |||||
* | idoscalemenuitem: request a minimum width of 200px | Lars Uebernickel | 2013-10-10 | 1 | -0/+2 |
| | | | | | Same as IdoPlaybackMenuItem. | ||||
* | idousermenuitem: center user avatars and adjust spacing | Lars Uebernickel | 2013-09-30 | 1 | -3/+2 |
| | |||||
* | idoscalemenuitem: don't update the action state when the action state changes | Lars Uebernickel | 2013-09-25 | 1 | -9/+59 |
| | | | | | | | | | | | | | GtkRange has the same weird semantics for its "value-changed" signal that the check menu items have: it is emitted not only on user interaction, but also when gtk_range_set_value() is called. The handler to "value-changed" updates the action. gtk_range_set_value() is called when the action notifies about a state change. Loop, meet loop. This patch works around that by adding a "value-changed" to IdoScaleMenuItem that is only emitted when the user changes the slider's value. | ||||
* | Revert slider movement when scrolling by default | Lars Uebernickel | 2013-09-15 | 1 | -1/+4 |
| | |||||
* | Library functions taking GVariant params need to ref_sink() and unref() ↵ | Ted Gould | 2013-08-13 | 1 | -0/+4 |
| | | | | always. (reason #24 to not like GVariant) | ||||
* | Add IdoSourceMenuItem | Lars Uebernickel | 2013-08-13 | 8 | -2/+793 |
| | | | | | A menu item showing messaging menu sources. | ||||
* | Add IdoApplicationMenuItem | Lars Uebernickel | 2013-08-13 | 4 | -2/+239 |
| | | | | | | A menu item representing an application. It can show whether the application is running or not (based on action state). | ||||
* | implement IdoLocationMenuItem as a subclass of IdoTimeStampMenuItem | Charles Kerr | 2013-07-25 | 3 | -91/+34 |
| | |||||
* | add support for com.canonical.indicator.alarm menuitems. | Charles Kerr | 2013-07-25 | 4 | -0/+156 |
| | |||||
* | implement IdoAppointmentMenuItem as a specialization of IdoTimeStampMenuItem | Charles Kerr | 2013-07-25 | 2 | -327/+16 |
| | |||||
* | add IdoTimeStampMenuItem, a base class for appointments, locations, and alarms | Charles Kerr | 2013-07-25 | 2 | -0/+325 |
| | |||||
* | subclass IdoAppointmentMenuItem from IdoBasicMenuItem | Charles Kerr | 2013-07-25 | 2 | -69/+9 |
| | |||||
* | add a 6px margin between the icon and primary text iff the icon is visible | Charles Kerr | 2013-07-25 | 1 | -0/+6 |
| | |||||
* | subclass IdoLocationMenuItem from IdoBasicMenuItem | Charles Kerr | 2013-07-25 | 2 | -85/+12 |
| | |||||
* | add make the type macro for IdoBasicMenuItem follow the standard naming scheme | Charles Kerr | 2013-07-25 | 2 | -6/+6 |
| | |||||
* | don't hardcode making com.canonical.indicator.progress insensitive; its ↵ | Charles Kerr | 2013-07-24 | 1 | -8/+1 |
| | | | | sensitivity should follow its action's sensitivity. | ||||
* | add a menuitem that renders com.canonical.indicator.progress as laid out in ↵ | Charles Kerr | 2013-07-24 | 4 | -0/+475 |
| | | | | https://wiki.ubuntu.com/Power#Phone | ||||
* | Fix broken comments for the introspection scanner. | Ted Gould | 2013-07-03 | 4 | -4/+4 |
|\ | | | | | | | Approved by Charles Kerr, PS Jenkins bot. | ||||
| * | Fixing some small introspection errors | Ted Gould | 2013-07-02 | 4 | -4/+4 |
| | | |||||
* | | fix IdoLocationMenuItem label alignment issue reported by ted. | Charles Kerr | 2013-07-02 | 1 | -6/+19 |
|\ \ | |/ |/| | | | Approved by PS Jenkins bot, Ted Gould. | ||||
| * | in idolocationmenuitem, fix slight alignment issue in the city label | Charles Kerr | 2013-07-02 | 1 | -6/+19 |
| | | |||||
* | | in ido_user_menu_item_set_icon(), remove a g_warning iff icon is NULL | Charles Kerr | 2013-07-01 | 1 | -1/+2 |
| | | |||||
* | | don't load the icon twice | Charles Kerr | 2013-07-01 | 1 | -54/+107 |
| | | |||||
* | | if a user's avatar icon file doesn't exist or isn't readable, fall back to ↵ | Charles Kerr | 2013-07-01 | 1 | -1/+49 |
|/ | | | | the default avatar | ||||
* | fix a copy-paste bug in the last commit's GuestMenuItem code | Charles Kerr | 2013-06-27 | 1 | -1/+1 |
| | |||||
* | silence console warnings when a NULL filename is passed into ↵ | Charles Kerr | 2013-06-23 | 1 | -2/+2 |
| | | | | ido_user_menu_item_set_icon_from_filename() | ||||
* | add ido_guest_menu_item_new_for_model() | Charles Kerr | 2013-06-23 | 3 | -60/+128 |
| | |||||
* | add an 'icon' property to idousermenuitem | Charles Kerr | 2013-06-23 | 2 | -64/+76 |
|\ | |||||
| * | add missing G_BEGIN_DECLS call | Charles Kerr | 2012-11-06 | 1 | -0/+2 |
| | | |||||
* | | ido_playback_menu_item_parent_key_press_event: be more explicit | Lars Uebernickel | 2013-06-19 | 1 | -1/+1 |
| | | |||||
* | | idoplaybackmenuitem: remove redundant 'else' | Lars Uebernickel | 2013-06-19 | 1 | -2/+4 |
| | | |||||
* | | idoplaybackmenuitem: warn before crashing in g_str_equal | Lars Uebernickel | 2013-06-19 | 1 | -0/+4 |
| | | |||||
* | | ido_playback_menu_item_get_button_at_pos: add ascii blueprint | Lars Uebernickel | 2013-06-19 | 1 | -0/+8 |
| | |