The time now is Fri 24 May 2013, 21:10
All times are UTC - 4 |
|
Page 18 of 110 [1650 Posts] |
Goto page: Previous 1, 2, 3, ..., 16, 17, 18, 19, 20, ..., 108, 109, 110 Next |
| Author |
Message |
zigbert

Joined: 29 Mar 2006 Posts: 5244 Location: Valåmoen, Norway
|
Posted: Sat 06 Jun 2009, 02:10 Post subject:
|
|
maggotspawn
Sorry, no ideas
disciple
Thanks for great feedback
I will consider all suggestions.
It might take a while, but development is steady
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7019 Location: qld
|
Posted: Sat 06 Jun 2009, 02:16 Post subject:
|
|
My 2c
I particularly like disciple's ideas #1 and #2
Cheers
PS... Pmusic-6.5 runs sweetly with progress bar, while running MU's Puppy Browser browsing the web in the Dino
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5244 Location: Valåmoen, Norway
|
Posted: Sun 07 Jun 2009, 06:04 Post subject:
|
|
_________________ Stardust resources
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5244 Location: Valåmoen, Norway
|
Posted: Sun 07 Jun 2009, 06:05 Post subject:
|
|
Alternative Frontends to pMusic
Download: (username: puppy - password: linux)
LowPowered
Disable progress slider and track info to minimize the resource hunger.
Wings
For pilots.
________________ Howto make your own window preset ________________
This info is partly outdated
Pmusic 0.7.0 introduce window presets. Pmusic can be set up more individual.
Default, Pmusic is loaded with the Default graphical theme and the Default Window preset. Pmusic shows like this only a small part of the available modules.
Let's say we wish to extend the main window with the toolbar module and the mixer module. In /usr/local/pmusic/presets/ you'll find the 'Default' file. This contains all information to build Pmusics default gui. Lets add toolbar ($GUI_TOOLBAR) and mixer ($GUI_MIXER) and save it under a new name. All new preset files in /usr/local/pmusic/presets/ will be added to the window menu and in the preferences.
| Code: | GUI="
<window title=\"Pmusic\" icon-name=\"gtk-media-stop\" default_height=\"$HEIGHT\" default_width=\"$WIDTH\">
<vbox>
$GUI_MENU
$GUI_TOOLBAR
$GUI_NAVIGATION
$GUI_PROGRESSBAR
$GUI_PLAYLIST
$GUI_MIXER
</vbox>
</window>" |
Now let's be a little bit more advanced. Playlist could be nice to have as a left wing (panel). To do this we must use a deeper level of playlist variables. While $GUI_PLAYLIST contains all info about the complete playlist module, $GUI_PLAYLIST_FIELD contains only the list. - The buttons are defined in $GUI_PLAYLIST_BUTTONS. <hbox> makes a horizontal gui, while <vbox> makes it vertical.
| Code: | GUI="
<window title=\"Pmusic\" icon-name=\"gtk-media-stop\" default_height=\"$HEIGHT\" default_width=\"$WIDTH\">
<hbox>
$GUI_PLAYLIST_FIELD
<vbox>
$GUI_MENU
$GUI_NAVIGATION
$GUI_PROGRESSBAR
$GUI_PLAYLIST_BUTTONS
$GUI_INDEX
$GUI_MIXER
</vbox>
</hbox>
</window>" |
Using the 'Nad' theme, the main window will look like this:
For even more complex gui buildings, take a look at the presets 'Manager' and 'Wings'.
If you make a really good preset, that might be good to others too, please share it here on the forum. Thank you!
The main variables are
GUI_MENU
GUI_TOOLBAR
GUI_NAVIGATION
GUI_PROGRESSBAR
GUI_PLAYLIST
GUI_PLAYLIST_MULTIPLE
GUI_INDEX
GUI_LYRICS
GUI_MIXER
GUI_FILEBROWSER
GUI_INFO
Many of these are built of other variables.
Here's the list:
| Code: | GUI_MENU="
<menubar>
$GUI_MENU_FILE
$GUI_MENU_PLAYLIST
$GUI_MENU_TOOLS
$GUI_MENU_PLAY
$GUI_MENU_WINDOW
$GUI_MENU_HELP
</menubar>"
GUI_TOOLBAR="
<hbox homogeneous=\"true\">
<vbox>
<hbox>
$GUI_BUTTON_PREFERENCES
<pixmap><input file>$APPDIR/tab10.png</input></pixmap>
$GUI_BUTTON_CD
$GUI_BUTTON_MIXER
$GUI_BUTTON_LYRICS
$GUI_BUTTON_PLAYLIST_MULTIPLE
<pixmap><input file>$APPDIR/tab10.png</input></pixmap>
$GUI_BUTTON_MUTE
<pixmap><input file>$APPDIR/tab10.png</input></pixmap>
$GUI_BUTTON_SONG_INFO
$GUI_BUTTON_UPDATE_INDEX2
$GUI_BUTTON_PRESET_MINI
</hbox>
</vbox>
</hbox>"
GUI_NAVIGATION="
<hbox homogeneous=\"true\">
<vbox>
<hbox>
$GUI_BUTTON_BACK
$GUI_BUTTON_REWIND
$GUI_BUTTON_STOP
$GUI_BUTTON_PLAY
$GUI_BUTTON_FORWARD
$GUI_BUTTON_NEXT
</hbox>
</vbox>
</hbox>"
GUI_PLAYLIST="
$GUI_PLAYLIST_FIELD
$GUI_PLAYLIST_BUTTONS"
GUI_PLAYLIST_BUTTONS="
<hbox>
$GUI_CHECKBOX_LOOP
$GUI_CHECKBOX_SHUFFLE
$GUI_BUTTON_PLAYLIST_HISTORY_BACK
$GUI_BUTTON_PLAYLIST_HISTORY_FORWARD
<text><label>\" \"</label></text>
$GUI_BUTTON_MOVE_UP
$GUI_BUTTON_MOVE_DOWN
$GUI_BUTTON_REMOVE
$GUI_BUTTON_ADD
</hbox>"
GUI_INDEX="
<frame $LOC221>
$GUI_INDEX_SEARCH
$GUI_INDEX_MODE
$GUI_INDEX_FIELD
</frame>
$GUI_INDEX_BUTTONS"
GUI_INDEX_BUTTONS="
<hbox>
$GUI_INDEX_RADIOBUTTON_AFTER_SELECTION
$GUI_INDEX_RADIOBUTTON_END
</hbox>
<hbox>
$GUI_INDEX_BUTTON_ADD_RANDOM
$GUI_INDEX_BUTTON_ADD_ALL
$GUI_BUTTON_UPDATE_INDEX
</hbox>"
GUI_MIXER="
<hbox homogeneous=\"true\">
<vbox>
<hbox>
$GUI_VOLUME
<vbox>
<pixmap><input file>$APPDIR/tab10.png</input></pixmap>
<pixmap><input file>$APPDIR/tab10.png</input></pixmap>
$GUI_BUTTON_MUTE
</vbox>
$GUI_EQUALIZER
</hbox>
</vbox>
</hbox>"
|
_________________ Stardust resources
Last edited by zigbert on Sun 17 Feb 2013, 14:37; edited 7 times in total
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5244 Location: Valåmoen, Norway
|
Posted: Sun 07 Jun 2009, 09:37 Post subject:
|
|
Version 0.7.0
See main post
Changelog
- New code structure allows flexible GUIs. New menu: Window
- 2 new more complex GUIs:
--> Manager with integrated 'add from index' and 'filebrowser'.
--> Wings for those who like most options available.
- Simple mixer module.
- Toolbar module.
- Imroved cpu-usage.
- More tooltips.
- Doubleclick in filebrowser adds song. (thanks to ecomoney)
- 'Selection' menu has joined 'Playlist' menu.
- Remember open directory from last time used. (thanks to ecomoney/disciple)
- Reload gui after preferences.
- Menuitem for managing multiple playlist.
- Updated Default and Nad theme.
- Startup splash.
- Bugfix: App killed at startup if xwininfo missed. (thanks to sketchman)
- NLS added: LOC148, 180, 181, 272, 273, 404, 405, 430, 431, 432, 433, 434, 440, 441, 513, INDEX
- NLS removed: LOC130, 263, 265, 266, 267
- NLS changed: LOC110, 132, 133, 134
_________________ Stardust resources
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7019 Location: qld
|
Posted: Sun 07 Jun 2009, 19:30 Post subject:
|
|
Wow!
Looks nice! Someone's been a busy puppy!
In the mixer I can't seem to get bass/treble to work (on fast box ) Is there any trick to it? Buttons seem greyed out. A midrange option would actually make it an equaliser...
Thanks!
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
tasmod

