Re: [e-users] Having issues getting mixxx to work

2023-03-13 Thread Φ SNAKΣ ΣYΣZ Φ
ws 90x88 DPI in resolution; and xrdb shows Xft.dpi as 90 (set
in .Xdefaults) so I _think_ these are all as they should be. However,
DprGadget shows a device pixel ratio of 0.9375 (which is 90/96), and all
other widgets are not displayed at all! This is the same problem I was seeing
in Mixxx. If I set QT_SCALE_FACTOR=96/90, DprGadget _does_ work well, and
displays a device pixel ratio of 1.0, along with a native logical DPI of 90,
but, oddly, a QWindow DPI of 96! If the pixel ratio within QT under

i suspect this rounding feature might be like rounding down? and thus a dpi
like 90/96 rounds down to 0 by qt and thus falls apart totally. thus would be a
qt bug though... :)


Enlightenment is based on a DPI of 96, alongside the correct DPI of 90 for my
system, I've no idea at all yet where that's coming from. Within plain X,
xrdb returns _nothing_ under xterm, and xdpyinfo still shows 90x88 DPI.

e sets both xft.dpi xrdb and xsettings dpi. these are set based on your
selected scale factor and "application base dpi" (look in advanced scale
settings in e). e sets these 2 dpi values to base dpi * scale factor. e.g. if
you use scale 1 then it sets it to 75. this achieves the above consistency (for
me at least) and pixel for pixel regular gtk, qt and efl apps draw the same
font at the same size. you can adjust this base dpi if you want. advanced
feature of course :) this will cause gtk and qt apps then to scale differently
- how they do it is up to them but e just sets the dpi.


There, DprGadget shows a pixel ratio of 1.0, and all widgets display
perfectly (as they do if I set the "Round" rounding policy for QT under
Enlightenment, again resulting in a device pixel ratio of 1.0). In any case,
Mixxx is now fully usable if I make sure it doesn't pass through the DPI
scale factor! I'm really happy about this, although I would be interested to
find out whether it's Mixxx, QT, GTK or me which is actually at fault. :-)
Thanks so much for all your help, Anna

a combo of mixx and qt. i suspect removing that rounding factor logic will
suddenly fix it. i think its actually a qt feature and code path that is kind
of broken and some apps like mixx (and freecad) request this feature not
realising it is kind of broken... :)

personally - an app that segfaults on start (probably because it can/'t find
jackd as i use pulse) without a sensible error dialog or some fallback hints to
me that the developer is not polishing things as well as they could which
makes me suspect other things may not be as nicely polished. :)


 On Sunday, 12 March 2023 at 23:09:54 GMT, Carsten Haitzler
  wrote:
  On Sat, 11 Mar 2023 19:36:56 +0900 Masaru Nomiya
said:


Hello,

In the Message;

   Subject    : Re: [e-users] Having issues getting mixxx to work
   Message-ID :<20230307054350.c86a5fea5a95729ab0bf6...@rasterman.com>
   Date & Time: Tue, 7 Mar 2023 05:43:50 +

[CH] == Carsten Haitzler  has written:

CH>  On Mon, 6 Mar 2023 21:34:18 + (UTC) Anna Cassar
CH>  said:

CH>  e sets xsettings to tell apps that read these to uses some
CH>  specific fonts, theme, dpi etc. - i've seen qt mess up badly when
CH>  theme is set AND the qt style plugins are not there. it doesn't
CH>  fall back gracefully. not qt5 style. qt5 style plugins. the
CH>  plugins is the important bit - the thing that provides some
CH>  plugin for qt to properly do this.

CH>  5:32AM ~ > pacman -Q | grep styleplugins
CH>  qt5-styleplugins 5.0.0.20170311-35

CH>  all i see is mixx segfault. probably because it can't connect to
CH>  jack. not very graceful. it does it even in a wm-less xephyr.

CH>  e also sets 2 env vars:

CH>  QT_QPA_PLATFORMTHEME=gtk2
CH>  QT_STYLE_OVERRIDE=gtk2

CH>  this tells qt to use the gtk2 style to do theme stuff. you could
CH>  unset these in a terminal and run mixxx from there and see.

CH>  it might mess up if it doesn't like the dpi set - but then that'd
CH>  be it's problem for not rendering at that dpi to scale correctly
CH>  - regardless of the value. either ignore the dpi or use it as
CH>  given. don't use it then fall over if the value isn't one you like.

I think everything written here is out of line.

I mean, I have no problems with mixxx look and feel on any WM on my
PC, not just enlightenment, but twm, Plasma5, Gnome, e16, and icewm.

I can only assume that there must be a problem with the build of
enlightenment (_ _?

that's not how x11 works. mixx is in  charge of rendering its own content. it
does so directly using x11 protocol to its own window. e just composites the
resulting bitmap. the "it only happens in e - thus i blame e" is a bit of
continuing false logic almost always from people who have no idea how apps,
toolkits, wm's, x11 or compositors work.

your logic is flawed. e is not involved in rendering, it's the client side
that does that. at worse e setys the env vars to tell qt to use a gtk
handling style plugin 

Re: [e-users] Having issues getting mixxx to work

2023-03-13 Thread Carsten Haitzler
lain X,
> xrdb returns _nothing_ under xterm, and xdpyinfo still shows 90x88 DPI.

e sets both xft.dpi xrdb and xsettings dpi. these are set based on your
selected scale factor and "application base dpi" (look in advanced scale
settings in e). e sets these 2 dpi values to base dpi * scale factor. e.g. if
you use scale 1 then it sets it to 75. this achieves the above consistency (for
me at least) and pixel for pixel regular gtk, qt and efl apps draw the same
font at the same size. you can adjust this base dpi if you want. advanced
feature of course :) this will cause gtk and qt apps then to scale differently
- how they do it is up to them but e just sets the dpi.

> There, DprGadget shows a pixel ratio of 1.0, and all widgets display
> perfectly (as they do if I set the "Round" rounding policy for QT under
> Enlightenment, again resulting in a device pixel ratio of 1.0). In any case,
> Mixxx is now fully usable if I make sure it doesn't pass through the DPI
> scale factor! I'm really happy about this, although I would be interested to
> find out whether it's Mixxx, QT, GTK or me which is actually at fault. :-)
> Thanks so much for all your help, Anna

a combo of mixx and qt. i suspect removing that rounding factor logic will
suddenly fix it. i think its actually a qt feature and code path that is kind
of broken and some apps like mixx (and freecad) request this feature not
realising it is kind of broken... :)

personally - an app that segfaults on start (probably because it can/'t find
jackd as i use pulse) without a sensible error dialog or some fallback hints to
me that the developer is not polishing things as well as they could which
makes me suspect other things may not be as nicely polished. :)

> On Sunday, 12 March 2023 at 23:09:54 GMT, Carsten Haitzler
>  wrote: 
>  On Sat, 11 Mar 2023 19:36:56 +0900 Masaru Nomiya 
> said:
> 
> > Hello,
> > 
> > In the Message; 
> > 
> >  Subject    : Re: [e-users] Having issues getting mixxx to work
> >  Message-ID : <20230307054350.c86a5fea5a95729ab0bf6...@rasterman.com>
> >  Date & Time: Tue, 7 Mar 2023 05:43:50 +
> > 
> > [CH] == Carsten Haitzler  has written:
> > 
> > CH>  On Mon, 6 Mar 2023 21:34:18 + (UTC) Anna Cassar
> > CH>   said:
> > 
> > CH>  e sets xsettings to tell apps that read these to uses some
> > CH>  specific fonts, theme, dpi etc. - i've seen qt mess up badly when
> > CH>  theme is set AND the qt style plugins are not there. it doesn't
> > CH>  fall back gracefully. not qt5 style. qt5 style plugins. the
> > CH>  plugins is the important bit - the thing that provides some
> > CH>  plugin for qt to properly do this.
> > 
> > CH>  5:32AM ~ > pacman -Q | grep styleplugins
> > CH>  qt5-styleplugins 5.0.0.20170311-35
> > 
> > CH>  all i see is mixx segfault. probably because it can't connect to
> > CH>  jack. not very graceful. it does it even in a wm-less xephyr.
> > 
> > CH>  e also sets 2 env vars:
> > 
> > CH>  QT_QPA_PLATFORMTHEME=gtk2
> > CH>  QT_STYLE_OVERRIDE=gtk2
> > 
> > CH>  this tells qt to use the gtk2 style to do theme stuff. you could
> > CH>  unset these in a terminal and run mixxx from there and see.
> > 
> > CH>  it might mess up if it doesn't like the dpi set - but then that'd
> > CH>  be it's problem for not rendering at that dpi to scale correctly
> > CH>  - regardless of the value. either ignore the dpi or use it as
> > CH>  given. don't use it then fall over if the value isn't one you like.
> > 
> > I think everything written here is out of line.
> > 
> > I mean, I have no problems with mixxx look and feel on any WM on my
> > PC, not just enlightenment, but twm, Plasma5, Gnome, e16, and icewm.
> > 
> > I can only assume that there must be a problem with the build of
> > enlightenment (_ _?
> 
> that's not how x11 works. mixx is in  charge of rendering its own content. it
> does so directly using x11 protocol to its own window. e just composites the
> resulting bitmap. the "it only happens in e - thus i blame e" is a bit of
> continuing false logic almost always from people who have no idea how apps,
> toolkits, wm's, x11 or compositors work.
> 
> your logic is flawed. e is not involved in rendering, it's the client side
> that does that. at worse e setys the env vars to tell qt to use a gtk
> handling style plugin to make themes match between gtk and qt falls over
> badly when it can't find the gtk style plugin and qt or e sets dpi to
> something qt/mixx does not like. but both of these would be bugs on the
> client side.
> 
> i've explained that e 

Re: [e-users] Having issues getting mixxx to work

2023-03-12 Thread Masaru Nomiya
Hello,

In the Message; 

  Subject: Re: [e-users] Having issues getting mixxx to work
  Message-ID : <20230312230907.c9f719828fc835ca67c05...@rasterman.com>
  Date & Time: Sun, 12 Mar 2023 23:09:07 +

[CE] == Carsten Haitzler  has written:

CE>  On Sat, 11 Mar 2023 19:36:56 +0900 Masaru Nomiya  
said:

[...]
MN> > I can only assume that there must be a problem with the build of
MN> > enlightenment (_ _?

I am not saying that there is a problem with enlightenmetn, I am just
speculating that there is a problem with the enlightenment in her
environment.

[...]
CE>  like. but both of these would be bugs on the client side.

Thanks for helping me understand.

Regards.

---
┏━━┓彡 野宮  賢 mail-to: nomiya @ lake.dti.ne.jp
┃\/彡
┗━━┛   "A bachelor’s degree still holds prestige as a ticket to the
   middle class, but its value has received increasing scrutiny.
   In the last several years, rising tuition and student loan debt
   have led more Americans to reconsider an investment in
   postsecondary education."

-- Washington Post --


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Having issues getting mixxx to work

2023-03-12 Thread Anna Cassar via enlightenment-users
 Hi all,  First of all thank you all so much for your helpful replies. My 
apologies, my knowledge of how QT apps render is not great yet, but I'm 
certainly learning a lot more about it which is really useful! I've done a bit 
more testing, and I'm also convinced now that if E has anything at all to do 
with the issue then it's probably environment variable related (although I 
haven't yet found a guide to help me check whether I have the GTK style plugins 
fully installed and set up for E yet). I'm pleased to say that with your help I 
was able to get Mixxx to work under Enlightenment!   I thought I'd share 
details of my tests here in case they are helpful. QT apps appear to be being 
given an incorrect device pixel ratio within Enlightenment. I've only been able 
to test this against an old KDE install on a different machine so far, with an 
older version of QT; Mixxx dialogs display without issue there, but this might 
be unrelated. This problem only affects apps which set 
HighDpiScaleFactorRoundingPolicy to PassThrough (such as Mixxx and QT's 
DprGadget), and those apps display perfectly when 
QT_SCALE_FACTOR_ROUNDING_POLICY=Round is set as an environment variable 
(setting QT_SCALE_FACTOR=1.0 results in no change).   Within Enlightenment, 
Xorg.0.log shows my monitor's DPI defined as (90,88) which is correct; xdpyinfo 
shows 90x88 DPI in resolution; and xrdb shows Xft.dpi as 90 (set in .Xdefaults) 
so I _think_ these are all as they should be. However, DprGadget shows a device 
pixel ratio of 0.9375 (which is 90/96), and all other widgets are not displayed 
at all! This is the same problem I was seeing in Mixxx.
 If I set QT_SCALE_FACTOR=96/90, DprGadget _does_ work well, and displays a 
device pixel ratio of 1.0, along with a native logical DPI of 90, but, oddly, a 
QWindow DPI of 96! If the pixel ratio within QT under Enlightenment is based on 
a DPI of 96, alongside the correct DPI of 90 for my system, I've no idea at all 
yet where that's coming from.
 Within plain X, xrdb returns _nothing_ under xterm, and xdpyinfo still shows 
90x88 DPI. There, DprGadget shows a pixel ratio of 1.0, and all widgets display 
perfectly (as they do if I set the "Round" rounding policy for QT under 
Enlightenment, again resulting in a device pixel ratio of 1.0).
 In any case, Mixxx is now fully usable if I make sure it doesn't pass through 
the DPI scale factor! I'm really happy about this, although I would be 
interested to find out whether it's Mixxx, QT, GTK or me which is actually at 
fault. :-)
Thanks so much for all your help,
Anna

On Sunday, 12 March 2023 at 23:09:54 GMT, Carsten Haitzler 
 wrote:  
 
 On Sat, 11 Mar 2023 19:36:56 +0900 Masaru Nomiya  said:

