You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amarok/amarok/src/medium.h

105 lines
3.8 KiB

/* This file is part of the KDE Project
Copyright (c) 2004 K<>in Ottens <ervin ipsquad net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef _MEDIUM_H_
#define _MEDIUM_H_
#include "amarok_export.h"
#include <tqstring.h>
#include <tqstringlist.h>
#include <kurl.h>
class LIBAMAROK_EXPORT Medium
{
public:
typedef TQValueList<Medium> List;
static const uint AUTODETECTED = 0;
static const uint ID = 1;
static const uint NAME = 2;
static const uint LABEL = 3;
static const uint USER_LABEL = 4;
static const uint MOUNTABLE = 5;
static const uint DEVICE_NODE = 6;
static const uint MOUNT_POINT = 7;
static const uint FS_TYPE = 8;
static const uint MOUNTED = 9;
static const uint BASE_URL = 10;
static const uint MIME_TYPE = 11;
static const uint ICON_NAME = 12;
static const uint ENCRYPTED = 13;
static const uint CLEAR_DEVICE_UDI = 14;
static const uint PROPERTIES_COUNT = 15;
static const TQString SEPARATOR;
Medium();
Medium(const Medium *medium);
Medium(const TQString &id, const TQString &name);
static const Medium create(const TQStringList &properties);
static List createList(const TQStringList &properties);
const TQStringList &properties() const { return m_properties; };
bool isAutodetected() const { return m_properties[AUTODETECTED]=="true"; };
TQString id() const { return m_properties[ID]; };
TQString name() const { return m_properties[NAME]; };
TQString label() const { return m_properties[LABEL]; };
TQString userLabel() const { return m_properties[USER_LABEL]; };
bool isMountable() const { return m_properties[MOUNTABLE]=="true"; };
TQString deviceNode() const { return m_properties[DEVICE_NODE]; };
TQString mountPoint() const { return m_properties[MOUNT_POINT]; };
TQString fsType() const { return m_properties[FS_TYPE]; };
bool isMounted() const { return m_properties[MOUNTED]=="true"; };
TQString baseURL() const { return m_properties[BASE_URL]; };
TQString mimeType() const { return m_properties[MIME_TYPE]; };
TQString iconName() const { return m_properties[ICON_NAME]; };
bool isEncrypted() const { return m_properties[ENCRYPTED]=="true"; };
TQString clearDeviceUdi() const { return m_properties[CLEAR_DEVICE_UDI]; };
bool needMounting() const;
KURL prettyBaseURL() const;
TQString prettyLabel() const;
void setAutodetected(bool autodetected);
void setId(const TQString &id);
void setMountPoint(const TQString &mountPoint);
void setName(const TQString &name);
void setLabel(const TQString &label);
void setUserLabel(const TQString &label);
void setFsType(const TQString &type);
bool mountableState(bool mounted);
void mountableState(const TQString &deviceNode,
const TQString &mountPoint,
const TQString &fsType, bool mounted);
void unmountableState(const TQString &baseURL = TQString());
void setMimeType(const TQString &mimeType);
void setIconName(const TQString &iconName);
private:
void loadUserLabel();
TQStringList m_properties;
friend class TQValueListNode<const Medium>;
};
#endif