예제 #1
0
파일: kueuewindow.cpp 프로젝트: bochi/kueue
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();
}
예제 #2
0
void MainMenuHandler::new_Detail_Window(QString path){
  DetailWindow* newWin = new DetailWindow(0,path);
  newWin->setMenuBar(newMenuBar());
  newWin->show();
}