> Hello,
> 
> In the Message; 
> 
>  Subject    : Re: [e-users] Having issues getting mixxx to work
>  Message-ID : <20230307054350.c86a5fea5a95729ab0bf6...@rasterman.com>
>  Date & Time: Tue, 7 Mar 2023 05:43:50 +
> 
> [CH] == Carsten Haitzler  has written:
> 
> CH>  On Mon, 6 Mar 2023 21:34:18 + (UTC) Anna Cassar
> CH>   said:
> 
> CH>  e sets xsettings to tell apps that read these to uses some
> CH>  specific fonts, theme, dpi etc. - i've seen qt mess up badly when
> CH>  theme is set AND the qt style plugins are not there. it doesn't
> CH>  fall back gracefully. not qt5 style. qt5 style plugins. the
> CH>  plugins is the important bit - the thing that provides some
> CH>  plugin for qt to properly do this.
> 
> CH>  5:32AM ~ > pacman -Q | grep styleplugins
> CH>  qt5-styleplugins 5.0.0.20170311-35
> 
> CH>  all i see is mixx segfault. probably because it can't connect to
> CH>  jack. not very graceful. it does it even in a wm-less xephyr.
> 
> CH>  e also sets 2 env vars:
> 
> CH>  QT_QPA_PLATFORMTHEME=gtk2
> CH>  QT_STYLE_OVERRIDE=gtk2
> 
> CH>  this tells qt to use the gtk2 style to do theme stuff. you could
> CH>  unset these in a terminal and run mixxx from there and see.
> 
> CH>  it might mess up if it doesn't like the dpi set - but then that'd
> CH>  be it's problem for not rendering at that dpi to scale correctly
> CH>  - regardless of the value. either ignore the dpi or use it as
> CH>  given. don't use it then fall over if the value isn't one you like.
> 
> I think everything written here is out of line.
> 
> I mean, I have no problems with mixxx look and feel on any WM on my
> PC, not just enlightenment, but twm, Plasma5, Gnome, e16, and icewm.
> 
> I can only assume that there must be a problem with the build of
> enlightenment (_ _?

that's not how x11 works. mixx is in  charge of rendering its own content. it
does so directly using x11 protocol to its own window. e just composites the
resulting bitmap. the "it only happens in e - thus i blame e" is a bit of
continuing false logic almos

Re: [e-users] Having issues getting mixxx to work

2023-03-12 Thread Carsten Haitzler
On Sat, 11 Mar 2023 19:36:56 +0900 Masaru Nomiya  said:

> Hello,
> 
> In the Message; 
> 
>   Subject    : Re: [e-users] Having issues getting mixxx to work
>   Message-ID : <20230307054350.c86a5fea5a95729ab0bf6...@rasterman.com>
>   Date & Time: Tue, 7 Mar 2023 05:43:50 +
> 
> [CH] == Carsten Haitzler  has written:
> 
> CH>  On Mon, 6 Mar 2023 21:34:18 + (UTC) Anna Cassar
> CH>   said:
> 
> CH>  e sets xsettings to tell apps that read these to uses some
> CH>  specific fonts, theme, dpi etc. - i've seen qt mess up badly when
> CH>  theme is set AND the qt style plugins are not there. it doesn't
> CH>  fall back gracefully. not qt5 style. qt5 style plugins. the
> CH>  plugins is the important bit - the thing that provides some
> CH>  plugin for qt to properly do this.
> 
> CH>   5:32AM ~ > pacman -Q | grep styleplugins
> CH>  qt5-styleplugins 5.0.0.20170311-35
> 
> CH>  all i see is mixx segfault. probably because it can't connect to
> CH>  jack. not very graceful. it does it even in a wm-less xephyr.
> 
> CH>  e also sets 2 env vars:
> 
> CH>  QT_QPA_PLATFORMTHEME=gtk2
> CH>  QT_STYLE_OVERRIDE=gtk2
> 
> CH>  this tells qt to use the gtk2 style to do theme stuff. you could
> CH>  unset these in a terminal and run mixxx from there and see.
> 
> CH>  it might mess up if it doesn't like the dpi set - but then that'd
> CH>  be it's problem for not rendering at that dpi to scale correctly
> CH>  - regardless of the value. either ignore the dpi or use it as
> CH>  given. don't use it then fall over if the value isn't one you like.
> 
> I think everything written here is out of line.
> 
> I mean, I have no problems with mixxx look and feel on any WM on my
> PC, not just enlightenment, but twm, Plasma5, Gnome, e16, and icewm.
> 
> I can only assume that there must be a problem with the build of
> enlightenment (_ _?

that's not how x11 works. mixx is in  charge of rendering its own content. it
does so directly using x11 protocol to its own window. e just composites the
resulting bitmap. the "it only happens in e - thus i blame e" is a bit of
continuing false logic almost always from people who have no idea how apps,
toolkits, wm's, x11 or compositors work.

your logic is flawed. e is not involved in rendering, it's the client side that
does that. at worse e setys the env vars to tell qt to use a gtk handling style
plugin to make themes match between gtk and qt falls over badly when it can't
find the gtk style plugin and qt or e sets dpi to something qt/mixx does not
like. but both of these would be bugs on the client side.

i've explained that e sets some env vars to encourage qt to use the gtk style
plugin so it will inhrit theme information from gtk. if qt completely falls
over as a result of this, then qt is not very good at handling its own errors.
there is no way for e to know if qt can or cannot handle gtk themes. there is
no mechanism to find out. if it's this then unset the env vars OR install the
style plugins as i mentioned so qt stops failing poorly. it could also be that
e set a dpi value lower than qt5/mixx would expect. there is nothing wrong with
setting a low dpi. if you have a low dpi screen then this is exactly what you
want. if this is the issue the problem is STILL in qt5 or mixx. it's not e's
fault or problem that it sets a lower dpi value. you can find out the above by
unsetting the above env vard then running mixx from that shell. you can find
out if its xsettings dpi by disabling e's x settings feature - logging in again
to clear everything out and running mixx (also try both with env vars gone an d
x settings not there). but just saying "it's e's fault" is not even trying to
narrow down what on qt/mixx's side the problem is as the problem *IS* over
there as e has NOTHING to do with the rendering of an x11 client - only the
final compositing of the resulting image.


-- 
- Codito, ergo sum - "I code, therefore I am" --
Carsten Haitzler - ras...@rasterman.com



___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Having issues getting mixxx to work

2023-03-11 Thread Masaru Nomiya
Hello,

In the Message; 

  Subject: Re: [e-users] Having issues getting mixxx to work
  Message-ID : <20230307054350.c86a5fea5a95729ab0bf6...@rasterman.com>
  Date & Time: Tue, 7 Mar 2023 05:43:50 +

[CH] == Carsten Haitzler  has written:

CH>  On Mon, 6 Mar 2023 21:34:18 + (UTC) Anna Cassar
CH>   said:

CH>  e sets xsettings to tell apps that read these to uses some
CH>  specific fonts, theme, dpi etc. - i've seen qt mess up badly when
CH>  theme is set AND the qt style plugins are not there. it doesn't
CH>  fall back gracefully. not qt5 style. qt5 style plugins. the
CH>  plugins is the important bit - the thing that provides some
CH>  plugin for qt to properly do this.

CH>   5:32AM ~ > pacman -Q | grep styleplugins
CH>  qt5-styleplugins 5.0.0.20170311-35

CH>  all i see is mixx segfault. probably because it can't connect to
CH>  jack. not very graceful. it does it even in a wm-less xephyr.

CH>  e also sets 2 env vars:

CH>  QT_QPA_PLATFORMTHEME=gtk2
CH>  QT_STYLE_OVERRIDE=gtk2

CH>  this tells qt to use the gtk2 style to do theme stuff. you could
CH>  unset these in a terminal and run mixxx from there and see.

CH>  it might mess up if it doesn't like the dpi set - but then that'd
CH>  be it's problem for not rendering at that dpi to scale correctly
CH>  - regardless of the value. either ignore the dpi or use it as
CH>  given. don't use it then fall over if the value isn't one you like.

I think everything written here is out of line.

I mean, I have no problems with mixxx look and feel on any WM on my
PC, not just enlightenment, but twm, Plasma5, Gnome, e16, and icewm.

I can only assume that there must be a problem with the build of
enlightenment (_ _?

---
┏━━┓彡 野宮  賢 mail-to: nomiya @ lake.dti.ne.jp
┃\/彡
┗━━┛   "The question of who holds the platform and whether the person
   or organisation holding it is trustworthy has serious and 
profound
   implications in these volatile times. Once trust is broken, it is
   extremely difficult to restore. It is necessary to diversify in
   advance."

-- Financial Times --


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Having issues getting mixxx to work

2023-03-06 Thread Carsten Haitzler
On Mon, 6 Mar 2023 21:34:18 + (UTC) Anna Cassar 
said:

e sets xsettings to tell apps that read these to uses some specific fonts,
theme, dpi etc. - i've seen qt mess up badly when theme is set AND the qt style
plugins are not there. it doesn't fall back gracefully. not qt5 style. qt5 style
plugins. the plugins is the important bit - the thing that provides some
plugin for qt to properly do this.

 5:32AM ~ > pacman -Q | grep styleplugins
qt5-styleplugins 5.0.0.20170311-35

all i see is mixx segfault. probably because it can't connect to jack. not very
graceful. it does it even in a wm-less xephyr.

e also sets 2 env vars:

QT_QPA_PLATFORMTHEME=gtk2
QT_STYLE_OVERRIDE=gtk2

this tells qt to use the gtk2 style to do theme stuff. you could unset these in
a terminal and run mixxx from there and see.

it might mess up if it doesn't like the dpi set - but then that'd be it's
problem for not rendering at that dpi to scale correctly - regardless of the
value. either ignore the dpi or use it as given. don't use it then fall over if
the value isn't one you like.


> Hi 
> Thanks for sending me the other recommendations I know there are other great
> programs I could use, but I would love to get Mixxx running under
> enlightenment (and I'm interested to discover why it's not working). Actually
> as I'm about to explain, I can use mixxx under X using Xterm, twm etc.
> https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a
> 
> As the pictures show both environments running the program. Mixxx is fine in
> plain X but under enlightenment some widgets and labels are missing/
> incorrectly rendered. My other qt programs such as kdenlive and vlc work
> perfectly fine under enlightenment and my qt packages are all up to date.
> I've tried using qt5ct-style as the style and this changes nothing. Also no
> idea if is related but when I go to screen setup settings after  7 seconds
> the dialogue boxes text labels disappear. (I've added this pic also to google
> drive. Thanks Anna 
> 
> Sent from Yahoo Mail on Android 
>  
>   On Mon, 6 Mar 2023 at 17:27, Φ SNAKΣ ΣYΣZ Φ
> wrote:   ...ok apologies; so I'm having all sorts of issues with my email at
> the moment and things aren't sending correctly :(  I'll try again from my old
> laptop.
> 
> 
> I did actually send a follow up email, but replied to my reply and don't 
> think it sent correctly. There's a Gentoo package for Mixxx listing 
> dependencies which may be worth checking: 
> https://packages.gentoo.org/packages/media-sound/mixxx/dependencies
> 
> 
> If you're only interested in the vinyl control element, there's also 
> PiDeck - xwax running on the RPi.  You don't really want a laptop for 
> turntabalism.  Xwax is written in C so wonder how possible it would be 
> to get running on an Elecrosmith Daisy board...or perhaps use the 
> ~vinylcontrol puredata patch based on xwax.  Anyway, don't want to stray 
> too far from Enlightenment, although I think Carsten mentioned he works 
> for Arm so still may be of some interest/relevance.
> 
> On 06/03/2023 09:31, Carsten Haitzler wrote:
> > On Sun, 5 Mar 2023 22:34:54 + (UTC) Anna Cassar via enlightenment-users
> >   said:
> >
> > as snakeyes said - maybe missing the qt5 styleplugins that allow qt to read
> > gtk themes to match look at feel of a chosen gtk theme? do other qt apps
> > (qt5 ?) look ok?
> >
> >> HiNo problem here's the drive link for my pictures.
> >> https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a
> >>
> >>
> >> The distro is Gentoo Kernel 6.1.2 and mixxx is 2.3.3.
> >> Anna
> >> Sent from Yahoo Mail on Android
> >>  
> >>    On Sun, 5 Mar 2023 at 4:13, Masaru Nomiya  wrote:
> >> Hello,
> >>
> >> In the Message;
> >>
> >>    Subject    : [e-users] Having issues getting mixxx to work
> >>    Message-ID :<1432823192.6137467.1677938229...@mail.yahoo.com>
> >>    Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)
> >>
> >> [AC] == Anna Cassar via enlightenment-users
> >>   has written:
> >>
> >> AC>  Hi I wanted to get Mixxx the dj program to run under
> >> AC>  enlightenment. I got it working under kde and xterm but when I
> >> AC>  try to run it here i get back boxes (pictures attached) and the
> >> AC>  program itself seems to have many text boxes and other things
> >> AC>  missing. I've made sure enllightenment and efl are up to date and
> >> AC>  had a quick look online to see if anyone else has had this issue
> >> AC>  with other programs but no luck yet. Also not sure if its related
> >> AC>  but sometimes when i rig

Re: [e-users] Having issues getting mixxx to work

2023-03-06 Thread Φ SNAKΣ ΣYΣZ Φ
You could try adding the below as an environment variable to 
/etc/environment and playing with the settings/themes in qt5ct


export QT_QPA_PLATFORMTHEME=qt5ct


...it's fixed things for me in the past.  Sometimes it's only certain qt 
apps that have issues.


On 06/03/2023 21:34, Anna Cassar wrote:

Hi

Thanks for sending me the other recommendations I know there are other 
great programs I could use, but I would love to get Mixxx running 
under enlightenment (and I'm interested to discover why it's not 
working). Actually as I'm about to explain, I can use mixxx under X 
using Xterm, twm etc.


https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a

As the pictures show both environments running the program. Mixxx is 
fine in plain X but under enlightenment some widgets and labels are 
missing/ incorrectly rendered.


My other qt programs such as kdenlive and vlc work perfectly fine 
under enlightenment and my qt packages are all up to date.


I've tried using qt5ct-style as the style and this changes nothing.

Also no idea if is related but when I go to screen setup settings 
after  7 seconds the dialogue boxes text labels disappear. (I've added 
this pic also to google drive.


Thanks
Anna


Sent from Yahoo Mail on Android 
<https://go.onelink.me/107872968?pid=InProduct=Global_Internal_YGrowth_AndroidEmailSig__AndroidUsers_wl=ym_sub1=Internal_sub2=Global_YGrowth_sub3=EmailSignature>


On Mon, 6 Mar 2023 at 17:27, Φ SNAKΣ ΣYΣZ Φ
 wrote:
...ok apologies; so I'm having all sorts of issues with my email
at the
moment and things aren't sending correctly :(  I'll try again from my
old laptop.


I did actually send a follow up email, but replied to my reply and
don't
think it sent correctly. There's a Gentoo package for Mixxx listing
dependencies which may be worth checking:
https://packages.gentoo.org/packages/media-sound/mixxx/dependencies


If you're only interested in the vinyl control element, there's also
PiDeck - xwax running on the RPi.  You don't really want a laptop for
turntabalism.  Xwax is written in C so wonder how possible it
would be
to get running on an Elecrosmith Daisy board...or perhaps use the
~vinylcontrol puredata patch based on xwax.  Anyway, don't want to
stray
too far from Enlightenment, although I think Carsten mentioned he
works
for Arm so still may be of some interest/relevance.

On 06/03/2023 09:31, Carsten Haitzler wrote:
> On Sun, 5 Mar 2023 22:34:54 + (UTC) Anna Cassar via
enlightenment-users
>  said:
>
> as snakeyes said - maybe missing the qt5 styleplugins that allow
qt to read gtk
> themes to match look at feel of a chosen gtk theme? do other qt
apps (qt5 ?)
> look ok?
>
>> HiNo problem here's the drive link for my pictures.
>>
https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a
>>
>>
>> The distro is Gentoo Kernel 6.1.2 and mixxx is 2.3.3.
>> Anna
>> Sent from Yahoo Mail on Android
>>
>>    On Sun, 5 Mar 2023 at 4:13, Masaru
Nomiya wrote:
    >> Hello,
>>
    >> In the Message;
>>
>>    Subject    : [e-users] Having issues getting mixxx to work
>>    Message-ID :<1432823192.6137467.1677938229...@mail.yahoo.com>
>>    Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)
>>
>> [AC] == Anna Cassar via enlightenment-users
>>  has written:
>>
>> AC>  Hi I wanted to get Mixxx the dj program to run under
>> AC>  enlightenment. I got it working under kde and xterm but when I
>> AC>  try to run it here i get back boxes (pictures attached)
and the
>> AC>  program itself seems to have many text boxes and other things
>> AC>  missing. I've made sure enllightenment and efl are up to
date and
>> AC>  had a quick look online to see if anyone else has had this
issue
>> AC>  with other programs but no luck yet. Also not sure if its
related
>> AC>  but sometimes when i right click to copy text or drop down the
>> AC>  menu i get a black box instead of the text. For this i
move the
>> AC>  mouse away and do it again is usually works but it could
be the
>> AC>  same issue, i'm unsure. Is there something i haven't
built? Mixxx
>> AC>  was first built by emerge but then i tried building from
source,
>> AC>  both have the same issue. I would love to use this under
>> AC>  enlightenment just not sure where to look next.
>>
>> Here, file attachments are prohibited and attached images are
deleted
>> from the mail.
>>
>> However, it wou

Re: [e-users] Having issues getting mixxx to work

2023-03-06 Thread Anna Cassar via enlightenment-users
Hi 
Thanks for sending me the other recommendations I know there are other great 
programs I could use, but I would love to get Mixxx running under enlightenment 
(and I'm interested to discover why it's not working). Actually as I'm about to 
explain, I can use mixxx under X using Xterm, twm etc. 
https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a

As the pictures show both environments running the program. Mixxx is fine in 
plain X but under enlightenment some widgets and labels are missing/ 
incorrectly rendered. 
My other qt programs such as kdenlive and vlc work perfectly fine under 
enlightenment and my qt packages are all up to date. 
I've tried using qt5ct-style as the style and this changes nothing. 
Also no idea if is related but when I go to screen setup settings after  7 
seconds the dialogue boxes text labels disappear. (I've added this pic also to 
google drive. 
Thanks Anna 

Sent from Yahoo Mail on Android 
 
  On Mon, 6 Mar 2023 at 17:27, Φ SNAKΣ ΣYΣZ Φ wrote:   
...ok apologies; so I'm having all sorts of issues with my email at the 
moment and things aren't sending correctly :(  I'll try again from my 
old laptop.


I did actually send a follow up email, but replied to my reply and don't 
think it sent correctly. There's a Gentoo package for Mixxx listing 
dependencies which may be worth checking: 
https://packages.gentoo.org/packages/media-sound/mixxx/dependencies


If you're only interested in the vinyl control element, there's also 
PiDeck - xwax running on the RPi.  You don't really want a laptop for 
turntabalism.  Xwax is written in C so wonder how possible it would be 
to get running on an Elecrosmith Daisy board...or perhaps use the 
~vinylcontrol puredata patch based on xwax.  Anyway, don't want to stray 
too far from Enlightenment, although I think Carsten mentioned he works 
for Arm so still may be of some interest/relevance.

On 06/03/2023 09:31, Carsten Haitzler wrote:
> On Sun, 5 Mar 2023 22:34:54 + (UTC) Anna Cassar via enlightenment-users
>   said:
>
> as snakeyes said - maybe missing the qt5 styleplugins that allow qt to read 
> gtk
> themes to match look at feel of a chosen gtk theme? do other qt apps (qt5 ?)
> look ok?
>
>> HiNo problem here's the drive link for my pictures.
>> https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a
>>
>>
>> The distro is Gentoo Kernel 6.1.2 and mixxx is 2.3.3.
>> Anna
>> Sent from Yahoo Mail on Android
>>  
>>    On Sun, 5 Mar 2023 at 4:13, Masaru Nomiya  wrote:
>> Hello,
>>
>> In the Message;
>>
>>    Subject    : [e-users] Having issues getting mixxx to work
>>    Message-ID :<1432823192.6137467.1677938229...@mail.yahoo.com>
>>    Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)
>>
>> [AC] == Anna Cassar via enlightenment-users
>>   has written:
>>
>> AC>  Hi I wanted to get Mixxx the dj program to run under
>> AC>  enlightenment. I got it working under kde and xterm but when I
>> AC>  try to run it here i get back boxes (pictures attached) and the
>> AC>  program itself seems to have many text boxes and other things
>> AC>  missing. I've made sure enllightenment and efl are up to date and
>> AC>  had a quick look online to see if anyone else has had this issue
>> AC>  with other programs but no luck yet. Also not sure if its related
>> AC>  but sometimes when i right click to copy text or drop down the
>> AC>  menu i get a black box instead of the text. For this i move the
>> AC>  mouse away and do it again is usually works but it could be the
>> AC>  same issue, i'm unsure. Is there something i haven't built? Mixxx
>> AC>  was first built by emerge but then i tried building from source,
>> AC>  both have the same issue. I would love to use this under
>> AC>  enlightenment just not sure where to look next.
>>
>> Here, file attachments are prohibited and attached images are deleted
>> from the mail.
>>
>> However, it would be better to upload the image to Google Drive and
>> provide a link to it here.
>>
>> Please indicate which distro and mixxx version you are using.
>>
>> Here is an image of mixxx 2.3.3 on Tumbleweed;
>>
>> https://drive.google.com/file/d/1ysCbh9MOj7CMz_p7SVRclYOTU5Y7B1-U/view?usp=share_link
>>
>> Regards.
>>
>> ---
>> ┏━━┓彡 野宮  賢                        mail-to: nomiya @ lake.dti.ne.jp
>> ┃\/彡
>> ┗━━┛      "A bachelor’s degree still holds prestige as a ticket to the
>>            middle class, but its value has received increasing scrutiny.
>>            In the last several years, rising tuition and student loan debt
>>            have led more Americans 

Re: [e-users] Having issues getting mixxx to work

2023-03-06 Thread Φ SNAKΣ ΣYΣZ Φ
...ok apologies; so I'm having all sorts of issues with my email at the 
moment and things aren't sending correctly :(  I'll try again from my 
old laptop.



I did actually send a follow up email, but replied to my reply and don't 
think it sent correctly. There's a Gentoo package for Mixxx listing 
dependencies which may be worth checking: 
https://packages.gentoo.org/packages/media-sound/mixxx/dependencies



If you're only interested in the vinyl control element, there's also 
PiDeck - xwax running on the RPi.  You don't really want a laptop for 
turntabalism.  Xwax is written in C so wonder how possible it would be 
to get running on an Elecrosmith Daisy board...or perhaps use the 
~vinylcontrol puredata patch based on xwax.  Anyway, don't want to stray 
too far from Enlightenment, although I think Carsten mentioned he works 
for Arm so still may be of some interest/relevance.


On 06/03/2023 09:31, Carsten Haitzler wrote:

On Sun, 5 Mar 2023 22:34:54 + (UTC) Anna Cassar via enlightenment-users
  said:

as snakeyes said - maybe missing the qt5 styleplugins that allow qt to read gtk
themes to match look at feel of a chosen gtk theme? do other qt apps (qt5 ?)
look ok?


HiNo problem here's the drive link for my pictures.
https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a


The distro is Gentoo Kernel 6.1.2 and mixxx is 2.3.3.
Anna
Sent from Yahoo Mail on Android
  
   On Sun, 5 Mar 2023 at 4:13, Masaru Nomiya  wrote:

Hello,

In the Message;

   Subject    : [e-users] Having issues getting mixxx to work
   Message-ID :<1432823192.6137467.1677938229...@mail.yahoo.com>
   Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)

[AC] == Anna Cassar via enlightenment-users
  has written:

AC>  Hi I wanted to get Mixxx the dj program to run under
AC>  enlightenment. I got it working under kde and xterm but when I
AC>  try to run it here i get back boxes (pictures attached) and the
AC>  program itself seems to have many text boxes and other things
AC>  missing. I've made sure enllightenment and efl are up to date and
AC>  had a quick look online to see if anyone else has had this issue
AC>  with other programs but no luck yet. Also not sure if its related
AC>  but sometimes when i right click to copy text or drop down the
AC>  menu i get a black box instead of the text. For this i move the
AC>  mouse away and do it again is usually works but it could be the
AC>  same issue, i'm unsure. Is there something i haven't built? Mixxx
AC>  was first built by emerge but then i tried building from source,
AC>  both have the same issue. I would love to use this under
AC>  enlightenment just not sure where to look next.

Here, file attachments are prohibited and attached images are deleted
from the mail.

However, it would be better to upload the image to Google Drive and
provide a link to it here.

Please indicate which distro and mixxx version you are using.

Here is an image of mixxx 2.3.3 on Tumbleweed;

https://drive.google.com/file/d/1ysCbh9MOj7CMz_p7SVRclYOTU5Y7B1-U/view?usp=share_link

Regards.

---
┏━━┓彡 野宮  賢                        mail-to: nomiya @ lake.dti.ne.jp
┃\/彡
┗━━┛      "A bachelor’s degree still holds prestige as a ticket to the
           middle class, but its value has received increasing scrutiny.
           In the last several years, rising tuition and student loan debt
           have led more Americans to reconsider an investment in
           postsecondary education."

                             -- Washington Post --


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users
   


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users



--

Φ SNAKΣ ΣYΣZ Φ

___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Having issues getting mixxx to work

2023-03-06 Thread Φ SNAKΣ ΣYΣZ Φ
On Monday, 6 March 2023 09:31:09 GMT Carsten Haitzler wrote:
> On Sun, 5 Mar 2023 22:34:54 + (UTC) Anna Cassar via enlightenment-users
>  said:
> 
> as snakeyes said - maybe missing the qt5 styleplugins that allow qt to read
> gtk themes to match look at feel of a chosen gtk theme? do other qt apps
> (qt5 ?) look ok?
> 
> > HiNo problem here's the drive link for my pictures. 
> > https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a
> > 
> > 
> > The distro is Gentoo Kernel 6.1.2 and mixxx is 2.3.3. 
> > Anna
> > Sent from Yahoo Mail on Android
> > 
> >   On Sun, 5 Mar 2023 at 4:13, Masaru Nomiya wrote:
> > Hello,
> > 
> > In the Message;
> > 
> >   Subject: [e-users] Having issues getting mixxx to work
> >   Message-ID : <1432823192.6137467.1677938229...@mail.yahoo.com>
> >   Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)
> > 
> > [AC] == Anna Cassar via enlightenment-users
> >  has written:
> > 
> > AC>  Hi I wanted to get Mixxx the dj program to run under
> > AC>  enlightenment. I got it working under kde and xterm but when I
> > AC>  try to run it here i get back boxes (pictures attached) and the
> > AC>  program itself seems to have many text boxes and other things
> > AC>  missing. I've made sure enllightenment and efl are up to date and
> > AC>  had a quick look online to see if anyone else has had this issue
> > AC>  with other programs but no luck yet. Also not sure if its related
> > AC>  but sometimes when i right click to copy text or drop down the
> > AC>  menu i get a black box instead of the text. For this i move the
> > AC>  mouse away and do it again is usually works but it could be the
> > AC>  same issue, i'm unsure. Is there something i haven't built? Mixxx
> > AC>  was first built by emerge but then i tried building from source,
> > AC>  both have the same issue. I would love to use this under
> > AC>  enlightenment just not sure where to look next. 
> > 
> > Here, file attachments are prohibited and attached images are deleted
> > from the mail.
> > 
> > However, it would be better to upload the image to Google Drive and
> > provide a link to it here.
> > 
> > Please indicate which distro and mixxx version you are using.
> > 
> > Here is an image of mixxx 2.3.3 on Tumbleweed;
> > 
> > https://drive.google.com/file/d/1ysCbh9MOj7CMz_p7SVRclYOTU5Y7B1-U/view?usp
> > =share_link
> > 
> > Regards.
> > 
> > ---
> > ┏━━┓彡 野宮  賢mail-to: nomiya @ lake.dti.ne.jp
> > ┃\/彡
> > ┗━━┛  "A bachelor’s degree still holds prestige as a ticket to the
> >   middle class, but its value has received increasing scrutiny.
> >   In the last several years, rising tuition and student loan debt
> >   have led more Americans to reconsider an investment in
> >   postsecondary education."
> > 
> > -- Washington Post --
> > 
> > 
> > ___
> > enlightenment-users mailing list
> > enlightenment-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-users
> > 
> > 
> > ___
> > enlightenment-users mailing list
> > enlightenment-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-users
> 
> --
> - Codito, ergo sum - "I code, therefore I am" --
> Carsten Haitzler - ras...@rasterman.com
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Having issues getting mixxx to work

2023-03-06 Thread Carsten Haitzler
On Sun, 5 Mar 2023 22:34:54 + (UTC) Anna Cassar via enlightenment-users
 said:

as snakeyes said - maybe missing the qt5 styleplugins that allow qt to read gtk
themes to match look at feel of a chosen gtk theme? do other qt apps (qt5 ?)
look ok?

> HiNo problem here's the drive link for my pictures. 
> https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a
> 
> 
> The distro is Gentoo Kernel 6.1.2 and mixxx is 2.3.3. 
> Anna
> Sent from Yahoo Mail on Android 
>  
>   On Sun, 5 Mar 2023 at 4:13, Masaru Nomiya wrote:
> Hello,
> 
> In the Message; 
> 
>   Subject    : [e-users] Having issues getting mixxx to work
>   Message-ID : <1432823192.6137467.1677938229...@mail.yahoo.com>
>   Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)
> 
> [AC] == Anna Cassar via enlightenment-users
>  has written:
> 
> AC>  Hi I wanted to get Mixxx the dj program to run under
> AC>  enlightenment. I got it working under kde and xterm but when I
> AC>  try to run it here i get back boxes (pictures attached) and the
> AC>  program itself seems to have many text boxes and other things
> AC>  missing. I've made sure enllightenment and efl are up to date and
> AC>  had a quick look online to see if anyone else has had this issue
> AC>  with other programs but no luck yet. Also not sure if its related
> AC>  but sometimes when i right click to copy text or drop down the
> AC>  menu i get a black box instead of the text. For this i move the
> AC>  mouse away and do it again is usually works but it could be the
> AC>  same issue, i'm unsure. Is there something i haven't built? Mixxx
> AC>  was first built by emerge but then i tried building from source,
> AC>  both have the same issue. I would love to use this under
> AC>  enlightenment just not sure where to look next. 
> 
> Here, file attachments are prohibited and attached images are deleted
> from the mail.
> 
> However, it would be better to upload the image to Google Drive and
> provide a link to it here.
> 
> Please indicate which distro and mixxx version you are using.
> 
> Here is an image of mixxx 2.3.3 on Tumbleweed;
> 
> https://drive.google.com/file/d/1ysCbh9MOj7CMz_p7SVRclYOTU5Y7B1-U/view?usp=share_link
> 
> Regards.
> 
> ---
> ┏━━┓彡 野宮  賢                        mail-to: nomiya @ lake.dti.ne.jp
> ┃\/彡
> ┗━━┛      "A bachelor’s degree still holds prestige as a ticket to the
>           middle class, but its value has received increasing scrutiny.
>           In the last several years, rising tuition and student loan debt
>           have led more Americans to reconsider an investment in
>           postsecondary education."
> 
>                             -- Washington Post --
> 
> 
> ___
> enlightenment-users mailing list
> enlightenment-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-users
>   
> 
> ___
> enlightenment-users mailing list
> enlightenment-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-users


