amarok.h
来自「Amarok是一款在LINUX或其他类UNIX操作系统中运行的音频播放器软件。 」· C头文件 代码 · 共 346 行
H
346 行
//See COPYING file for licensing information#ifndef AMAROK_H#define AMAROK_H#include <qnamespace.h>#include <qstring.h>#include <kurl.h> // recursiveUrlExpand#include <kprocio.h> //Amarok::ProcIO#include <kio/netaccess.h>#include <kdeversion.h>#include "amarok_export.h"class KActionCollection;class KConfig;class QColor;class QDateTime;class QEvent;class QMutex;class QPixmap;class QWidget;class DynamicMode;class QListView;class QListViewItem;namespace KIO { class Job; }namespace Amarok{ const int VOLUME_MAX = 100; const int SCOPE_SIZE = 9; //= 2**9 = 512 const int blue = 0x202050; const int VOLUME_SENSITIVITY = 30; //for mouse wheels const int GUI_THREAD_ID = 0; extern QMutex globalDirsMutex; // defined in app.cpp namespace ColorScheme { ///eg. base of the Amarok Player-window extern QColor Base; //Amarok::blue ///eg. text in the Amarok Player-window extern QColor Text; //Qt::white ///eg. background colour for Amarok::PrettySliders extern QColor Background; //brighter blue ///eg. outline of slider widgets in Player-window extern QColor Foreground; //lighter blue ///eg. KListView alternative row color extern QColor AltBase; //grey toned base } /** The version of the playlist XML format. Increase whenever it changes backwards-incompatibly. */ inline QString xmlVersion() { return "2.4"; } /** * Convenience function to return the KApplication instance KConfig object * pre-set to a specific group. * @param group Will pre-set the KConfig object to this group. */ /* FIXME: This function can lead to very bizarre and hard to figure bugs. While we don`t fix it properly, use it like this: amarok::config( Group )->readNumEntry( ... ) */ KConfig *config( const QString &group = "General" ); //defined in app.cpp /** * @return the KActionCollection used by Amarok * The KActionCollection is owned by the PlaylistWindow, so you must ensure * you don't try to use this before then, but we've taken steps to prevent * this eventuality - you should be safe. */ KActionCollection *actionCollection(); //defined in app.cpp /** * An event handler that handles events in a generic Amarok fashion. Mainly * useful for drops, ie offers the Amarok popup for adding tracks to the * playlist. You shouldn't pass every event here, ie closeEvents will not be * handled as expected! Check the source in app.cpp if you want to see what * it can do. * @param recipient The object that received the event. * @param e The event you want handled in a generic fashion. * @return true if the event was handled. */ bool genericEventHandler( QWidget *recipient, QEvent *e ); //defined in app.cpp /** * Invoke the external web browser set in Amarok's configuration. * @param url The URL to be opened in the browser. * @return True if the browser could be started. */ bool invokeBrowser( const QString& url ); //defined in app.cpp /** * Obtain an Amarok PNG image as a QPixmap */ QPixmap getPNG( const QString& /*fileName*/ ); //defined in app.cpp /** * Obtain an Amarok JPG image as a QPixmap */ QPixmap getJPG( const QString& /*fileName*/ ); //defined in app.cpp /** * The mainWindow is the playlistWindow or the playerWindow depending on * the configuration of Amarok */ QWidget *mainWindow(); //defined in app.cpp /** * Allocate one on the stack, and it'll set the busy cursor for you until it * is destroyed */ class OverrideCursor { //defined in app.cpp public: OverrideCursor( Qt::CursorShape cursor = Qt::WaitCursor ); ~OverrideCursor(); }; /** * For saving files to ~/.kde/share/apps/amarok/directory * @param directory will be created if not existing, you MUST end the string * with '/' */ LIBAMAROK_EXPORT QString saveLocation( const QString &directory = QString::null ); //defined in collectionreader.cpp KIO::Job *trashFiles( const KURL::List &files ); //defined in app.cpp /** * For recursively expanding the contents of a directory into a KURL::List * (playlists are ignored) */ LIBAMAROK_EXPORT KURL::List recursiveUrlExpand( const KURL &url, int maxURLs = -1 ); //defined in playlistloader.cpp LIBAMAROK_EXPORT KURL::List recursiveUrlExpand( const KURL::List &urls, int maxURLs = -1 ); //defined in playlistloader.cpp QString verboseTimeSince( const QDateTime &datetime ); //defined in contextbrowser.cpp QString verboseTimeSince( uint time_t ); //defined in contextbrowser.cpp /** * Function that must be used when separating contextBrowser escaped urls */ // defined in contextbrowser.cpp void albumArtistTrackFromUrl( QString url, QString &artist, QString &album, QString &detail ); /** * @return the LOWERCASE file extension without the preceding '.', or "" if there is none */ inline QString extension( const QString &fileName ) { return fileName.contains( '.' ) ? fileName.mid( fileName.findRev( '.' ) + 1 ).lower() : ""; } /** Transform url into a file url if possible */ inline KURL mostLocalURL( const KURL &url ) {#if KDE_VERSION < KDE_MAKE_VERSION(3,5,0) return url;#else return KIO::NetAccess::mostLocalURL( url, mainWindow() );#endif } /** * @return the last directory in @param fileName */ inline QString directory( const QString &fileName ) { return fileName.section( '/', 0, -2 ); } /** Due to xine-lib, we have to make KProcess close all fds, otherwise we get "device is busy" messages * Used by Amarok::ProcIO and Amarok::Process, exploiting commSetupDoneC(), a virtual method that * happens to be called in the forked process * See bug #103750 for more information. */ //TODO ugly hack, fix KProcess for KDE 4.0 void closeOpenFiles(int out, int in, int err); //defined in scriptmanager.cpp /** * Returns internal code for database type, DbConnection::sqlite, DbConnection::mysql, or DbConnection::postgresql * @param type either "SQLite", "MySQL", or "Postgresql". */ int databaseTypeCode( const QString type ); //defined in configdialog.cpp void setUseScores( bool use ); //defined in app.cpp void setUseRatings( bool use ); void setMoodbarPrefs( bool show, bool moodier, int alter, bool withMusic ); bool repeatNone(); //defined in actionclasses.cpp bool repeatTrack(); bool repeatAlbum(); bool repeatPlaylist(); bool randomOff(); bool randomTracks(); bool randomAlbums(); bool favorNone(); bool favorScores(); bool favorRatings(); bool favorLastPlay(); bool entireAlbums(); //repeatAlbum() || randomAlbums() const DynamicMode *dynamicMode(); //defined in playlist.cpp QListViewItem* findItemByPath( QListView *view, QString path ); //defined in playlistbrowser.cpp QStringList splitPath( QString path ); //defined in playlistbrowser.cpp /** * Creates a copy of of the KURL instance, that doesn't have any QStrings sharing memory. **/ KURL detachedKURL( const KURL &url ); //defined in metabundle.cpp /** * Maps the icon name to a system icon or custom Amarok icon, depending on the settings. */ LIBAMAROK_EXPORT QString icon( const QString& name ); //defined in iconloader.cpp /** * Removes accents from the string * @param path The original path. * @return The cleaned up path. */ LIBAMAROK_EXPORT QString cleanPath( const QString &path ); //defined in app.cpp /** * Replaces all non-ASCII characters with '_'. * @param path The original path. * @return The ASCIIfied path. */ LIBAMAROK_EXPORT QString asciiPath( const QString &path ); //defined in app.cpp /** * Transform path into one valid on VFAT file systems * @param path The original path. * @return The cleaned up path. */ LIBAMAROK_EXPORT QString vfatPath( const QString &path ); //defined in app.cpp /** * Compare both strings from left to right and remove the common part from input * @param input the string that get's cleaned. * @param ref a reference to compare input with. * @return The cleaned up string. */ LIBAMAROK_EXPORT QString decapitateString( const QString &input, const QString &ref ); /* * Transform to be usable within HTML/HTML attributes * defined in contextbrowser.cpp */ LIBAMAROK_EXPORT QString escapeHTML( const QString &s ); LIBAMAROK_EXPORT QString escapeHTMLAttr( const QString &s ); LIBAMAROK_EXPORT QString unescapeHTMLAttr( const QString &s ); /* defined in scriptmanager.cpp */ /** * Returns the proxy that should be used for a given URL. * @param url the url. * @return The url of the proxy, or a empty string if no proxy should be used. */ QString proxyForUrl(const QString& url); /** * Returns the proxy that should be used for a given protocol. * @param protocol the protocol. * @return The url of the proxy, or a empty string if no proxy should be used. */ QString proxyForProtocol(const QString& protocol); //////////////////////////////////////////////////////////////////////////////// // class Amarok::ProcIO //////////////////////////////////////////////////////////////////////////////// /** * Due to xine-lib, we have to make KProcess close all fds, otherwise we get "device is busy" messages * Used by Amarok::ProcIO and AmarokProcess, exploiting commSetupDoneC(), a virtual method that * happens to be called in the forked process * See bug #103750 for more information. */ class LIBAMAROK_EXPORT ProcIO : public KProcIO { public: ProcIO(); // ctor sets the textcodec to UTF-8, in scriptmanager.cpp virtual int commSetupDoneC() { const int i = KProcIO::commSetupDoneC(); Amarok::closeOpenFiles( KProcIO::out[0],KProcIO::in[0],KProcIO::err[0] ); return i; }; }; //////////////////////////////////////////////////////////////////////////////// // class Amarok::Process //////////////////////////////////////////////////////////////////////////////// /** Due to xine-lib, we have to make KProcess close all fds, otherwise we get "device is busy" messages * Used by Amarok::ProcIO and Amarok::Process, exploiting commSetupDoneC(), a virtual method that * happens to be called in the forked process * See bug #103750 for more information. */ class LIBAMAROK_EXPORT Process : public KProcess { public: Process( QObject *parent = 0 ) : KProcess( parent ) {} virtual int commSetupDoneC() { const int i = KProcess::commSetupDoneC(); Amarok::closeOpenFiles(KProcess::out[0],KProcess::in[0], KProcess::err[0]); return i; }; };}/** * Use this to const-iterate over QStringLists, if you like. * Watch out for the definition of last in the scope of your for. * * QStringList strings; * foreach( strings ) * debug() << *it << endl; */#define foreach( x ) \ for( QStringList::ConstIterator it = x.begin(), end = x.end(); it != end; ++it )/** * You can use this for lists that aren't QStringLists. * Watch out for the definition of last in the scope of your for. * * BundleList bundles; * foreachType( BundleList, bundles ) * debug() << *it.url() << endl; */#define foreachType( Type, x ) \ for( Type::ConstIterator it = x.begin(), end = x.end(); it != end; ++it )/** * Creates iterators of type @p Type. * Watch out for the definitions of last and end in your scope. * * BundleList bundles; * for( for_iterators( BundleList, bundles ); it != end; ++it ) * debug() << *it.url() << endl; */#define for_iterators( Type, x ) \ Type::ConstIterator it = x.begin(), end = x.end(), last = x.fromLast()/// Update this when necessary#define APP_VERSION "1.4.9.1"#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?