some more stuff added to musrgui

This commit is contained in:
nemu
2009-03-01 19:51:46 +00:00
parent dc38de5471
commit 0505aba5af
10 changed files with 689 additions and 25 deletions

View File

@@ -229,6 +229,11 @@ void PTextEdit::setupMusrActions()
a->addTo( tb );
a->addTo( menu );
a = new QAction( QPixmap::fromMimeSource( "musrmlog2db.xpm" ), tr( "&Mlog2dB" ), ALT + Key_M, this, "musrMlog2Db" );
connect( a, SIGNAL( activated() ), this, SLOT( musrMlog2Db() ) );
a->addTo( tb );
a->addTo( menu );
menu->insertSeparator();
a = new QAction( QPixmap::fromMimeSource( "musrview.xpm" ), tr( "&View" ), ALT + Key_V, this, "musrView" );
@@ -770,6 +775,20 @@ void PTextEdit::musrFit()
fitOutputHandler.exec();
}
//----------------------------------------------------------------------------------------------------
/**
* <p>
*/
void PTextEdit::musrMlog2Db()
{
if ( !currentEditor() )
return;
QMessageBox::information( this, "musrMlog2Db",
"Will call mlog2db.\n"
"NOT IMPLEMENTED YET :-(" );
}
//----------------------------------------------------------------------------------------------------
/**
* <p>