NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 20 21 22 23 24 … 93 Next »
WizTools - 1.x Plugin Development Toolkit

 
  • 0 Vote(s) - 0 Average
WizTools - 1.x Plugin Development Toolkit
Ommina
Offline

Senior Member

Posts: 330
Threads: 39
Joined: Feb 2006
#261
2008-06-12, 11:30 PM
JavaWiz Wrote:Smile Not a problem. Like I've said before, I don't get to program at work anymore, so this stuff is fun for me!

I'm glad! I feel less guilty that way!

Quote:I actually don't have much code around the button, it is mostly a simple wrapper around sub's UiButton. Does this behavior occur in any of the other plugins that are not using WizTools? (ie, Video, Music, ...)

Nope, I'm not seeing the same behaviour in Video Library or Music Library. In each of those, the button is normally the more narrow version, is wider while highlighted, then has an animated shrink effect when it loses focus that takes it back down to the narrow(er) version.

However -- I note that I'm not using the ButtonList constructor that takes the "Normal" and "Selected" image names, so I'm going to see if including them changes things at all.

(time passes...)

Bleh, no change. And I was sure I was on to something there.
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#262
2008-06-13, 01:39 AM
Ommina Wrote:Nope, I'm not seeing the same behaviour in Video Library or Music Library. In each of those, the button is normally the more narrow version, is wider while highlighted, then has an animated shrink effect when it loses focus that takes it back down to the narrow(er) version.
Ok, try this version, found some code I commented out for some reason.
Ommina
Offline

Senior Member

Posts: 330
Threads: 39
Joined: Feb 2006
#263
2008-06-13, 03:51 AM
That did it! Buttons are now working precisely like they do in Video and Music Library. Thankies!

I'm glad the fix was as easy are removing some commenting.
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#264
2008-06-18, 09:24 AM
Have you done any work on adding different views like grid/slideshow to the list control? My work on this has been v.slow...
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#265
2008-06-18, 09:49 PM
McBainUK Wrote:Have you done any work on adding different views like grid/slideshow to the list control? My work on this has been v.slow...
Nope, have not looked into that yet.
pastro
Offline

Posting Freak

Posts: 1,885
Threads: 128
Joined: Jul 2006
#266
2008-06-28, 08:04 PM
JavaWiz Wrote:Ok, try this version, found some code I commented out for some reason.

I'm about to do a release of burndvdx2. Is this version 1.0.17.9 the correct version to release with?
GBpvr PC: Intel Celeron 1.8 Ghz. 768 Mb WinXp Home Sp2
Video: Diamond 128 Mb 9550
Capture Cards: PVR-150 & PVR-150 MCE w/fm + 2x MVP
Author of: BurnDVDX2 and Skiptool
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#267
2008-06-28, 09:16 PM
pastro Wrote:I'm about to do a release of burndvdx2. Is this version 1.0.17.9 the correct version to release with?
Yes, that is the version I have released on the Wiki.
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#268
2008-07-21, 06:38 PM
Was any progress made on providing an easy way to show the more up/down buttons and/or current list position like sub's lists do?

See top right of this screenshot for an example of what I mean:

[Image: InternationalCinemaListingsPlugin2.jpg]
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#269
2008-07-23, 06:17 AM
McBainUK Wrote:Was any progress made on providing an easy way to show the more up/down buttons and/or current list position like sub's lists do?

See top right of this screenshot for an example of what I mean:

[Image: InternationalCinemaListingsPlugin2.jpg]

Yes, this functionality is included in the new listbox. See SearchWizX2 or MovieWiz blue skins.



In a nutshell:
  • Add a placement name derived from your list box in the format: ListBoxNamePositionInfo. For example, in MovieWiz, the ListBox placement VideoList, has a position info name of VideoListPositionInfo. This placement name reflects the location of the list position eyecatcher
  • Add a composite name of either ListPositionInfo (will work for all lists), or to assign to a specific list ListBoxNameListPositionInfo. This composite image defines the actual image that will be displayed. The @positionText (xx/xxx), @moreUp and @moreDown reflect position within the list, and additional elements above and below current position.
For example:
Code:
<Placements>
        <Placement name="VideoList"             loc="45.0,17.0"  size="50.0,4.5"  rows="6" offset="5.0"/>
        <[B]Placement[/B] name="[B]VideoListPositionInfo[/B]" loc="85.0,47.0"/>  
    </Placements>

        <[B]CompositeImage[/B] name="[B]ListPositionInfo[/B]"   size="10,4.5">
   <DrawText  text="@positionText"               loc="0,00"  size="80,100" textStyle="CounterText" align="Right" valign="Center"/>
            <DrawImage filename="..\_CoreImages\up.png"   loc="80,0" size="10.0,100" visible="@moreUp" />
            <DrawImage filename="..\_CoreImages\down.png" loc="90,0" size="10.0,100" visible="@moreDown" />
        </CompositeImage>
or
        <[B]CompositeImage[/B] name="VideoList[B]ListPositionInfo[/B]"   size="10,4.5">
   <DrawText  text="@positionText"               loc="0,00"  size="80,100" textStyle="CounterText" align="Right" valign="Center"/>
            <DrawImage filename="..\_CoreImages\up.png"   loc="80,0" size="10.0,100" visible="@moreUp" />
            <DrawImage filename="..\_CoreImages\down.png" loc="90,0" size="10.0,100" visible="@moreDown" />
        </CompositeImage>
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#270
2008-07-23, 06:32 AM
Thanks Mr Wiz, I will give that a try.
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (31): « Previous 1 … 25 26 27 28 29 … 31 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  PIP plugin for Kodi sgilani 2 3,049 2022-10-17, 12:44 AM
Last Post: sgilani
  New Systems Plugin kirschey 10 3,529 2020-11-14, 08:01 PM
Last Post: sub
  Test/Development environment for npvr.db3 scJohn 10 4,526 2020-09-04, 09:14 PM
Last Post: scJohn
  VIdeo playback from plugin mvallevand 5 3,613 2015-08-06, 10:43 PM
Last Post: sub
  Attention Sub: Open TV / Custom Data Grabber plugin Benoire 2 2,990 2014-11-14, 02:05 AM
Last Post: Benoire
  API docs to help with plugin development? McBainUK 3 2,852 2013-06-08, 06:14 PM
Last Post: sub
  Refreshing TV Guide Data (after System plugin EPG update) imilne 13 6,302 2013-03-24, 08:03 PM
Last Post: imilne
  sabnzbd plugin to show processed files Wakalaka 1 2,013 2013-03-12, 06:48 AM
Last Post: psycik
  Integrated Development Environment (IDE) for plugins osx-addict 5 2,845 2012-10-18, 08:35 PM
Last Post: osx-addict
  Plugin problems with started from the command line mvallevand 11 5,198 2012-08-12, 07:56 PM
Last Post: sub

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

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

Linear Mode
Threaded Mode