1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
asuraven a2176e6524 0031570: Samples - add Qt samples similar to standard MFC samples
Added Qt sample OCCTOverview providing examples of use of OCCT API with relevant code and demonstration of results in the viewer.

Off-topic: some unused images are removed from dox/introduction/images/
2020-10-06 20:40:23 +03:00

59 lines
2.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Qt OCCT Overview samples {#samples_qt_overview}
==========
1. Contents
-----------------------
The directory <i> samples/qt/OCCTOverview </i> contains the folders and files of the Qt OCCT Overview application:
* Files **OCCTOverview.pro** and **OCCTOverview0.pro** are Qt project files.
* File **genproj.bat** to denerate MS Visual Studio project.
* File **msvc.bat** to run MS Visual Studio project.
* File **make.sh** to build of the application on Linux.
* Files **run.bat** and **run.sh** to runn the application.
* Files **env.bat** and **custom.bat** are called from *genproj.bat*, *msvc.bat*, *run.bat*.
File *custom.bat* should be defined by user to provide paths to QT directory and OCCT installation directory (see *custom.bat.template*).
* **src** and **res** directories provide source and resources files.
The directory <i> samples/OCCTOverview/code </i> contains the source code of samples.
2. How to build Qt OCCT Overview application
---------------------------------
* Edit custom.bat file. It is necessary to define following variables:
* **QTDIR** path to where Qt is installed
* **CASROOT** path to where Open CASCADE binaries are installed.
* Build the application:
* On Windows:
* Generate project files: `> genproj.bat vc141 win64 Debug`
* Launch MS Visual Studio: `> msvc.bat vc141 win64 Debug`
* Build the application using MS Visual Studio.
* On Linux: Launch building of the application by make.sh script
3. Running the application
--------------------------
* On Windows:
~~~~
> run.bat vc141 win64 Debug
~~~~
* On Linux:
~~~~
> run.sh
~~~~
4. How to use the OCCT Overview application:
---------------------------------
* To select a samples categogy use the *Category* menu.
* To run concrete sample using the menu to the right of the category menu.
* See on a souce code in the *Sample code* window. Сopy the code if needed.
* See on a sample output in the *Output* window if it exist.
* Zoom, pan and rotate a geometry in the mail window using the mouse.
See hints how to use the mouse in down hints panel.