Jump to content


Photo

change the position of plugins in the Openpli 9.0 rc image


  • Please log in to reply
12 replies to this topic

#1 toddy1967

  • Member
  • 7 posts

0
Neutral

Posted 21 October 2023 - 20:58

How can you change the position of plugins in the Openpli 9.0 rc image from vertical to horizontal for Octagon Sf 8008 box



Re: change the position of plugins in the Openpli 9.0 rc image #2 WanWizard

  • PLi® Core member
  • 70,575 posts

+1,818
Excellent

Posted 22 October 2023 - 14:23

Afaik not. Unless some plugin exists I don't know about.

 

May I ask why? I hardly ever go into that screen, if at all? Only for initial configuration of some plugins, and for installation and removal.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: change the position of plugins in the Openpli 9.0 rc image #3 littlesat

  • PLi® Core member
  • 57,246 posts

+702
Excellent

Posted 22 October 2023 - 21:47

Use the <> buttons in the plugin list to change the position../ but from horizontal to vertical is not possible (and not practical as there is only weird location available for the descriptions)


WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: change the position of plugins in the Openpli 9.0 rc image #4 elsato

  • Senior Member
  • 633 posts

+26
Good

Posted 23 October 2023 - 18:42

from horizontal to vertical is not possible (and not practical as there is only weird location available for the descriptions)

 

This works for openpli after adding this from fairbird's github

https://github.com/f...2de173b9b7dd86d


Edited by Amai, 23 October 2023 - 18:47.


Re: change the position of plugins in the Openpli 9.0 rc image #5 WanWizard

  • PLi® Core member
  • 70,575 posts

+1,818
Excellent

Posted 23 October 2023 - 18:47

The only comment I have is that it will introduce hardcoded stuff that should be in the skin definition, things like colours, sizing and positioning.

 

Something we don't want in the enigma core code.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: change the position of plugins in the Openpli 9.0 rc image #6 mrvica

  • Senior Member
  • 1,261 posts

+86
Good

Posted 25 October 2023 - 17:22

the good old PluginsPanel plugin, modded by me, it just demonstrates what can be done with 5k of code, shows plugins horizontally in 5x5 rows / columns, plugin icons can be of any size, they just get scaled to fit into frame, you can launch it from main menu just like vertical plugin browser,  converted to py3, tested only on PLi 8.3

 

 

Attached Files



Re: change the position of plugins in the Openpli 9.0 rc image #7 littlesat

  • PLi® Core member
  • 57,246 posts

+702
Excellent

Posted 26 October 2023 - 10:56

Sounds like a candidate to adapt it to the standard plugins screen stuff... by adding the standard screen and the red/green button for removal and installment...  Now only 164 lines of code.

 

At least it could be nice when it stays a plugin that it replaces the application screen in the current menu and then had an option inside to still get to the standard plugin screen.

 

One thing needs a small change 'zeile' is still German :D


Edited by littlesat, 26 October 2023 - 11:00.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: change the position of plugins in the Openpli 9.0 rc image #8 mrvica

  • Senior Member
  • 1,261 posts

+86
Good

Posted 27 October 2023 - 14:33

a small problem, if there are more than 25 plugins the icons don´t  scroll nor is second page loaded, the code is missing and I assume it is not trivial to add it, so I made a 7x7 panel, I think max. of 49 plugins will be sufficient for most people, I loaded the whole bunch of 49 plugins for testing and everything is fine

 

Attached Files



Re: change the position of plugins in the Openpli 9.0 rc image #9 DimitarCC

  • PLi® Contributor
  • 1,577 posts

+71
Good

Posted 27 October 2023 - 14:43

To have a proper scroll a eListbox have to be extended to support grid type orientation. Without that you cant get reliable scrolling

Vu+DUO4KSE, DM920UHD, Vu+Uno4KSE, SF8008Mini, 2xPulse4K, Vu+Solo2, Dreambox DM500HD, Triax 78 (7E,9E,13E,19.2E,23.5E) & 2xTriax 78 (39E)


Re: change the position of plugins in the Openpli 9.0 rc image #10 mrvica

  • Senior Member
  • 1,261 posts

+86
Good

Posted 2 October 2024 - 16:05

I improved the plugin a bit, remove and download plugins not implemented yet, just prepared for it, to be honest, I don´t know how to do it, the code is present in vertical plugin browser, I don´t know how to insert it

 

 

Attached Files



Re: change the position of plugins in the Openpli 9.0 rc image #11 littlesat

  • PLi® Core member
  • 57,246 posts

+702
Excellent

Posted 2 October 2024 - 17:24

I see a lot of standard plugin pictures there without seeing which plugin it should be... That was exactly also the reason why on only doing it with picons was not really helpfull.

 

Install/Remove plugins could be done by opening a session (e.g. with callback) by importing the usual class for it within the plugin and then do the same call as in the standard plugin manager.


Edited by littlesat, 2 October 2024 - 17:26.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: change the position of plugins in the Openpli 9.0 rc image #12 Huevos

  • PLi® Contributor
  • 4,701 posts

+167
Excellent

Posted 14 October 2024 - 20:59

The only comment I have is that it will introduce hardcoded stuff that should be in the skin definition, things like colours, sizing and positioning.

 

Something we don't want in the enigma core code.

Exactly right. Should be done in eListBox and controlled from the skin, like DimitarCC did with the horizontal version. This python code is a dirty hack.



Re: change the position of plugins in the Openpli 9.0 rc image #13 littlesat

  • PLi® Core member
  • 57,246 posts

+702
Excellent

Posted 15 October 2024 - 06:46

To have a proper scroll a eListbox have to be extended to support grid type orientation. Without that you cant get reliable scrolling

~>

Plus for plug-ins there should still be a kind of text field and/or a icon/picture identifying the plugin is mandatory….. the example picture demonstrates a lot of default pictures which is not helpful to select a plugin.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W



2 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users


    Bing (1)