Version 3.46 (08 September 2003) [rursu]

- demo use now the new help class Qt_help_window instead of HelpWindow
- demo use the new demo icon demoicon
This commit is contained in:
Radu Ursu 2003-09-08 09:15:42 +00:00
parent 1bfbb587e2
commit dc423eaf1e
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Version 3.46 (08 September 2003) [rursu]
- demo use now the new help class Qt_help_window instead of HelpWindow
- demo use the new demo icon demoicon
Version 3.38 (2 August 2003) [af]
- Removed template <> in example/Kdtree_example_3.C

View File

@ -31,9 +31,10 @@ int main(int, char*){
#include <CGAL/IO/Qt_widget.h>
#include <CGAL/IO/Qt_widget_standard_toolbar.h>
#include <CGAL/IO/Qt_widget_helpwindow.h>
#include <CGAL/IO/Qt_help_window.h>
#include <CGAL/IO/Qt_widget_layer.h>
#include "spatial_searching_toolbar.h"
#include <CGAL/IO/pixmaps/demoicon.xpm>
#include <qapplication.h>
#include <qmainwindow.h>
@ -229,7 +230,7 @@ private slots:
void howto(){
QString home;
home = "help/index.html";
HelpWindow *help = new HelpWindow(home, ".", 0, "help viewer");
Qt_help_window *help = new Qt_help_window(home, ".", 0, "help viewer");
help->resize(400, 400);
help->setCaption("Demo HowTo");
help->show();
@ -318,6 +319,8 @@ main(int argc, char **argv)
app.setMainWidget(&widget);
widget.setCaption(my_title_string);
widget.setMouseTracking(TRUE);
QPixmap cgal_icon = QPixmap((const char**)demoicon_xpm);
widget.setIcon(cgal_icon);
widget.show();
current_state = -1;
return app.exec();