Ignore:
Timestamp:
Jan 24, 2017, 12:41:54 PM (8 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update trunk to version 17.1.0

Location:
smplayer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • smplayer/trunk

  • smplayer/trunk/src/baseguiplus.h

    r182 r188  
    11/*  smplayer, GUI front-end for mplayer.
    2     Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net>
     2    Copyright (C) 2006-2017 Ricardo Villalba <rvm@users.sourceforge.net>
    33
    44    This program is free software; you can redistribute it and/or modify
     
    2828#define SCREENS_SUPPORT
    2929//#define DETACH_VIDEO_OPTION
     30
     31#define SEND_AUDIO_OPTION
     32
     33#ifdef SEND_AUDIO_OPTION
     34#include "deviceinfo.h"
     35#endif
    3036
    3137class QMenu;
     
    8389protected slots:
    8490        // Reimplemented methods
     91        virtual void updateWidgets();
    8592        virtual void closeWindow();
    8693        virtual void setWindowCaption(const QString & title);
     
    120127#endif
    121128
     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
    122139#ifdef GLOBALSHORTCUTS
    123140        void updateGlobalShortcuts();
     
    132149        MyAction * showAllAct;
    133150
     151#ifdef CHROMECAST_SUPPORT
     152        MyAction * playOnChromecastAct;
     153#endif
     154
    134155#ifdef DETACH_VIDEO_OPTION
    135156        MyAction * detachVideoAct;
     
    143164        InfoWindow * screens_info_window;
    144165        QLabel * detached_label;
     166#endif
     167
     168#ifdef SEND_AUDIO_OPTION
     169        DeviceList audio_devices;
     170        QMenu * sendAudio_menu;
     171        MyAction * sendAudioAct;
    145172#endif
    146173
Note: See TracChangeset for help on using the changeset viewer.