Changeset 188 for smplayer/trunk/src/baseguiplus.h
- Timestamp:
- Jan 24, 2017, 12:41:54 PM (8 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 186
- Property svn:mergeinfo changed
-
smplayer/trunk/src/baseguiplus.h
r182 r188 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 6Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2017 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 28 28 #define SCREENS_SUPPORT 29 29 //#define DETACH_VIDEO_OPTION 30 31 #define SEND_AUDIO_OPTION 32 33 #ifdef SEND_AUDIO_OPTION 34 #include "deviceinfo.h" 35 #endif 30 36 31 37 class QMenu; … … 83 89 protected slots: 84 90 // Reimplemented methods 91 virtual void updateWidgets(); 85 92 virtual void closeWindow(); 86 93 virtual void setWindowCaption(const QString & title); … … 120 127 #endif 121 128 129 #ifdef SEND_AUDIO_OPTION 130 void updateSendAudioMenu(); 131 void addListToSendAudioMenu(const DeviceList & audio_devices, const QString & device_name); 132 void sendAudioClicked(); 133 #endif 134 135 #ifdef CHROMECAST_SUPPORT 136 void playOnChromecast(); 137 #endif 138 122 139 #ifdef GLOBALSHORTCUTS 123 140 void updateGlobalShortcuts(); … … 132 149 MyAction * showAllAct; 133 150 151 #ifdef CHROMECAST_SUPPORT 152 MyAction * playOnChromecastAct; 153 #endif 154 134 155 #ifdef DETACH_VIDEO_OPTION 135 156 MyAction * detachVideoAct; … … 143 164 InfoWindow * screens_info_window; 144 165 QLabel * detached_label; 166 #endif 167 168 #ifdef SEND_AUDIO_OPTION 169 DeviceList audio_devices; 170 QMenu * sendAudio_menu; 171 MyAction * sendAudioAct; 145 172 #endif 146 173
Note:
See TracChangeset
for help on using the changeset viewer.