-- 
- Codito, ergo sum - "I code, therefore I am" --
Carsten Haitzler - ras...@rasterman.com



___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Having issues getting mixxx to work

2023-03-05 Thread Φ SNAKΣ ΣYΣZ Φ
On Sunday, 5 March 2023 23:48:46 GMT you wrote:
> On Sunday, 5 March 2023 22:34:54 GMT Anna Cassar via enlightenment-users
> 
> wrote:
> > HiNo problem here's the drive link for my pictures.
> > https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a
> > 
> > 
> > The distro is Gentoo Kernel 6.1.2 and mixxx is 2.3.3.
> > Anna
> > Sent from Yahoo Mail on Android
> > 
> >   On Sun, 5 Mar 2023 at 4:13, Masaru Nomiya wrote:
> > Hello,
> > 
> > In the Message;
> > 
> >   Subject: [e-users] Having issues getting mixxx to work
> >   Message-ID : <1432823192.6137467.1677938229...@mail.yahoo.com>
> >   Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)
> > 
> > [AC] == Anna Cassar via enlightenment-users
> >  has written:
> > 
> > AC>  Hi I wanted to get Mixxx the dj program to run under
> > AC>  enlightenment. I got it working under kde and xterm but when I
> > AC>  try to run it here i get back boxes (pictures attached) and the
> > AC>  program itself seems to have many text boxes and other things
> > AC>  missing. I've made sure enllightenment and efl are up to date and
> > AC>  had a quick look online to see if anyone else has had this issue
> > AC>  with other programs but no luck yet. Also not sure if its related
> > AC>  but sometimes when i right click to copy text or drop down the
> > AC>  menu i get a black box instead of the text. For this i move the
> > AC>  mouse away and do it again is usually works but it could be the
> > AC>  same issue, i'm unsure. Is there something i haven't built? Mixxx
> > AC>  was first built by emerge but then i tried building from source,
> > AC>  both have the same issue. I would love to use this under
> > AC>  enlightenment just not sure where to look next.
> > 
> > Here, file attachments are prohibited and attached images are deleted
> > from the mail.
> > 
> > However, it would be better to upload the image to Google Drive and
> > provide a link to it here.
> > 
> > Please indicate which distro and mixxx version you are using.
> > 
> > Here is an image of mixxx 2.3.3 on Tumbleweed;
> > 
> > https://drive.google.com/file/d/1ysCbh9MOj7CMz_p7SVRclYOTU5Y7B1-U/view?usp
> > =s hare_link
> > 
> > Regards.
> > 
> > ---
> > ┏━━┓彡 野宮  賢mail-to: nomiya @ lake.dti.ne.jp
> > ┃\/彡
> > ┗━━┛  "A bachelor’s degree still holds prestige as a ticket to the
> > 
> >   middle class, but its value has received increasing scrutiny.
> >   In the last several years, rising tuition and student loan debt
> >   have led more Americans to reconsider an investment in
> >   postsecondary education."
> >   
> > -- Washington Post --
> > 
> > ___
> > enlightenment-users mailing list
> > enlightenment-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-users
> > 
> > 
> > ___
> > enlightenment-users mailing list
> > enlightenment-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-users
> 
> Mixxx is a QT app so maybe missing or mis-matched QT libraries that were
> there in KDE.  You could try the FlatPak or depending on what features you
> need from Mixxx, perhaps xwax - it's what Mixxx is based on, but more
> lightweight.  I guess using Gentoo you're looking for lightweight ;)
> 
> You could also take a look at AVLinux; it's well tuned for audio and based
> on MXLinux so you can remaster your setup.  GMaq (creator) has started an
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Having issues getting mixxx to work

