[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bino-list] Add option --disable-qt
From: |
Martin Lambers |
Subject: |
Re: [Bino-list] Add option --disable-qt |
Date: |
Sun, 18 Sep 2011 14:02:59 +0200 |
User-agent: |
Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.21) Gecko/20110831 Thunderbird/3.1.13 |
Hi Robert!
On 18/09/11 13:39, Robert Pliszko wrote:
> Is it possible to add option "--disable-qt" to configure?
> This option should to make bino player without gui (only command line),
> and without any dependencies of qt libraries.
It is possible but would require some work, because Qt is currently used
even in non-GUI mode: it provides the OpenGL window and context.
Other libraries could be used for that purpose; freeglut would probably
be the most basic one, but you could also use GTK or wxWidgets or FLTK
or basic X11/GLX or whatever you like.
Currently video_output.* already contains the toolkit-independent parts
of the video output code, and video_output_qt.* implements the
toolkit-dependent parts using Qt. You could provide e.g.
video_output_glut.* as an alternative to video_output_qt.*.
The first versions of Bino used freeglut instead of Qt, so if you want
to use freeglut you would already have a starting point.
Martin