Joined: 04 Dec 2008 Posts: 1459 Location: North Lincolnshire. UK
|
Posted: Mon 08 Jun 2009, 04:55 Post subject:
|
|
Hmm seem to be having browser issues.
Tried to download and got the 401 Not Authorised issue. No password box just a white page with text, any ideas.
Maybe my browser is corrupt as it will also not save my forum login password details ?
_________________ Rob
-
The moment after you press "Post" is the moment you actually see the typso 
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7019 Location: qld
|
Posted: Mon 08 Jun 2009, 05:14 Post subject:
|
|
Hi Rob
I had that issue yesterday. Try going directly to puppylinux.asia, then find zigbert's directory in TPP.
Cheers
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
tasmod

Joined: 04 Dec 2008 Posts: 1459 Location: North Lincolnshire. UK
|
Posted: Mon 08 Jun 2009, 10:46 Post subject:
|
|
Hmmm, It may be a problem there.
There isn't a pmusic 0.7.0 on that server, hence that's why the link crashes.
_________________ Rob
-
The moment after you press "Post" is the moment you actually see the typso 
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5244 Location: Valåmoen, Norway
|
Posted: Mon 08 Jun 2009, 12:00 Post subject:
|
|
Mick
The treble/bass controller is only reachable if your soundcard supports it. This is NOT a software equalizer. You seems to be one of many unlucky guys who bought a too cheap soundcard. I have to admit that I would have been happy if my hardware supported tone control. That means; the treble/bass functions is totally untested. Let's hope one of those lucky bastards tells us how nice it is to tune the sound just the way they want it to be.
Where is your first window preset?
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5244 Location: Valåmoen, Norway
|
Posted: Mon 08 Jun 2009, 12:04 Post subject:
|
|
Rob
Hope you will share your theme with us. It looks VERY promising. You will maybe think that the buttons are too big for the 'Manager' window in Pmusic 0.7.0, but don't rush. Maybe they will look gorgeous in 0.7.1...........I'm thinkin'
Sigmund
| Description |
|

Download |
| Filename |
pmusic-0.7.0.pet |
| Filesize |
31.5 KB |
| Downloaded |
178 Time(s) |
_________________ Stardust resources
|
|
Back to top
|
|
 |
tasmod

Joined: 04 Dec 2008 Posts: 1459 Location: North Lincolnshire. UK
|
Posted: Mon 08 Jun 2009, 12:34 Post subject:
|
|
Isn't life fun
OK downloaded the pet. Uninstalled 0.6.5 and then installed 0.7.0.
All OK then clicked on pmusic in menu. Splash screen opened OK and then a fleeting glimpse of a frame before 'nothing'. splash vanished and no sign of a program.
I seriously think something is wrong with my pupsave. I'm going to re-install again and report back.
------
I've added a pic of my desktop with the themes I've made, all on at once.
| Description |
|
| Filesize |
25.91 KB |
| Viewed |
1019 Time(s) |

|
| Description |
|
| Filesize |
92.44 KB |
| Viewed |
400 Time(s) |

|
_________________ Rob
-
The moment after you press "Post" is the moment you actually see the typso 
|
|
Back to top
|
|
 |
tasmod

Joined: 04 Dec 2008 Posts: 1459 Location: North Lincolnshire. UK
|
Posted: Mon 08 Jun 2009, 12:39 Post subject:
|
|
Ooops, that was meant to be a testing icon. Sent original pic instead.
background is 'carbon fibre with authorised personnel only' but doesn't show up in pic.
_________________ Rob
-
The moment after you press "Post" is the moment you actually see the typso 
|
|
Back to top
|
|
 |
DaveS

Joined: 09 Oct 2008 Posts: 3669 Location: UK
|
Posted: Mon 08 Jun 2009, 13:55 Post subject:
|
|
Oh Yes! THATS what i'm talkin about!
BTW.... on my laptop, plugging in headphones while Pmusic is playing mutes on-board speakers, as it should. Adjusting sound from tray icon is fine, but adjusting sound from within Pmusic GUI re-activates on-board speakers AND headphones. Unplugging headphones and then re-plugging them again mutes on-board speakers.
_________________ Spup Frugal HD and USB
Root forever!
|
|
Back to top
|
|
 |
DaveS

Joined: 09 Oct 2008 Posts: 3669 Location: UK
|
Posted: Mon 08 Jun 2009, 14:02 Post subject:
|
|
I hate to ask for more, but could you put an 'exit' button on the GUI please.
_________________ Spup Frugal HD and USB
Root forever!
|
|
Back to top
|
|
 |
|
|
Page 18 of 110 [1650 Posts] |
Goto page: Previous 1, 2, 3, ..., 16, 17, 18, 19, 20, ..., 108, 109, 110 Next |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|