2023-03-05 Thread Φ SNAKΣ ΣYΣZ Φ
On Sunday, 5 March 2023 22:34:54 GMT Anna Cassar via enlightenment-users 
wrote:
> HiNo problem here's the drive link for my pictures. 
> https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a
> 
> 
> The distro is Gentoo Kernel 6.1.2 and mixxx is 2.3.3. 
> Anna
> Sent from Yahoo Mail on Android
> 
>   On Sun, 5 Mar 2023 at 4:13, Masaru Nomiya wrote:  
> Hello,
> 
> In the Message;
> 
>   Subject    : [e-users] Having issues getting mixxx to work
>   Message-ID : <1432823192.6137467.1677938229...@mail.yahoo.com>
>   Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)
> 
> [AC] == Anna Cassar via enlightenment-users
>  has written:
> 
> AC>  Hi I wanted to get Mixxx the dj program to run under
> AC>  enlightenment. I got it working under kde and xterm but when I
> AC>  try to run it here i get back boxes (pictures attached) and the
> AC>  program itself seems to have many text boxes and other things
> AC>  missing. I've made sure enllightenment and efl are up to date and
> AC>  had a quick look online to see if anyone else has had this issue
> AC>  with other programs but no luck yet. Also not sure if its related
> AC>  but sometimes when i right click to copy text or drop down the
> AC>  menu i get a black box instead of the text. For this i move the
> AC>  mouse away and do it again is usually works but it could be the
> AC>  same issue, i'm unsure. Is there something i haven't built? Mixxx
> AC>  was first built by emerge but then i tried building from source,
> AC>  both have the same issue. I would love to use this under
> AC>  enlightenment just not sure where to look next. 
> 
> Here, file attachments are prohibited and attached images are deleted
> from the mail.
> 
> However, it would be better to upload the image to Google Drive and
> provide a link to it here.
> 
> Please indicate which distro and mixxx version you are using.
> 
> Here is an image of mixxx 2.3.3 on Tumbleweed;
> 
> https://drive.google.com/file/d/1ysCbh9MOj7CMz_p7SVRclYOTU5Y7B1-U/view?usp=s
> hare_link
> 
> Regards.
> 
> ---
> ┏━━┓彡 野宮  賢mail-to: nomiya @ lake.dti.ne.jp
> ┃\/彡
> ┗━━┛  "A bachelor’s degree still holds prestige as a ticket to the
>   middle class, but its value has received increasing scrutiny.
>   In the last several years, rising tuition and student loan debt
>   have led more Americans to reconsider an investment in
>   postsecondary education."
> 
> -- Washington Post --
> 
> 
> ___
> enlightenment-users mailing list
> enlightenment-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-users
> 
> 
> ___
> enlightenment-users mailing list
> enlightenment-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-users

