NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information NextPVR Announcements v
« Previous 1 … 6 7 8 9 10 11 Next »
Help make new default skin

 
  • 0 Vote(s) - 0 Average
Help make new default skin
dottore
Offline

Posting Freak

Posts: 986
Threads: 44
Joined: May 2004
#211
2005-10-14, 06:57 PM
well, there were a few screenshots in this thread.....too few i think. i agree, we need more screenshots, still pictures, design ideas....not just text.
---------------------
www.sitecomposer.de
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,807
Threads: 769
Joined: Nov 2003
#212
2005-10-14, 07:02 PM
Yes, I agree. This thread hasnt really made any progress towards the original goal and we're 230 posts into it. Big Grin
dottore
Offline

Posting Freak

Posts: 986
Threads: 44
Joined: May 2004
#213
2005-10-14, 07:33 PM
to make a start, here are a few screenshots. the first is an idea, how my now called pspish menu could be changed to list more panels. i have added white translucent boxes, i wanted to play with dark text and i wanted to try something like the street skin.

the other pictures are views from a skin, which actually works with gbpvr. i have attached main menu (you have seen that before), tvguide and a popup in the guide.
---------------------
www.sitecomposer.de
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#214
2005-10-14, 09:43 PM
Here is one of our big limitations when it comes to the Main Menu screen:

Code:
<SpecialElement name="Buttons" loc="100,90" spacing="38" alwayCentered="false" maxVisibleButtons="7" allowTopBottomWrap="false" showNumbers="false"/>

For the main menu, all you can do is have a vertical list of buttons, you do not have the ability to pick and choose where that placement of buttons should appear. I know having one element makes it very simple to create a list of buttons, but it also makes it very limiting in what you can do with the layout of the screen. With out some sort of enhancement here, all you can do is move this list around.

A would love to propose something at least for the main menu skin is to add a feature to the skin such as:

Code:
<MainMenu>
   <Layout type="cols" pos="xxx,yyy">
       <MaxCols>2</MaxCols>
   </Layout>
   <Layout type="freeform" pos="xxx,yyy">
       <Button number="1" pos="xxx,yyy"/>
       <Button number="2" pos="xxx,yyy"/>
  </Layout>
  <Layout type="vertical" pos="xxx,yyy">
        <Button (Equivilant to the current SpecialElement)/>
  </Layout>
  <Layout type="horizontal" pos="xxx,yyy">
        <Button (equivilan to the currrent Special Element)/>
  </Layout>
</MainMenu>

Now the above is just a suggestion, how it would be implemented would be up to sub if he choose to do it. But it gives more options than the current sole specialelement option there is now. It would allow for some interesting designs and layout options.

I still use Meedio because the skinning is more feature complete in the regards to layout. The skinning it self can be a complicated mess, but it does allow for some very unique designs to be produced (i.e. curved menus layouts, horizontal/vertical/diagonal, etc).
nightwalker
Offline

Senior Member

Posts: 733
Threads: 54
Joined: May 2005
#215
2005-10-14, 10:10 PM
I agree, so far from what I've read the biggest improvement for the artistic types is to not have their hands tied to certain layouts unless there is no choice.

Even if only this one change could be made for now I'd think it would open up a lot of possibilities.
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#216
2005-10-14, 10:23 PM
i would love the main menu to use directdraw so the ticker plugin could become smooth and a few animations similar to mediaportal could come add (sliding the buttons and fading the last/first one out). im not sure how this would work on the mvp/xcard/350, but if sub managed to do this and got it to work on the mvp etc others would begin to do this aswell. and then it would be possible for music visuals. im just not sure if directdraw is possible in this way (i think it just draws directly to the screen....).
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,807
Threads: 769
Joined: Nov 2003
#217
2005-10-14, 11:04 PM
directdraw is a non starter for MVP/XCard/PVR350
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#218
2005-10-14, 11:11 PM
is it possible to return an image from a directdraw buffer (yeah i know bugger all about dd). just a way to do the animation a lot quicker and then send the image generated do the other devices (im assuming you just send the Image object (in one way shape form or another) to the xcard etc).
Lucas_24
Offline

Member

Posts: 242
Threads: 15
Joined: Jul 2004
#219
2005-10-14, 11:19 PM
Dottore,

That layout look extremly professional, and also feels very familiar. It looks great with many backgrounds. Let the user pick kind of like desktop wallpaper. I really like the design.
WIN 7
1 X PVR 250
1 X PVR 500
1 X HD-PVR
2 X MVP
2 X PCH A100
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,807
Threads: 769
Joined: Nov 2003
#220
2005-10-14, 11:44 PM
KingArgyle Wrote:Here is one of our big limitations when it comes to the Main Menu screen:

Code:
<SpecialElement name="Buttons" loc="100,90" spacing="38" alwayCentered="false" maxVisibleButtons="7" allowTopBottomWrap="false" showNumbers="false"/>

For the main menu, all you can do is have a vertical list of buttons, you do not have the ability to pick and choose where that placement of buttons should appear. I know having one element makes it very simple to create a list of buttons, but it also makes it very limiting in what you can do with the layout of the screen. With out some sort of enhancement here, all you can do is move this list around.

A would love to propose something at least for the main menu skin is to add a feature to the skin such as:

Code:
<MainMenu>
   <Layout type="cols" pos="xxx,yyy">
       <MaxCols>2</MaxCols>
   </Layout>
   <Layout type="freeform" pos="xxx,yyy">
       <Button number="1" pos="xxx,yyy"/>
       <Button number="2" pos="xxx,yyy"/>
  </Layout>
  <Layout type="vertical" pos="xxx,yyy">
        <Button (Equivilant to the current SpecialElement)/>
  </Layout>
  <Layout type="horizontal" pos="xxx,yyy">
        <Button (equivilan to the currrent Special Element)/>
  </Layout>
</MainMenu>

Now the above is just a suggestion, how it would be implemented would be up to sub if he choose to do it. But it gives more options than the current sole specialelement option there is now. It would allow for some interesting designs and layout options.

I still use Meedio because the skinning is more feature complete in the regards to layout. The skinning it self can be a complicated mess, but it does allow for some very unique designs to be produced (i.e. curved menus layouts, horizontal/vertical/diagonal, etc).
There will be support for new menu types in the next release, probably not free form layout though.
« Next Oldest | Next Newest »

Users browsing this thread: 5 Guest(s)

Pages (40): « Previous 1 … 20 21 22 23 24 … 40 Next »
Jump to page 


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode