1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-12 13:44:56 +02:00
Commit Graph

49 Commits

Author SHA1 Message Date
Gildas Bazin
d93ca7c44a * modules/gui/*: compilation fixes for the new input_item_t change. 2004-03-31 22:55:48 +00:00
Carlo Calabrò
44bc88f363 String review, as promised :)
Found and fixed:
- some untranslated macros
- some acronyms which were not in capital letters
- a couple of VLC Media Player (_m_edia _p_layer, now)
- typos here and there
- dots missing in some of the long texts
- spaces before ? and :, which is correct in french but not in english :)
- NT services are now called Windows Services
2004-03-05 19:24:14 +00:00
Sam Hocevar
45adedc913 * Added "Id" svn:keywords property to all files containing "$Id:".
* Removed .cvsignore files and added proper svn:ignore properties.
2004-03-05 17:34:23 +00:00
Gildas Bazin
c87d50dd85 * ALL: changed the prototype of module_Need() to accept a "strict" boolean argument.
If "strict" is true and a module name is provided then module_Need() will only look for the specified module
If "strict" is false, then module_Need() will first look for the specified module and if it wasn't found, will continue with the other modules with the same "capability".
2004-03-03 20:39:53 +00:00
Jean-Paul Saman
5f02f2623d Updated PDA interface. 2004-02-29 22:59:59 +00:00
Jean-Paul Saman
405c632cb4 Disabled the preference menu, it is not filled in anyway. 2004-02-13 10:09:46 +00:00
Jean-Paul Saman
1204fed2ec Missed the deadline again ;-(
- Fixed the playlist_AddExt() call
- Fixed a compiler warning
2004-02-10 20:28:37 +00:00
Clément Stenac
499a384591 Options as infos were bad in several ways: it broke PLAYLIST_GO, used
much memory, and was inconsistent, especially with input_CreateThread
taking an array of options

* Revert to using array of options

* To add an item with options:
    - either use playlist_ItemNew, ItemAddOption, and then AddItem
      (useful if you don't have all your options in an array)
    - either use playlist_AddExt (use this if all your options are
      already in an array)

* To add an item without options: use playlist_Add

You can still add options after an item has been added by using either
playlist_AddOption or playlist_ItemAddOption

* Attempt to improve API and solve thread safety issues.
  - playlist_Item* functions allow to touch items only.
    p_item->lock must be used when needed
    (playlist_ItemNew, playlist_ItemDelete, playlist_Item*Info,
     playlist_ItemSet* )

  - playlist_ItemGetById and ItemGetByPos give you playlist_items
    for GetByPos, you should have the playlist lock

At the moment, the playlist_Set* and playlist_*Info functions are kept (they work with position) but should be avoided.
2004-01-29 17:51:08 +00:00
Gildas Bazin
b5c5386544 * ALL: removed a bunch of unused add_category_hint(). 2004-01-25 18:53:07 +00:00
Felix Paul Kühne
c14327c1ed * string review 2004-01-25 14:15:21 +00:00
Clément Stenac
85c7ea2e8e * ALL: playlist API changes
What may be broken (untested):
------------------------------
   - Theora and Speex decoders
   - some interfaces
   - VCDX and CDDAX access

The problems shouldn't hopefully excess compilation glitches.
(removal of AddExt, of psz_author, and prototype of Add)

Additionnaly, interfaces that do not support item-change will have
update problems.

* Updated modules list
2004-01-05 13:07:03 +00:00
Sam Hocevar
5ca0ebcca2 * Coding style cleanup: removed tabs and trailing spaces. 2003-12-22 14:32:57 +00:00
Sam Hocevar
4219568532 * toolbox:
+ Added pda.glade to the list of Glade2 generated files.
    + Remove strings such as "http://" or "/dev/video0" from the list of
      translated strings in the PDA interface.
  * Fixed grammar, spelling, a few pathetic inconsistencies, removed trailing
    whitespaces and tabulations here and there.
2003-12-22 02:24:53 +00:00
Jean-Paul Saman
43e9ac1b12 PDA Interface:
- some cleanup
- reinstated automatic lowering of interface when play button was pressed.
- double click in playlist window play selected items.
2003-12-07 18:58:38 +00:00
Jean-Paul Saman
dd92e7ef15 Removing last files of previous Familiar interface. Porting to Gtk+2 widget set of this interface is now finished. Policing and improving remains. 2003-12-06 22:58:58 +00:00
Jean-Paul Saman
0c6e14df54 PDA Interface:
- Fixed last segmentation fault.
- Slider and time progress updating.

This makes the new PDA interface almost complete. It misses the following items still:
- preference panel
- changing postion in stream with slider widget.

The missing items above will move to the next release of VLC. Now testing and package building for iPAQ will begin. I expect to have a package at the end of the week.
2003-12-06 22:41:40 +00:00
Gildas Bazin
c3638c4d87 * modules/gui/*: use MSTRTIME_MAX_SIZE instead of OFFSETTOTIME_MAX_SIZE. 2003-12-04 10:25:47 +00:00
Jean-Paul Saman
e5304bfd52 Syncing with current CVS. 2003-12-03 20:47:06 +00:00
Jean-Paul Saman
9ac4974df9 PDA Interface:
- Coding Style
- Added SAP/SLP to transcode tabpage
- Reworking transcoding options for playlist
2003-11-30 23:19:13 +00:00
Jean-Paul Saman
fb1651c676 PDA Interface:
- Fixed resource leak with playlists
- VLC coding style cleanup
- Rework v4l and stream out interface code to use  VLC playlists as it should be used.
- Remove dead wood
2003-11-30 21:21:20 +00:00
Jean-Paul Saman
d96dc743e7 PDA Interface:
- Removing obsolete files.
- Remove debug messages.
2003-11-30 11:22:29 +00:00
Jean-Paul Saman
4f29f4f857 PDA Interface:
- Updating, removing and clearing playlist works.
2003-11-30 10:26:19 +00:00
Jean-Paul Saman
92bbd4ea05 PDA Interface:
- Fixed a p_playlist refcount problem
- Clearing VLC playlist and Playlist widget.
2003-11-25 20:41:35 +00:00
Jean-Paul Saman
66a7953074 PDA Interface:
- Fix segfault when adding one file to the playlist widget from the fileview widget.
- Cleanup of code.
2003-11-25 20:01:08 +00:00
Jean-Paul Saman
9b889a6a3d PDA Interface:
- Code cleanup and fixes for file view widget.
2003-11-21 09:23:49 +00:00
Jean-Paul Saman
7d5b21c45a PDA Interface:
- Cleanup code
- Cleanup interface
- Adding items to playlist widgets from File, Camera, Transcode tabs.
2003-11-18 20:36:40 +00:00
Jean-Paul Saman
a4c1c8f526 PDA Interface:
* Transcode tabpage added
* code cleanup
2003-11-09 21:29:52 +00:00
Jean-Paul Saman
c6d07829b0 PDA Interface:
* Camera tabpage is done.
2003-11-09 19:49:48 +00:00
Jean-Paul Saman
06b4737cfb PDA interface:
* improvements on Camera tabpage
2003-11-09 18:52:29 +00:00
Jean-Paul Saman
21c8b34b86 PDA Interface:
* More changes on the Camera tabpage
* Cleanup some dead interface wood ;-)
2003-11-09 15:55:23 +00:00
Jean-Paul Saman
6289ccbb12 PDA inteface:
* Redesigned "Camera" tabpage.
2003-11-09 13:59:21 +00:00
Jean-Paul Saman
28521d8e02 PDA Interface
* simplefied network tabpage
2003-11-08 18:31:01 +00:00
Jean-Paul Saman
78da8d7d6d PDA interface:
* Network tabpage works
* cleanup of code
2003-11-08 16:04:05 +00:00
Jean-Paul Saman
1fa786db6a PDA interface:
* cleanup code
* cleanup interface
2003-11-07 14:15:23 +00:00
Jean-Paul Saman
4343919e55 PDA interface:
* Directory browsing works
* Coredump is solved
* Adding files or entire directories to the playlist GUI control works.
2003-11-07 13:01:51 +00:00
Jean-Paul Saman
8da122f0f1 Basic functionality of File tabpage is working. 2003-11-07 09:24:58 +00:00
Jean-Paul Saman
40693f9830 Removing GPE specific stuff. 2003-11-07 07:59:00 +00:00
Jean-Paul Saman
52b25baa6b PDA interface update:
* File tab is beginning to work
* Adding file to Playlist begins to work

Note: not very usefull yet.
2003-10-27 22:42:02 +00:00
Jean-Paul Saman
d434d7a9e5 Some fixes for file listing and playlist. Do not use this interface yet, it is not useable now. 2003-10-03 18:04:58 +00:00
Jean-Paul Saman
2f72e38f4f Implementing new PDA User Interface design using the GTK2 widget set. This interface is currently in a rewrite and is currently unuseable. However:
- it compiles ;-)
- will have more UI assets to tweak with, then the old interface had
  to name a few: supports stream out, camera's through v4l, use preferences,
  manage playlists, play audio/video local and from a network source
- is not functional (yet)

So expect more functionality to come in and the necessary bug fixes.
2003-10-01 20:58:45 +00:00
Jean-Paul Saman
1cad065817 Updated design of PDA GUI. 2003-09-26 13:32:42 +00:00
Jean-Paul Saman
3cb2e73e33 More modifications to layout of PDA interface. 2003-09-11 11:50:43 +00:00
Jean-Paul Saman
3bb0b134a2 Updating a new PDA interface design. 2003-08-27 11:04:37 +00:00
Jean-Paul Saman
fcdf60549f Added glade2 project file. 2003-08-05 11:52:42 +00:00
Sam Hocevar
8ddf2757b7 * Added and fixed .cvsignore files. 2003-07-31 12:08:58 +00:00
Jean-Paul Saman
673e5d9eec Updating design of PDA Gtk2 interface 2003-07-30 12:21:05 +00:00
Jean-Paul Saman
f661da8197 Updating design of PDA Gtk2 interface. 2003-07-30 12:20:49 +00:00
Jean-Paul Saman
802b24bcbf Gtk2 port of the familiar Linux interface. The name is also changed to PDA so it reflects that it is targeted at handhelds.
The familiar interface itself is deprecreated and will be removed after the next stable version of VLC Media Player.
2003-07-27 21:35:51 +00:00
Jean-Paul Saman
7f661cb300 Interface for Familiar v0.7 and GPE. This interface is based on gtk2 libaries. 2003-07-23 22:02:56 +00:00