libemailfunctions
networkstatus.cppGo to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <kconfig.h>
00023 #include <kglobal.h>
00024 #include <kstaticdeleter.h>
00025
00026 #include <dcopref.h>
00027
00028 #include "networkstatus.h"
00029
00030 using namespace KPIM;
00031
00032 static KStaticDeleter<NetworkStatus> networkStatusDeleter;
00033 NetworkStatus *NetworkStatus::mSelf = 0;
00034
00035 NetworkStatus::NetworkStatus()
00036 : QObject( 0, "NetworkStatus" ), DCOPObject( "NetworkStatus" )
00037 {
00038 KConfigGroup group( KGlobal::config(), "NetworkStatus" );
00039 if ( group.readBoolEntry( "Online", true ) == true )
00040 mStatus = Online;
00041 else
00042 mStatus = Offline;
00043
00044 connectDCOPSignal( 0, 0, "onlineStatusChanged()", "onlineStatusChanged()", false );
00045 }
00046
00047 NetworkStatus::~NetworkStatus()
00048 {
00049 KConfigGroup group( KGlobal::config(), "NetworkStatus" );
00050 group.writeEntry( "Online", mStatus == Online );
00051 }
00052
00053 void NetworkStatus::setStatus( Status status )
00054 {
00055 mStatus = status;
00056
00057 emit statusChanged( mStatus );
00058 }
00059
00060 NetworkStatus::Status NetworkStatus::status() const
00061 {
00062 return mStatus;
00063 }
00064
00065 void NetworkStatus::onlineStatusChanged()
00066 {
00067 DCOPRef dcopCall( "kded", "networkstatus" );
00068 DCOPReply reply = dcopCall.call( "onlineStatus()", true );
00069 if ( reply.isValid() ) {
00070 int status = reply;
00071 if ( status == 3 )
00072 setStatus( Online );
00073 else {
00074 if ( mStatus != Offline )
00075 setStatus( Offline );
00076 }
00077 }
00078 }
00079
00080 NetworkStatus *NetworkStatus::self()
00081 {
00082 if ( !mSelf )
00083 networkStatusDeleter.setObject( mSelf, new NetworkStatus );
00084
00085 return mSelf;
00086 }
00087
00088 #include "networkstatus.moc"
|