2009-05-08, 11:26
Bram77 Wrote:Could you grand me access to, if I may be so frank?You should already have access
![Wink Wink](https://forum.kodi.tv/images/smilies/wink.png)
Bram77 Wrote:Could you grand me access to, if I may be so frank?You should already have access
Bram77 Wrote:If the core is stable and easy to address, the usability is all about the interface. If all goes as planned it will be fairly simple to create an interface (or multiple) that suits everybody's needs. But I completely agree that there are numerous options and the users should not be confronted with all of them.
An example that might simplify things is to add automatic resolution detection. Based on the resolution XBMC is using, the nearest resolution fanart is automatically downloaded. Not everybody will want this, so it would be nice if it could be turned on or off (allowing manual resolution selection). Or maybe even integrated (optionaly automatic) resizing and image quality control could be added. This would savo a lot of work for the XBOX users, no more manual resizing(Optimize downloaded images for XBOX : [PAL | NTSC | 720p]).
Weather this should (mainly) be part of the View or the Controller is a different discussion
Gamester17 Wrote:You should already have access
Quote:Bram77, you do not have permission to access this page.
Bram77 Wrote:If you'd read the whole thread you would have know that the idea (at this point) is to create a supporting-media manager that will be part of the XBMC package and can be operated with a web interface. It communicates with XBMC directly so it can easily figure out the resolution used.I though that the initial idea was to first create standalone media manager software that you install on your desktop computer sepratly from the media center, (so same as Media Info Plus and Media Companion work for the user today, with the only real major difference would be that it would have cross-platform and a WebGUI), then later maybe the option to integrate and bundle it with XBMC could be an option (and secondary priority for development)?
mafis90 Wrote:I think we need a public list for wishes.
Bram77 Wrote:If you'd read the whole thread you would have know that the idea (at this point) is to create a supporting-media manager that will be part of the XBMC package and can be operated with a web interface.....
Montellese Wrote:Well I don't know wxWidgets very well and I don't know wxPython at all but isn't wxWidgets dedicated to GUI programming? What we are mainly talking about is a programming language for the core independent of the GUI.
import wx
class MainWindow(wx.Frame):
def __init__(self, parent, id, title):
wx.Frame.__init__(self, parent, id, title, size=(200,100))
self.control = wx.TextCtrl(self, 1, style=wx.TE_MULTILINE)
self.Show(True)
app = wx.PySimpleApp()
frame=MainWindow(None, wx.ID_ANY, 'Small editor')
app.MainLoop()