added two slot for better managing the exit from editing tools

This commit is contained in:
Paolo Cignoni cignoni 2008-01-16 01:39:55 +00:00
parent ee98b0be93
commit e2741b0679
2 changed files with 18 additions and 1 deletions

View File

@ -23,6 +23,9 @@
/****************************************************************************
History
$Log$
Revision 1.96 2008/01/16 01:39:54 cignoni
added two slot for better managing the exit from editing tools
Revision 1.95 2008/01/04 00:46:28 cignoni
Changed the decoration framework. Now it accept a, global, parameter set. Added static calls for finding important directories in a OS independent way.
@ -195,7 +198,9 @@ public slots:
bool openIn(QString fileName=QString());
bool openProject(QString fileName=QString(), GLArea *gla=0);
void saveProject();
void setCurrent(int meshId);
void setCurrent(int meshId);
void updateGL();
void endEdit();
private slots:

View File

@ -24,6 +24,9 @@
History
$Log$
Revision 1.145 2008/01/16 01:39:55 cignoni
added two slot for better managing the exit from editing tools
Revision 1.144 2008/01/06 20:45:11 cignoni
busy cursor when saving
@ -372,6 +375,15 @@ void MainWindow::setCurrent(int meshId)
stddialog->hide();
}
void MainWindow::updateGL()
{
GLA()->updateGL();
}
void MainWindow::endEdit()
{
GLA()->endEdit();
}
void MainWindow::applyLastFilter()
{
if(GLA()==0) return;