| 1 | In smplayer 0.6.2 it's possible to configure the toolbars. That means that
|
|---|
| 2 | now you can arrange the buttons and controls in the GUI the way you want.
|
|---|
| 3 |
|
|---|
| 4 | For the moment the only way to do it is by editing the configuration file
|
|---|
| 5 | (smplayer.ini). In a future version there'll be a graphical dialog for this.
|
|---|
| 6 |
|
|---|
| 7 | In this document I'll try to explain what you have to change in order to
|
|---|
| 8 | configure the toolbars the way you prefer.
|
|---|
| 9 |
|
|---|
| 10 | Open smplayer.ini (~/.smplayer/smplayer.ini in linux,
|
|---|
| 11 | C:\Documents and Settings\your_username\.smplayer\smplayer.ini in windows) in
|
|---|
| 12 | a text editor and look for these lines:
|
|---|
| 13 |
|
|---|
| 14 | [default_gui]
|
|---|
| 15 | actions\controlwidget=play, pause_and_frame_step, stop, separator, rewindbutton_action, timeslider_action, forwardbutton_action, separator, fullscreen, mute, volumeslider_action
|
|---|
| 16 | actions\controlwidget_mini=play_or_pause, stop, separator, rewind1, timeslider_action, forward1, separator, mute, volumeslider_action
|
|---|
| 17 | actions\floating_control=play, pause, stop, separator, rewindbutton_action, timeslider_action, forwardbutton_action, separator, fullscreen, mute, volumeslider_action, separator, timelabel_action
|
|---|
| 18 | actions\toolbar1=open_file, open_dvd, open_url, separator, compact, fullscreen, separator, screenshot, separator, show_file_properties, show_playlist, show_preferences, separator, play_prev, play_next
|
|---|
| 19 |
|
|---|
| 20 | As you can see this is a list of all "actions" that smplayer will display in
|
|---|
| 21 | the toolbars.
|
|---|
| 22 |
|
|---|
| 23 | actions\toolbar1 contains the list of actions in the main toolbar.
|
|---|
| 24 | actions\controlwidget contains the list of actions in the controlbar.
|
|---|
| 25 | actions\controlwidget_mini contains the list of actions in the small
|
|---|
| 26 | controlbar that replaces the normal controlbar when the window is small.
|
|---|
| 27 | And finally actions\floating_control contains the list of actions in the
|
|---|
| 28 | floating control that appears in fullscreen mode.
|
|---|
| 29 |
|
|---|
| 30 | You can remove, change the order or add new actions. The name of all available
|
|---|
| 31 | actions can be seen in the shortcut editor, in Preferences->Keyboard and mouse.
|
|---|
| 32 |
|
|---|
| 33 | Additionally you can also use the following actions:
|
|---|
| 34 |
|
|---|
| 35 | - timeslider_action : adds a time slider
|
|---|
| 36 | - volumeslider_action : adds a volume slider
|
|---|
| 37 | - timelabel_action : adds a label which shows the current playing time
|
|---|
| 38 | - rewindbutton_action : adds a button with a popup menu with all the rewind
|
|---|
| 39 | actions
|
|---|
| 40 | - forwardbutton_action : adds a button with a popup menu with all the
|
|---|
| 41 | forward actions
|
|---|
| 42 | - separator, adds a separator
|
|---|
| 43 |
|
|---|
| 44 | You can also customize the mini GUI in the same way, just look for [mini_gui]
|
|---|
| 45 | in the config file.
|
|---|
| 46 |
|
|---|
| 47 | Important note: changes in smplayer.ini always have to be done when smplayer
|
|---|
| 48 | is NOT running!
|
|---|