2.69 (07 Sep 2003)

- [rursu] demo use now the new Qt_help_window class instead of HelpWindow
   - [rursu] demo use new icon demoicon
This commit is contained in:
Radu Ursu 2003-09-07 11:47:39 +00:00
parent be262017fb
commit b0200d06c5
2 changed files with 11 additions and 3 deletions

View File

@ -1,7 +1,11 @@
Generator Package: Release changes:
---------------------------------------------------------------------
2.69 (07 Sep 2003)
- [rursu] demo use now the new Qt_help_window class instead of HelpWindow
- [rursu] demo use new icon demoicon
2.68 (12 Aug 2003)
- Removed unused variable name from parameter list to get rid of warning [af]
- Removed unused variable name from parameter list to get rid of warning[af]
2.67 (25 Jul 2003)
- modified the Generator doc (rursu)

View File

@ -33,8 +33,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 <CGAL/IO/pixmaps/demoicon.xpm>
#include <qplatinumstyle.h>
#include <qapplication.h>
@ -185,7 +187,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();
@ -291,6 +293,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();