Mixxx is a QT app so maybe missing or mis-matched QT libraries that were there 
in KDE.  You could try the FlatPak or depending on what features you need from 
Mixxx, perhaps xwax - it's what Mixxx is based on, but more lightweight.  I 
guess using Gentoo you're looking for lightweight ;)

You could also take a look at AVLinux; it's well tuned for audio and based on 
MXLinux so you can remaster your setup.  GMaq (creator) has started an 
enlightenment version as well.  You can run it in live mode and there's a 
frugal install option so quite flexible options.  Hope he creates an e16 
version :)

-- 

Φ SNAKΣ ΣYΣZ Φ




___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Having issues getting mixxx to work

2023-03-05 Thread Anna Cassar via enlightenment-users
HiNo problem here's the drive link for my pictures. 
https://drive.google.com/drive/folders/1qRJc3S8SfRyZRtP0T9Xysrxg5wxD3B6a


The distro is Gentoo Kernel 6.1.2 and mixxx is 2.3.3. 
Anna
Sent from Yahoo Mail on Android 
 
  On Sun, 5 Mar 2023 at 4:13, Masaru Nomiya wrote:   
Hello,

In the Message; 

  Subject    : [e-users] Having issues getting mixxx to work
  Message-ID : <1432823192.6137467.1677938229...@mail.yahoo.com>
  Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)

