?? akode-engine.h
字號(hào):
/*************************************************************************** * Copyright (C) 2005 Max Howell <max.howell@methylblue.com> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/#include "enginebase.h"#include "akode-scope.h"namespace aKode { class Player; }class AkodeEngine : public Engine::Base{ virtual bool init(); virtual bool canDecode( const KURL& ) const; virtual uint position() const; virtual bool load( const KURL&, bool ); virtual bool play( uint ); virtual void stop(); virtual void pause(); virtual void unpause(); virtual void setVolumeSW( uint ); virtual void seek( uint ); virtual Engine::State state() const; virtual const Engine::Scope &scope(); virtual bool event( QEvent* ); aKode::Player *m_player; aKodeScope m_scope;protected: ~AkodeEngine();public: AkodeEngine();};
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -