Changeset 118 for smplayer/vendor/current/src/basegui.h
- Timestamp:
- Dec 22, 2011, 6:27:52 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/basegui.h
r90 r118 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 0Ricardo Villalba <rvm@escomposlinux.org>2 Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 95 95 virtual void helpCLOptions(); 96 96 virtual void helpTips(); 97 virtual void helpDonate(); 97 98 virtual void helpAbout(); 98 99 virtual void helpAboutQt(); … … 224 225 // Single instance stuff 225 226 // 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*); 230 240 231 241 //! Called when core can't parse the mplayer version and there's no … … 242 252 #endif 243 253 244 #if def Q_OS_WIN254 #if defined(Q_OS_WIN) || defined(Q_OS_OS2) 245 255 /* Disable screensaver by event */ 246 256 void clear_just_stopped(); … … 404 414 MyAction * decSubScaleAct; 405 415 MyAction * useAssAct; 406 MyAction * useClosedCaptionAct;407 416 MyAction * useForcedSubsOnlyAct; 408 417 MyAction * subVisibilityAct; … … 413 422 MyAction * showPlaylistAct; 414 423 MyAction * showPropertiesAct; 415 MyAction * motionVectorsAct;416 424 MyAction * showPreferencesAct; 417 425 MyAction * showLogMplayerAct; … … 422 430 MyAction * showCLOptionsAct; // Command line options 423 431 MyAction * showTipsAct; 432 MyAction * donateAct; 424 433 MyAction * aboutQtAct; 425 434 MyAction * aboutThisAct; … … 547 556 #endif 548 557 558 // Closed Captions Group 559 MyActionGroup * ccGroup; 560 MyAction * ccNoneAct; 561 MyAction * ccChannel1Act; 562 MyAction * ccChannel2Act; 563 MyAction * ccChannel3Act; 564 MyAction * ccChannel4Act; 565 566 549 567 // Audio Channels Action Group 550 568 MyActionGroup * channelsGroup; … … 620 638 QMenu * screen_menu; 621 639 #endif 640 QMenu * closed_captions_menu; 622 641 623 642 QMenu * popup; … … 664 683 bool was_maximized; 665 684 666 #if def Q_OS_WIN685 #if defined(Q_OS_WIN) || defined(Q_OS_OS2) 667 686 /* Disable screensaver by event */ 668 687 bool just_stopped;
Note:
See TracChangeset
for help on using the changeset viewer.