Changeset 173 in tspsg-svn


Ignore:
Timestamp:
May 30, 2011, 11:33:23 AM (13 years ago)
Author:
laleppa
Message:
  • Added translucency (composition) support detection under X11.
  • Fixed forgotten 2007-2010 to 2007-2011 in .dox files.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/dox/changelog.dox

    r170 r173  
    11/*! \page changelog TSPSG ChangeLog
    22
    3 \author Copyright &copy; 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
     3\author Copyright &copy; 2007-2011 Lёppa <contacts[at]oleksii[dot]name>
    44$Id$
    55$URL$
  • trunk/docs/dox/install.dox

    r145 r173  
    11/*! \page install TSPSG Installation Guide
    22
    3 \author Copyright &copy; 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
     3\author Copyright &copy; 2007-2011 Lёppa <contacts[at]oleksii[dot]name>
    44$Id$
    55$URL$
  • trunk/docs/dox/mainpage.dox

    r170 r173  
    77\image html tspsg.png
    88<b>TSPSG: TSP Solver and Generator</b>
    9 \author Copyright &copy; 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
     9\author Copyright &copy; 2007-2011 Lёppa <contacts[at]oleksii[dot]name>
    1010
    1111\b Homepage: <a href="http://tspsg.info/">tspsg.info</a>
  • trunk/src/qtwin.cpp

    r150 r173  
    1515#include <QPointer>
    1616
     17#ifdef Q_WS_X11
     18#include <QX11Info>
     19#endif // Q_WS_X11
     20
    1721#ifdef Q_WS_WIN
    1822
     
    104108    }
    105109    return false;
    106 #elif !defined(HANDHELD)
     110#elif defined(Q_WS_X11)
     111    return QX11Info::isCompositingManagerRunning();
     112#else
    107113    //! \todo TODO: Check for trsnsparency support in other OSes.
    108     return true;
    109 #else
    110114    return false;
    111115#endif
Note: See TracChangeset for help on using the changeset viewer.