KClassicGreeter::KClassicGreeter( KGreeterPluginHandler *_handler, KdmThemer *themer, QWidget *parent, QWidget *pred, const QString &_fixedEntity, Function _func, Context _ctx ) : QObject(), KGreeterPlugin( _handler ), fixedUser( _fixedEntity ), func( _func ), ctx( _ctx ), exp( -1 ), pExp( -1 ), running( false ) { KdmItem *user_entry = 0, *pw_entry = 0; QGridLayout *grid = 0; int line = 0; layoutItem = 0; if (themer && (!(user_entry = themer->findNode( "user-entry" )) || !(pw_entry = themer->findNode( "pw-entry" )))) themer = 0; if (!themer) layoutItem = grid = new QGridLayout( 0, 0, 10 ); loginLabel = passwdLabel = passwd1Label = passwd2Label = 0; loginEdit = 0; passwdEdit = passwd1Edit = passwd2Edit = 0; if (ctx == ExUnlock || ctx == ExChangeTok) fixedUser = KUser().loginName(); if (func != ChAuthTok) { if (fixedUser.isEmpty()) { loginEdit = new KLineEdit( parent ); loginEdit->setContextMenuEnabled( false ); connect( loginEdit, SIGNAL(lostFocus()), SLOT(slotLoginLostFocus()) ); connect( loginEdit, SIGNAL(lostFocus()), SLOT(slotActivity()) ); connect( loginEdit, SIGNAL(textChanged( const QString & )), SLOT(slotActivity()) ); connect( loginEdit, SIGNAL(selectionChanged()), SLOT(slotActivity()) ); if (pred) { parent->setTabOrder( pred, loginEdit ); pred = loginEdit; } if (!grid) { loginEdit->adjustSize(); user_entry->setWidget( loginEdit ); } else { loginLabel = new QLabel( loginEdit, i18n("&Username:"******"Username:"******"&Password:"******"Current &password:"******"&New password:"******"Con&firm password:"), parent ); if (pred) { parent->setTabOrder( pred, passwd1Edit ); parent->setTabOrder( passwd1Edit, passwd2Edit ); } if (grid) { grid->addWidget( passwd1Label, line, 0 ); grid->addWidget( passwd1Edit, line++, 1 ); grid->addWidget( passwd2Label, line, 0 ); grid->addWidget( passwd2Edit, line, 1 ); } if (!passwdEdit) passwd1Edit->setFocus(); } }
void CDeviceDetailView::enableContent() { if( poOverlayObject ) { pqPushButtonEdit->setEnabled( true ); pqPushButtonDelete->setEnabled( true ); pqPushButtonStop->setEnabled( true ); pqPushButtonPause->setEnabled( true ); pqPushButtonStart->setEnabled( true ); QObject::connect( (CDevice*)poOverlayObject, SIGNAL( signalOperatingMode(CDevice::EOperatingMode) ), this, SLOT( slotOperatingMode(CDevice::EOperatingMode) ) ); QObject::connect( (CDevice*)poOverlayObject, SIGNAL( signalActivity() ), this, SLOT( slotActivity() ) ); bIgnoreUpdate = false; } }
void MotionAwayPlugin::slotCapture() { /* Should go on forever... emphasis on 'should' */ if ( getImage ( m_deviceHandler, m_imageNew, m_width, m_height, IN_DEFAULT, NORM_DEFAULT, VIDEO_PALETTE_RGB24) == m_width * m_height *3 ) { int diffs = 0; if ( m_tookFirst ) { /* Make a differences picture in image_out */ for (int i=0; i< m_width * m_height * 3 ; i++) { m_imageOut[i]= m_imageOld[i]- m_imageNew[i]; if ((signed char)m_imageOut[i] > 32 || (signed char)m_imageOut[i] < -32) { m_imageOld[i] = m_imageNew[i]; diffs++; } else { m_imageOut[i] = 0; } } } else { /* First picture: new image is now the old */ for (int i=0; i< m_width * m_height * 3; i++) m_imageOld[i] = m_imageNew[i]; } /* The cat just walked in :) */ if (diffs > m_maxChanges) { kdDebug(14305) << k_funcinfo << "Motion Detected. [" << diffs << "] Reseting Timeout" << endl; /* If we were away, now we are available again */ if ( becomeAvailableWithActivity && !Kopete::Away::globalAway() && m_wentAway) { slotActivity(); } /* We reset the away timer */ m_awayTimer->stop(); m_awayTimer->start( awayTimeout * 60 * 1000 ); } /* Old image slowly decays, this will make it even harder on slow moving object to stay undetected */ /* for (i=0; i<m_width*m_height*3; i++) { image_ref[i]=(image_ref[i]+image_new[i])/2; } */ } else { m_captureTimer->stop(); } }