00001 #ifndef VIDEOPLAYERCOMMAND_H_ 00002 #define VIDEOPLAYERCOMMAND_H_ 00003 00004 class VideoPlayerCommand 00005 { 00006 public: 00007 static VideoPlayerCommand PlayerFor(const class VideoMetadata *item); 00008 static VideoPlayerCommand PlayerFor(const QString &filename); 00009 static VideoPlayerCommand AltPlayerFor(const class VideoMetadata *item); 00010 00011 public: 00012 VideoPlayerCommand(); 00013 ~VideoPlayerCommand(); 00014 00015 VideoPlayerCommand(const VideoPlayerCommand &other); 00016 VideoPlayerCommand &operator=(const VideoPlayerCommand &rhs); 00017 00018 void Play() const; 00019 00021 QString GetCommandDisplayName() const; 00022 00023 private: 00024 class VideoPlayerCommandPrivate *m_d; 00025 }; 00026 00027 #endif // PLAYERCOMMAND_H_
1.6.3