Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-06-19 | emulate VLC_PLUGIN_PATH support for libvlc < 2.0.0 | Robin Haberkorn | 1 | -1/+31 | |
2012-06-17 | use more glib macros to improve portability | Robin Haberkorn | 1 | -8/+8 | |
2012-06-07 | cleaned up success/failure return value confusion | Robin Haberkorn | 1 | -6/+6 | |
TRUE means successful, FALSE unsuccessful | |||||
2012-06-07 | minor comment formatting change | Robin Haberkorn | 1 | -0/+1 | |
2012-06-07 | added copyright headers and Doxygen @file comments (where they were still ↵ | Robin Haberkorn | 1 | -0/+17 | |
missing) | |||||
2012-05-30 | fixed adjustment handling in gtk-vlc-player | Robin Haberkorn | 1 | -10/+86 | |
* reconfigure on set_adjustment() * disconnect signal handlers on dispose() | |||||
2012-05-13 | updated gtk-vlc-player documentation and check object attributes | Robin Haberkorn | 1 | -53/+83 | |
methods may be invoked after instance disposal, so object attributes may already be unreferenced | |||||
2012-05-13 | documented public API of GtkVlcPlayer widget | Robin Haberkorn | 1 | -0/+132 | |
2012-05-12 | use proper CClosure marshallers for vlc-player and experiment-navigator signals | Robin Haberkorn | 1 | -5/+5 | |
the ...VOID__LONG standard marshaller used worked for INT64 but this wasn't guaranteed (size of LONG is platform-dependant) * now, required marshallers are generated if they don't already exist in gobject, if they do, only an alias is defined * every widget has its own marshaller namespace * exclude marshallers from Doxygen docs | |||||
2012-05-12 | add some @bug and @todo infos | Robin Haberkorn | 1 | -1/+7 | |
2012-05-12 | make private gtk-vlc-player attributes private (well sort of...) and fix ↵ | Robin Haberkorn | 1 | -99/+162 | |
object destruction (dispose, finalize) * private attributes allow us to remove the vlc.h dependency from the class header (users of the header/widget might not have the header or correct flags to include it) * destruction using _dispose() and _finalize() handlers: vlc references are finalized, while Gtk objects are disposed * in order for reference counting on the GtkObjects to work, their reference counter must be explicitly initialized (side effect of g_object_ref_sink()) * don't use deprecated gtk_object_ref/unref() functions | |||||
2012-05-11 | partially fixed 824dfc05c9af2dfb4299191b7e18e79a540bb2b5: must show ↵ | Robin Haberkorn | 1 | -2/+3 | |
fullscreen window before reparenting into it commit was made under Windows where fullscreen doesn't work anyway | |||||
2012-05-11 | improved fullscreen mode support and cleaned up widget displaying | Robin Haberkorn | 1 | -6/+6 | |
2012-05-09 | use only filenames instead of URIs when working with the VLC player | Robin Haberkorn | 1 | -16/+35 | |
* under windows, "C:\..." paths are constructed for the quickopen-menu, they are not accepted by libvlc_media_new_location() * support both loading filenames and URIs | |||||
2012-05-07 | fixed vlc player widget's _set_adjustment functions | Robin Haberkorn | 1 | -0/+14 | |
care about disconnecting and reconnecting signal handlers | |||||
2012-05-07 | support for setting volume in vlc player widget | Robin Haberkorn | 1 | -0/+33 | |
API function and volume adjustment * attached volume button with player widget | |||||
2012-05-06 | adjustment support for the gtk-vlc-player plugin | Robin Haberkorn | 1 | -23/+66 | |
gtk-vlc-player may be connected to scale widgets (and later on the transcript widget) using GtkAdjustments * the main program has been updated accordingly * the main program also updates the "play" button now | |||||
2012-05-05 | remove unnecessary drawing_area class attribute (gtk-vlc-player) | Robin Haberkorn | 1 | -8/+9 | |
2012-05-04 | minor fix: return media load success | Robin Haberkorn | 1 | -0/+3 | |
2012-05-04 | fixed fullscreen-mode of gtk-vlc-player | Robin Haberkorn | 1 | -23/+18 | |
it's subclassed from GtkAlignment now, so there's always a container for the GtkDrawingArea whose X-Window will be used by libvlc | |||||
2012-05-04 | some header-including cleanup | Robin Haberkorn | 1 | -2/+1 | |
2012-05-02 | preliminary player widget based on experiment-player prototype | Robin Haberkorn | 1 | -0/+272 | |