1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-10 16:14:40 +02:00

Move GnomeShortcutHandler into linux/

This commit is contained in:
Uwe L. Korn
2013-07-04 10:28:22 +02:00
parent f566618b28
commit fc4bac5bb7
8 changed files with 13 additions and 15 deletions

View File

@@ -7,7 +7,14 @@ ENDFOREACH( _file )
IF( WITH_UPOWER )
qt_add_dbus_interface(tomahawkSources "${CMAKE_CURRENT_SOURCE_DIR}/linux/org.freedesktop.UPower.xml" linux/UPowerProxy)
SET( tomahawkSources ${tomahawkSources} linux/UPowerHandler.cpp )
ENDIF( WITH_UPOWER )
IF( WITH_GNOMESHORTCUTHANDLER )
qt_add_dbus_interface(tomahawkSources "${CMAKE_CURRENT_SOURCE_DIR}/linux/GnomeSettingsDaemonMediaKeys.xml" linux/GnomeSettingsDaemonMediaKeysProxy)
SET( tomahawkSources ${tomahawkSources} linux/GnomeShortcutHandler.cpp )
ENDIF( WITH_GNOMESHORTCUTHANDLER )
ADD_SUBDIRECTORY( "${CMAKE_CURRENT_SOURCE_DIR}/linux" )
INSTALL( FILES ${CMAKE_SOURCE_DIR}/data/icons/tomahawk-icon.svg RENAME tomahawk.svg DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps )

View File

@@ -26,11 +26,6 @@ SET( tomahawkSources ${tomahawkSources}
main.cpp
)
IF( WITH_GNOMESHORTCUTHANDLER )
SET( tomahawkSources ${tomahawkSources} GnomeShortcutHandler.cpp )
qt_add_dbus_interface(tomahawkSources GnomeSettingsDaemonMediaKeys.xml GnomeSettingsDaemonMediaKeysProxy)
ENDIF( WITH_GNOMESHORTCUTHANDLER )
IF( LIBLASTFM_FOUND )
SET(tomahawkSources ${tomahawkSources}
Scrobbler.cpp

View File

@@ -87,6 +87,10 @@
#include "linux/UPowerHandler.h"
#endif
#ifdef WITH_GNOMESHORTCUTHANDLER
#include "linux/GnomeShortcutHandler.h"
#endif
#ifndef ENABLE_HEADLESS
#include <QMessageBox>
#endif
@@ -98,10 +102,6 @@
#include <sys/sysctl.h>
#endif
#ifdef WITH_GNOMESHORTCUTHANDLER
#include "GnomeShortcutHandler.h"
#endif
#include <QPluginLoader>
#include <QDir>
#include <QMetaType>

View File

@@ -1,3 +0,0 @@
IF( WITH_UPOWER )
SET( tomahawkSources ${tomahawkSources} "${CMAKE_CURRENT_SOURCE_DIR}/UPowerHandler.cpp" PARENT_SCOPE )
ENDIF( WITH_UPOWER )

View File

@@ -20,7 +20,7 @@
#define GNOMESHORTCUTHANDLER_H
#include "ShortcutHandler.h"
#include "GnomeSettingsDaemonMediaKeysProxy.h"
#include "linux/GnomeSettingsDaemonMediaKeysProxy.h"
#include <QObject>
@@ -38,7 +38,6 @@ public:
static const char* kGsdPath;
static const char* kGsdInterface;
public slots:
void RegisterFinished(QDBusPendingCallWatcher* watcher);
void GnomeMediaKeyPressed( const QString& application, const QString& key );

View File

@@ -17,8 +17,8 @@
*/
#include "accounts/AccountManager.h"
#include "UPowerHandler.h"
#include "utils/Logger.h"
#include "UPowerHandler.h"
#include <QTimer>