Changeset 4476 for trunk/MagicSoft
- Timestamp:
- 08/04/04 16:22:45 (20 years ago)
- Location:
- trunk/MagicSoft/AMC/activemirrorcontrol/activemirrorcontrol
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/AMC/activemirrorcontrol/activemirrorcontrol/adjustmirrordlg.cpp
r3401 r4476 265 265 m_pMotor->switchLaser( p_zOn ); 266 266 m_pCurrentPanel->setLaserOn( p_zOn ); 267 m_mirrorWidget->toggelLaser( m_pCurrentPanel, p_zOn ); 267 268 } 268 269 catch( AMCError& e ) … … 469 470 int iRet = pDlg->exec(); 470 471 delete pDlg; 472 473 // adjustIcons(); 471 474 Laser_Check->setChecked( m_pCurrentPanel->isLaserOn() ); 472 475 enableButtons( true ); … … 495 498 pDialog->exec(); 496 499 delete pDialog; 500 adjustIcons(); 497 501 498 502 if( m_pCurrentPanel != 0 ) … … 525 529 526 530 } 531 /** No descriptions */ 532 void AdjustMirrorDlg::adjustIcons() 533 { 534 // qDebug("Global mirror object %X",g_theMirror); 535 QList<AMCMirrorPanel>& qlPanels = g_theMirror->panelList(); 536 for( AMCMirrorPanel* pActualPanel = qlPanels.first(); 537 pActualPanel; pActualPanel = qlPanels.next() ) 538 { 539 m_mirrorWidget->toggelLaser( pActualPanel, pActualPanel->isLaserOn() ); 540 } 541 } -
trunk/MagicSoft/AMC/activemirrorcontrol/activemirrorcontrol/adjustmirrordlg.h
r3401 r4476 89 89 /** show / hide video. */ 90 90 virtual void videoSlot(); 91 /** No descriptions */ 92 void adjustIcons(); 91 93 private: // Private methods 92 94 /** No descriptions */
Note:
See TracChangeset
for help on using the changeset viewer.