[AC] == Anna Cassar via enlightenment-users 
 has written:

AC>  Hi I wanted to get Mixxx the dj program to run under
AC>  enlightenment. I got it working under kde and xterm but when I
AC>  try to run it here i get back boxes (pictures attached) and the
AC>  program itself seems to have many text boxes and other things
AC>  missing. I've made sure enllightenment and efl are up to date and
AC>  had a quick look online to see if anyone else has had this issue
AC>  with other programs but no luck yet. Also not sure if its related
AC>  but sometimes when i right click to copy text or drop down the
AC>  menu i get a black box instead of the text. For this i move the
AC>  mouse away and do it again is usually works but it could be the
AC>  same issue, i'm unsure. Is there something i haven't built? Mixxx
AC>  was first built by emerge but then i tried building from source,
AC>  both have the same issue. I would love to use this under
AC>  enlightenment just not sure where to look next. 

Here, file attachments are prohibited and attached images are deleted
from the mail.

However, it would be better to upload the image to Google Drive and
provide a link to it here.

Please indicate which distro and mixxx version you are using.

Here is an image of mixxx 2.3.3 on Tumbleweed;

https://drive.google.com/file/d/1ysCbh9MOj7CMz_p7SVRclYOTU5Y7B1-U/view?usp=share_link

