Esempio n. 1
0
void KueueWindow::showDetailedDescription( QString id, bool b )
{   
    DetailWindow* det = new DetailWindow( id, b );
    
    connect( det, SIGNAL( done( DetailWindow* ) ), 
             this, SLOT( detailWindowClosed( DetailWindow* ) ) ); 
    
    det->setWindowTitle( "Details for SR#" + id );
    det->show();
}
Esempio n. 2
0
void MainMenuHandler::new_Detail_Window(QString path){
  DetailWindow* newWin = new DetailWindow(0,path);
  newWin->setMenuBar(newMenuBar());
  newWin->show();
}