summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/linux/opcmciasystem.cpp15
-rw-r--r--libopie2/opiecore/linux/opcmciasystem.h9
2 files changed, 23 insertions, 1 deletions
diff --git a/libopie2/opiecore/linux/opcmciasystem.cpp b/libopie2/opiecore/linux/opcmciasystem.cpp
index c4b5316..c310b85 100644
--- a/libopie2/opiecore/linux/opcmciasystem.cpp
+++ b/libopie2/opiecore/linux/opcmciasystem.cpp
@@ -173,16 +173,24 @@ QString OPcmciaSocket::identity() const
return ( strcmp( name(), "empty" ) == 0 ) ? "<Empty Socket>" : name();
}
+bool OPcmciaSocket::isUnsupported() const
+{
+ return ( strcmp( name(), "unsupported card" ) == 0 );
+}
+
+
bool OPcmciaSocket::isEmpty() const
{
return ( strcmp( name(), "empty" ) == 0 );
}
bool OPcmciaSocket::isSuspended() const
{
+ //FIXME
+ return false;
}
bool OPcmciaSocket::eject()
{
@@ -200,6 +208,11 @@ bool OPcmciaSocket::suspend()
}
bool OPcmciaSocket::resume()
{
- return command( "resume ");
+ return command( "resume");
+}
+
+bool OPcmciaSocket::reset()
+{
+ return command( "reset");
}
diff --git a/libopie2/opiecore/linux/opcmciasystem.h b/libopie2/opiecore/linux/opcmciasystem.h
index 4b445aa..630a434 100644
--- a/libopie2/opiecore/linux/opcmciasystem.h
+++ b/libopie2/opiecore/linux/opcmciasystem.h
@@ -123,8 +123,12 @@ class OPcmciaSocket : public QObject
* @returns the identification string of the card in this socket, or "<Empty Socket>"
*/
QString identity() const;
/**
+ * @returns true, if the card is unsupported by the cardmgr
+ */
+ bool isUnsupported() const;
+ /**
* @returns true, if the socket is empty
*/
bool isEmpty() const;
/**
@@ -150,8 +154,13 @@ class OPcmciaSocket : public QObject
* Resume card. @returns true, if operation succeeded
* @note: This operation needs root privileges
*/
bool resume();
+ /**
+ * Reset card. @returns true, if operation succeeded
+ * @note: This operation needs root privileges
+ */
+ bool reset();
protected:
private: