Ignore:
Timestamp:
Dec 22, 2011, 6:27:52 PM (14 years ago)
Author:
Silvan Scherrer
Message:

smplayer vendor udate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/src/basegui.h

    r90 r118  
    11/*  smplayer, GUI front-end for mplayer.
    2     Copyright (C) 2006-2010 Ricardo Villalba <rvm@escomposlinux.org>
     2    Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org>
    33
    44    This program is free software; you can redistribute it and/or modify
     
    9595        virtual void helpCLOptions();
    9696        virtual void helpTips();
     97        virtual void helpDonate();
    9798        virtual void helpAbout();
    9899        virtual void helpAboutQt();
     
    224225        // Single instance stuff
    225226        // Another instance request open a file
    226         virtual void remoteOpen(QString file);
    227         virtual void remoteOpenFiles(QStringList files);
    228         virtual void remoteAddFiles(QStringList files);
    229         virtual void remoteLoadSubtitle(QString file);
     227        virtual void remoteOpen(QString);
     228        virtual void remoteOpenFiles(QStringList);
     229        virtual void remoteAddFiles(QStringList);
     230        virtual void remoteLoadSubtitle(QString);
     231        virtual void remotePlayItem(int);
     232        virtual void remoteRemoveItem(int);
     233        virtual void remoteMoveItem(int, int);
     234        virtual void remoteViewPlaylist(QString*);
     235        virtual void remoteViewStatus(QString*);
     236        virtual void remoteViewClipInfo(QString*);
     237        virtual void remoteSeek(double);
     238        virtual void remoteGetChecked(QString, QString*);
     239        virtual void remoteGetVolume(int*);
    230240
    231241        //! Called when core can't parse the mplayer version and there's no
     
    242252#endif
    243253
    244 #ifdef Q_OS_WIN
     254#if defined(Q_OS_WIN) || defined(Q_OS_OS2)
    245255        /* Disable screensaver by event */
    246256        void clear_just_stopped();
     
    404414        MyAction * decSubScaleAct;
    405415        MyAction * useAssAct;
    406         MyAction * useClosedCaptionAct;
    407416        MyAction * useForcedSubsOnlyAct;
    408417        MyAction * subVisibilityAct;
     
    413422        MyAction * showPlaylistAct;
    414423        MyAction * showPropertiesAct;
    415         MyAction * motionVectorsAct;
    416424        MyAction * showPreferencesAct;
    417425        MyAction * showLogMplayerAct;
     
    422430        MyAction * showCLOptionsAct; // Command line options
    423431        MyAction * showTipsAct;
     432        MyAction * donateAct;
    424433        MyAction * aboutQtAct;
    425434        MyAction * aboutThisAct;
     
    547556#endif
    548557
     558        // Closed Captions Group
     559        MyActionGroup * ccGroup;
     560        MyAction * ccNoneAct;
     561        MyAction * ccChannel1Act;
     562        MyAction * ccChannel2Act;
     563        MyAction * ccChannel3Act;
     564        MyAction * ccChannel4Act;
     565
     566
    549567        // Audio Channels Action Group
    550568        MyActionGroup * channelsGroup;
     
    620638        QMenu * screen_menu;
    621639#endif
     640        QMenu * closed_captions_menu;
    622641
    623642        QMenu * popup;
     
    664683        bool was_maximized;
    665684
    666 #ifdef Q_OS_WIN
     685#if defined(Q_OS_WIN) || defined(Q_OS_OS2)
    667686        /* Disable screensaver by event */
    668687        bool just_stopped;
Note: See TracChangeset for help on using the changeset viewer.