Changeset 186 for smplayer/vendor/current/src/baseguiplus.h
- Timestamp:
- Jan 24, 2017, 12:24:46 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/baseguiplus.h
r179 r186 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); … … 117 124 #endif 118 125 126 #ifdef SEND_AUDIO_OPTION 127 void updateSendAudioMenu(); 128 void addListToSendAudioMenu(const DeviceList & audio_devices, const QString & device_name); 129 void sendAudioClicked(); 130 #endif 131 132 #ifdef CHROMECAST_SUPPORT 133 void playOnChromecast(); 134 #endif 135 119 136 #ifdef GLOBALSHORTCUTS 120 137 void updateGlobalShortcuts(); … … 129 146 MyAction * showAllAct; 130 147 148 #ifdef CHROMECAST_SUPPORT 149 MyAction * playOnChromecastAct; 150 #endif 151 131 152 #ifdef DETACH_VIDEO_OPTION 132 153 MyAction * detachVideoAct; … … 140 161 InfoWindow * screens_info_window; 141 162 QLabel * detached_label; 163 #endif 164 165 #ifdef SEND_AUDIO_OPTION 166 DeviceList audio_devices; 167 QMenu * sendAudio_menu; 168 MyAction * sendAudioAct; 142 169 #endif 143 170
Note:
See TracChangeset
for help on using the changeset viewer.