summaryrefslogtreecommitdiff
path: root/src/baseguiplus.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/baseguiplus.h')
-rw-r--r--src/baseguiplus.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/baseguiplus.h b/src/baseguiplus.h
index c355f07..47681ea 100644
--- a/src/baseguiplus.h
+++ b/src/baseguiplus.h
@@ -1,5 +1,5 @@
/* smplayer, GUI front-end for mplayer.
- Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net>
+ Copyright (C) 2006-2017 Ricardo Villalba <rvm@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -88,6 +88,7 @@ protected:
protected slots:
// Reimplemented methods
+ virtual void updateWidgets();
virtual void closeWindow();
virtual void setWindowCaption(const QString & title);
virtual void resizeWindow(int w, int h);
@@ -124,10 +125,14 @@ protected slots:
#ifdef SEND_AUDIO_OPTION
void updateSendAudioMenu();
- void addListToSendAudioMenu(const DeviceList & audio_devices, const QString & prefix_name, const QString & prefix_device);
+ void addListToSendAudioMenu(const DeviceList & audio_devices, const QString & device_name);
void sendAudioClicked();
#endif
+#ifdef CHROMECAST_SUPPORT
+ void playOnChromecast();
+#endif
+
#ifdef GLOBALSHORTCUTS
void updateGlobalShortcuts();
#endif
@@ -140,6 +145,10 @@ protected:
MyAction * showTrayAct;
MyAction * showAllAct;
+#ifdef CHROMECAST_SUPPORT
+ MyAction * playOnChromecastAct;
+#endif
+
#ifdef DETACH_VIDEO_OPTION
MyAction * detachVideoAct;
#endif