Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-11-01 Thread Greg Ewing
On 1/11/20 5:43 pm, Michael Torrie wrote: In C# world, WinForms is often used, but it's not "native" win32 widgets. Widgets are implemented in managed code (according to Wikipedia) that draw themselves using the theming dll so they look native, or at least look somewhat consistent with regards t

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Michael Torrie
On 10/31/20 5:42 PM, Greg Ewing wrote: > On 1/11/20 9:44 am, Barry Scott wrote: > >> It does not appear to me that use native widgets is important for a tool kit. > > It's not strictly necessary. However, recreating the exact appearance > and behaviour of native widgets is a lot of work, and diff

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Greg Ewing
On 1/11/20 9:44 am, Barry Scott wrote: It does not appear to me that use native widgets is important for a tool kit. It's not strictly necessary. However, recreating the exact appearance and behaviour of native widgets is a lot of work, and difficult to do well -- most toolkits that attempt th

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Barry Scott
> On 31 Oct 2020, at 16:37, Igor Korot wrote: > > Hi, Barry, > > On Sat, Oct 31, 2020, 3:39 AM Barry Scott > wrote: > > > > On 29 Oct 2020, at 15:54, flaskee via Python-list > > wrote: > > > > Hello! > > > > I've been reading

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Igor Korot
Hi, Barry, On Sat, Oct 31, 2020, 3:39 AM Barry Scott wrote: > > > > On 29 Oct 2020, at 15:54, flaskee via Python-list < > python-list@python.org> wrote: > > > > Hello! > > > > I've been reading the GUI toolkit posts. > > > > If anyone can give me a push in the right python direction on > > my ne

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Betty Hollinshead
On Saturday, 31 October 2020 at 08:36:48 UTC, Barry Scott wrote: > > On 29 Oct 2020, at 15:54, flaskee via Python-list > > wrote: > > > > Hello! > > > > I've been reading the GUI toolkit posts. > > > > snip > > > Barry Suggest you look at Glade and pure Python3 Works well on Linux (Fedora

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Betty Hollinshead
On Saturday, 31 October 2020 at 08:36:48 UTC, Barry Scott wrote: > > On 29 Oct 2020, at 15:54, flaskee via Python-list > > wrote: > > > > Hello! > > > > I've been reading the GUI toolkit posts. > > > > If anyone can give me a push in the right python direction on > > my needs, I'd be grate

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Barry Scott
> On 29 Oct 2020, at 15:54, flaskee via Python-list > wrote: > > Hello! > > I've been reading the GUI toolkit posts. > > If anyone can give me a push in the right python direction on > my needs, I'd be grateful. > > This is for business applications, not games. > (but if a game toolkit fit

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-30 Thread flaskee via Python-list
I was actually working on a summarized list for my question. I thought that I'd produce an up-to-date list of GUI toolkits, with everyone's responses; plus what I've cobbled together from comparisons on other sites. Sent with ProtonMail Secure Email. ‐‐‐ Original Message ‐‐‐ On Thursd

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Dan Stromberg
On Thu, Oct 29, 2020 at 4:48 PM Ethan Furman wrote: > On 10/29/20 11:30 AM, Igor Korot wrote: > > > If you have any further questions you can contact me directly. > > Please do not. By keeping the discussion on the list many people can > participate and learn. > This list isn't terribly overnois

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Igor Korot
Hi, Ethan, On Thu, Oct 29, 2020 at 6:51 PM Ethan Furman wrote: > > On 10/29/20 11:30 AM, Igor Korot wrote: > > > If you have any further questions you can contact me directly. > > Please do not. By keeping the discussion on the list many people can > participate and learn. If the OP has furthe

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Ethan Furman
On 10/29/20 11:30 AM, Igor Korot wrote: If you have any further questions you can contact me directly. Please do not. By keeping the discussion on the list many people can participate and learn. -- ~Ethan~ -- https://mail.python.org/mailman/listinfo/python-list

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread flaskee via Python-list
> The Python toolkits that I've looked at feel mostly grid-oriented > or zone-oriented (you can put the button on the left, or middle, > or right, etc). I don't think it is easily possible in a cross-platform environment. But even if your software is one platform only how will you handle DPI chan

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Igor Korot
Hi, On Thu, Oct 29, 2020 at 11:33 AM flaskee via Python-list wrote: > > Hello! > > I've been reading the GUI toolkit posts. > > If anyone can give me a push in the right python direction on > my needs, I'd be grateful. > > This is for business applications, not games. > (but if a game toolkit fit

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Dietmar Schwertberger
On 29.10.2020 16:54, flaskee via Python-list wrote: Thank you for your help in advance! Maybe, you should outline what you actually want to accomplish on each platform group (desktop / mobile). Regards, Dietmar -- https://mail.python.org/mailman/listinfo/python-list

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Igor Korot
Hi, On Thu, Oct 29, 2020 at 1:05 PM Dennis Lee Bieber wrote: > > On Thu, 29 Oct 2020 15:54:33 +, flaskee via Python-list > declaimed the following: > > > > >What I'd like: > > > >* To target MacOS, Windows, Linux, Android using native widgets (this drops > >out Kivy). > > > That's g

GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread flaskee via Python-list
Hello! I've been reading the GUI toolkit posts. If anyone can give me a push in the right python direction on my needs, I'd be grateful. This is for business applications, not games. (but if a game toolkit fits...) I'm coming from Actionscript, where there is a lot of GUI flexibility. The Pyth