Changeset 9 for psi


Ignore:
Timestamp:
Sep 5, 2006, 1:05:28 AM (18 years ago)
Author:
dmik
Message:

Tools: Added dummy OS/2 FileWatch/DirWatch, GlobalAccelManager, Idle, SystemWatch and TrayIcon class implementations.

Location:
psi/trunk/src/tools
Files:
6 added
6 edited

Legend:

Unmodified
Added
Removed
  • psi/trunk/src/tools/dirwatch/dirwatch.pri

    r2 r9  
    99                SOURCES += $$DIRWATCH_CPP/dirwatch_win.cpp
    1010        }
     11        os2: {
     12                SOURCES += $$DIRWATCH_CPP/dirwatch_pm.cpp
     13        }
    1114        mac: {
    1215                SOURCES += $$DIRWATCH_CPP/dirwatch_mac.cpp
  • psi/trunk/src/tools/globalaccel/globalaccel.pri

    r2 r9  
    88                SOURCES += $$GLOBALACCEL_CPP/globalaccelman_win.cpp
    99        }
     10        os2: {
     11                SOURCES += $$GLOBALACCEL_CPP/globalaccelman_pm.cpp
     12        }
    1013        mac: {
    1114                SOURCES += $$GLOBALACCEL_CPP/globalaccelman_mac.cpp
  • psi/trunk/src/tools/idle/idle.pri

    r2 r9  
    99                SOURCES += $$IDLE_CPP/idle_win.cpp
    1010        }
     11        os2: {
     12                SOURCES += $$IDLE_CPP/idle_pm.cpp
     13        }
    1114        mac: {
    1215                SOURCES += $$IDLE_CPP/idle_mac.cpp
  • psi/trunk/src/tools/systemwatch/systemwatch.cpp

    r2 r9  
    2424#elif defined(Q_OS_WIN32)
    2525        #include "systemwatch_win.h"
     26#elif defined(Q_WS_PM)
     27        #include "systemwatch_pm.h"
    2628#else
    2729        #include "systemwatch_unix.h"
     
    3638#elif defined(Q_WS_WIN)
    3739        impl = WinSystemWatch::instance();
     40#elif defined(Q_WS_PM)
     41        impl = PMSystemWatch::instance();
    3842#else
    3943        impl = UnixSystemWatch::instance();
  • psi/trunk/src/tools/systemwatch/systemwatch.pri

    r2 r9  
    1111                SOURCES += $$SYSTEMWATCH_CPP/systemwatch_win.cpp
    1212        }
     13        os2: {
     14                HEADERS += $$SYSTEMWATCH_CPP/systemwatch_pm.h
     15                SOURCES += $$SYSTEMWATCH_CPP/systemwatch_pm.cpp
     16        }
    1317        mac: {
    1418                HEADERS += $$SYSTEMWATCH_CPP/systemwatch_mac.h
  • psi/trunk/src/tools/trayicon/trayicon.pri

    r2 r9  
    99                SOURCES += $$TRAYICON_CPP/trayicon_win.cpp
    1010        }
     11        os2: {
     12                SOURCES += $$TRAYICON_CPP/trayicon_pm.cpp
     13        }
    1114        mac: {
    1215                SOURCES += $$TRAYICON_CPP/trayicon_mac.cpp
Note: See TracChangeset for help on using the changeset viewer.