J.B. Langston

Results 43 comments of J.B. Langston

Having configuration files ending in rc is a standard convention on Unix-like systems (see for example .bashrc). Also, configuration files begin with a . so that they are hidden by...

It is most likely not possible without writing a new UI driver, at the very least. Also, the driver would have to be able to translate touch events into mouse...

Qt has support for Android, so possibly the upcoming release that uses Qt could be used as a foundation for porting to Android.

_From [[email protected]](https://code.google.com/u/104684798219220397249/) on July 17, 2009 16:41:40_ hi jb, UI sliders and tweakable dials would be able to create fractal morphology animations

The X11 driver patch is no longer relevant, since we're fully committed to Qt at this point. I will leave this open as a reminder to do something similar with...

We renamed VJ mode to Hide Messages. We may make configurable mouse pointers as a feature down the road so I am changing the title to reflect this.

Do you mean that you have added a patch to do this, or the code works as is? For rotation I would use a two fingered rotating gesture similar to...

I think your mouse driver is emulating the scroll wheel using these gestures. There is no code in XaoS yet to explicitly support gestures.

Qt has builtin support for gestures... see https://doc.qt.io/qt-5/gestures-overview.html On Mon, Mar 23, 2020 at 7:14 PM arpithindukuri wrote: > That makes sense. > > I will try and make some...

Gesture event handlers should be implemented on [FractalWidget](https://github.com/xaos-project/XaoS/blob/master/src/ui/fractalwidget.cpp) and pass the mouse buttons and coordinates to [MainWindow](https://github.com/xaos-project/XaoS/blob/master/src/ui/mainwindow.cpp#L875) XaoS code itself has no concept of gestures; you must generate the correct...