Stephen Chu writes:
> Hi List.
>
> Is there a way to get a list of currently mounted network volumes? Or
> just mounted volumes?
>
> I thought QDir::drives() is it but it returns only the root (/) on Mac
> and drive letters on Windows. I am looking to get the names of the
> server volumes.
>
I
Hi,
I downloaded qt-everywhere-opensource-src-4.7.4.tar.gz and found out
that it comes with a "lib/fonts" directory. This directory contains a
bunch of ttf, pfb and qpf files.
Are these files supposed to be installed when automatically when doing a
"make install"? I don't see any option to instal
"Tony Rietwyk" writes:
> Hi Marc,
>
> Have a look at QWidget.setMouseTracking.
>
Aaaah of course!
Thanks,
Marc
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest
Hi,
Quick question about QGraphicsScene::mouseMoveEvent(...):
I only receive a mouse move event when the left mouse button is
pressed. For example, this code:
void MyScene::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
{
qDebug() << "Scene mouse move event";
if (!something)
{
QG