Regards.

---
┏━━┓彡 野宮  賢                        mail-to: nomiya @ lake.dti.ne.jp
┃\/彡
┗━━┛      "A bachelor’s degree still holds prestige as a ticket to the
          middle class, but its value has received increasing scrutiny.
          In the last several years, rising tuition and student loan debt
          have led more Americans to reconsider an investment in
          postsecondary education."

                            -- Washington Post --


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users
  

___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Having issues getting mixxx to work

2023-03-04 Thread Masaru Nomiya
Hello,

In the Message; 

  Subject: [e-users] Having issues getting mixxx to work
  Message-ID : <1432823192.6137467.1677938229...@mail.yahoo.com>
  Date & Time: Sat, 4 Mar 2023 13:57:09 + (UTC)

[AC] == Anna Cassar via enlightenment-users 
 has written:

AC>  Hi I wanted to get Mixxx the dj program to run under
AC>  enlightenment. I got it working under kde and xterm but when I
AC>  try to run it here i get back boxes (pictures attached) and the
AC>  program itself seems to have many text boxes and other things
AC>  missing. I've made sure enllightenment and efl are up to date and
AC>  had a quick look online to see if anyone else has had this issue
AC>  with other programs but no luck yet. Also not sure if its related
AC>  but sometimes when i right click to copy text or drop down the
AC>  menu i get a black box instead of the text. For this i move the
AC>  mouse away and do it again is usually works but it could be the
AC>  same issue, i'm unsure. Is there something i haven't built? Mixxx
AC>  was first built by emerge but then i tried building from source,
AC>  both have the same issue. I would love to use this under
AC>  enlightenment just not sure where to look next. 

Here, file attachments are prohibited and attached images are deleted
from the mail.

However, it would be better to upload the image to Google Drive and
provide a link to it here.

Please indicate which distro and mixxx version you are using.

Here is an image of mixxx 2.3.3 on Tumbleweed;

https://drive.google.com/file/d/1ysCbh9MOj7CMz_p7SVRclYOTU5Y7B1-U/view?usp=share_link

Regards.

---
┏━━┓彡 野宮  賢 mail-to: nomiya @ lake.dti.ne.jp
┃\/彡
┗━━┛   "A bachelor’s degree still holds prestige as a ticket to the
   middle class, but its value has received increasing scrutiny.
   In the last several years, rising tuition and student loan debt
   have led more Americans to reconsider an investment in
   postsecondary education."

-- Washington Post --


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] Having issues getting mixxx to work

2023-03-04 Thread Anna Cassar via enlightenment-users
Hi I wanted to get Mixxx the dj program to run under enlightenment. I got it 
working under kde and xterm but when I try to run it here i get back boxes 
(pictures attached) and the program itself seems to have many text boxes and 
other things missing. I've made sure enllightenment and efl are up to date and 
had a quick look online to see if anyone else has had this issue with other 
programs but no luck yet. Also not sure if its related but sometimes when i 
right click to copy text or drop down the menu i get a black box instead of the 
text. For this i move the mouse away and do it again is usually works but it 
could be the same issue, i'm unsure. Is there something i haven't built? Mixxx 
was first built by emerge but then i tried building from source, both have the 
same issue. I would love to use this under enlightenment just not sure where to 
look next. 
Thanks so much 
Anna

___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users