Clifford Wolf:

Added Help -> OpenSCAD Homepage
	Another RELEASE_NOTES typo fix



git-svn-id: http://svn.clifford.at/openscad/trunk@445 b57f626f-c46c-0410-a088-ec61d464b74c
stl_dim
clifford 2010-02-20 10:20:18 +00:00
parent 9beb315cbb
commit 0b0aa7b9b3
4 changed files with 16 additions and 2 deletions

View File

@ -15,7 +15,7 @@ OpenSCAD 2010.02
- Added projection(cut = true/false) statement - Added projection(cut = true/false) statement
- Added child() statement for accessing child nodes of module instances - Added child() statement for accessing child nodes of module instances
- Added mirror() statement - Added mirror() statement
o Improved DXF import code (mor entities and some bugs fixed) o Improved DXF import code (more entities and some bugs fixed)
o Added feature for dumping animation as PNG files o Added feature for dumping animation as PNG files
o Added a preferences dialog o Added a preferences dialog
o Now using CGAL's delaunay tesselator o Now using CGAL's delaunay tesselator

View File

@ -141,6 +141,7 @@ public slots:
void dragEnterEvent(QDragEnterEvent *event); void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event); void dropEvent(QDropEvent *event);
void helpAbout(); void helpAbout();
void helpHomepage();
void helpManual(); void helpManual();
void quit(); void quit();
void actionReloadCompile(); void actionReloadCompile();

View File

@ -118,7 +118,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>681</width> <width>681</width>
<height>22</height> <height>25</height>
</rect> </rect>
</property> </property>
<widget class="QMenu" name="menu_File"> <widget class="QMenu" name="menu_File">
@ -219,6 +219,7 @@
<string>Help</string> <string>Help</string>
</property> </property>
<addaction name="helpActionAbout"/> <addaction name="helpActionAbout"/>
<addaction name="helpActionHomepage"/>
<addaction name="helpActionManual"/> <addaction name="helpActionManual"/>
</widget> </widget>
<addaction name="menu_File"/> <addaction name="menu_File"/>
@ -642,6 +643,11 @@
<string>Flush Caches</string> <string>Flush Caches</string>
</property> </property>
</action> </action>
<action name="helpActionHomepage">
<property name="text">
<string>OpenSCAD Homepage</string>
</property>
</action>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget> <customwidget>

View File

@ -288,6 +288,7 @@ MainWindow::MainWindow(const char *filename)
// Help menu // Help menu
connect(this->helpActionAbout, SIGNAL(triggered()), this, SLOT(helpAbout())); connect(this->helpActionAbout, SIGNAL(triggered()), this, SLOT(helpAbout()));
connect(this->helpActionHomepage, SIGNAL(triggered()), this, SLOT(helpHomepage()));
connect(this->helpActionManual, SIGNAL(triggered()), this, SLOT(helpManual())); connect(this->helpActionManual, SIGNAL(triggered()), this, SLOT(helpManual()));
@ -1767,6 +1768,12 @@ MainWindow::helpAbout()
QMessageBox::information(this, "About OpenSCAD", QString(helptitle) + QString(copyrighttext)); QMessageBox::information(this, "About OpenSCAD", QString(helptitle) + QString(copyrighttext));
} }
void
MainWindow::helpHomepage()
{
QDesktopServices::openUrl(QUrl("http://openscad.org/"));
}
void void
MainWindow::helpManual() MainWindow::helpManual()
{ {