Open CASCADE学习|视图

目录

Mainwin.h

Mainwin.cpp


Mainwin.h

复制代码
​#pragma once#include <QtWidgets/QMainWindow>#include "Displaywin.h"#include "OCC.h"class Mainwin : public QMainWindow{  Q_OBJECTpublic:  Mainwin(QWidget* parent = nullptr);  ~Mainwin();​private:  Mainwin* Mui;  Displaywin* Dui;​private:  QMenu* fliemenuBar;  QAction* openstepfileaction;  QMenu* drawmenuBar;  QAction* drawboxaction;  QAction* drawbottleaction;  QAction* drawhelixaction;  QMenu* viewenuBar;  QAction* viewfrontaction;  QAction* viewbackaction;  QAction* viewtopaction;  QAction* viewbottomaction;  QAction* viewleftaction;  QAction* viewrightaction;  QAction* viewaxoaction;  QAction* viewresetaction;  QAction* viewfitallaction;  QAction* viewfitareaaction;  QAction* viewzoomaction;​private:  void InitAction();  void InitMenu();private:  OCC occ;private slots:  void trigeropenfile();​  void trigerdrawbox();  void trigerdrawbottle();  void trigerdrawhelix();​  void trigerviewfront();  void trigerviewback();  void trigerviewtop();  void trigerviewbottom();  void trigerviewleft();  void trigerviewright();  void trigerviewaxo();  void trigerviewreset();  void trigerfitall();  void trigerfitarea();  void trigerzoom();};

Mainwin.cpp

cpp 复制代码
#include "Mainwin.h"
#include<QMenu>
#include<QMenuBar>
#include <QMessageBox>
#include<QFileDialog>
Mainwin::Mainwin(QWidget* parent)
    : QMainWindow(parent)
{
    setWindowTitle(tr("my draw"));
    resize(500, 500);
​
    Dui = new Displaywin(this);
    setCentralWidget(Dui);
    InitAction();
    InitMenu();
}
Mainwin::~Mainwin()
{}
void Mainwin::InitAction()
{
    openstepfileaction = new QAction(tr("open"), this);
    openstepfileaction->setShortcut(tr("Ctrl+O"));
    openstepfileaction->setStatusTip(tr("open a step file"));
    connect(openstepfileaction, SIGNAL(triggered()), this, SLOT(trigeropenfile()));
​
    drawboxaction = new QAction(tr("box"), this);
    drawboxaction->setShortcut(tr("Ctrl+1"));
    drawboxaction->setStatusTip(tr("draw a box"));
    connect(drawboxaction, SIGNAL(triggered()), this, SLOT(trigerdrawbox()));
​
    drawbottleaction = new QAction(tr("bottle"), this);
    drawbottleaction->setShortcut(tr("Ctrl+2"));
    drawbottleaction->setStatusTip(tr("draw a bottle"));
    connect(drawbottleaction, SIGNAL(triggered()), this, SLOT(trigerdrawbottle()));
​
    drawhelixaction = new QAction(tr("helix"), this);
    drawhelixaction->setShortcut(tr("Ctrl+3"));
    drawhelixaction->setStatusTip(tr("draw a helix"));
    connect(drawhelixaction, SIGNAL(triggered()), this, SLOT(trigerdrawhelix()));
​
    viewfrontaction = new QAction(tr("front"), this);
    viewfrontaction->setShortcut(tr("Ctrl+4"));
    viewfrontaction->setStatusTip(tr("front"));
    connect(viewfrontaction, SIGNAL(triggered()), this, SLOT(trigerviewfront()));
​
    viewbackaction = new QAction(tr("back"), this);
    viewbackaction->setShortcut(tr("Ctrl+5"));
    viewbackaction->setStatusTip(tr("back"));
    connect(viewbackaction, SIGNAL(triggered()), this, SLOT(trigerviewback()));
​
    viewtopaction = new QAction(tr("top"), this);
    viewtopaction->setShortcut(tr("Ctrl+6"));
    viewtopaction->setStatusTip(tr("top"));
    connect(viewtopaction, SIGNAL(triggered()), this, SLOT(trigerviewtop()));
​
    viewbottomaction = new QAction(tr("bottom"), this);
    viewbottomaction->setShortcut(tr("Ctrl+7"));
    viewbottomaction->setStatusTip(tr("bottom"));
    connect(viewbottomaction, SIGNAL(triggered()), this, SLOT(trigerviewbottom()));
​
    viewleftaction = new QAction(tr("left"), this);
    viewleftaction->setShortcut(tr("Ctrl+8"));
    viewleftaction->setStatusTip(tr("left"));
    connect(viewleftaction, SIGNAL(triggered()), this, SLOT(trigerviewleft()));
​
    viewrightaction = new QAction(tr("right"), this);
    viewrightaction->setShortcut(tr("Ctrl+9"));
    viewrightaction->setStatusTip(tr("right"));
    connect(viewrightaction, SIGNAL(triggered()), this, SLOT(trigerviewright()));
​
    viewaxoaction = new QAction(tr("axo"), this);
    viewaxoaction->setShortcut(tr("Ctrl+A"));
    viewaxoaction->setStatusTip(tr("axo"));
    connect(viewaxoaction, SIGNAL(triggered()), this, SLOT(trigerviewaxo()));
​
    viewresetaction = new QAction(tr("reset"), this);
    viewresetaction->setShortcut(tr("Ctrl+B"));
    viewresetaction->setStatusTip(tr("reset"));
    connect(viewresetaction, SIGNAL(triggered()), this, SLOT(trigerviewreset()));
​
    viewfitallaction = new QAction(tr("fitall"), this);
    viewfitallaction->setShortcut(tr("Ctrl+C"));
    viewfitallaction->setStatusTip(tr("fitall"));
    connect(viewfitallaction, SIGNAL(triggered()), this, SLOT(trigerfitall()));
​
    viewfitareaaction = new QAction(tr("fitarea"), this);
    viewfitareaaction->setShortcut(tr("Ctrl+D"));
    viewfitareaaction->setStatusTip(tr("fitarea"));
    connect(viewfitareaaction, SIGNAL(triggered()), this, SLOT(trigerfitarea()));
​
    viewzoomaction = new QAction(tr("zoom"), this);
    viewzoomaction->setShortcut(tr("Ctrl+E"));
    viewzoomaction->setStatusTip(tr("zoom"));
    connect(viewzoomaction, SIGNAL(triggered()), this, SLOT(trigerzoom()));
}
​
void Mainwin::InitMenu()
{
    fliemenuBar = menuBar()->addMenu("Flie");
    fliemenuBar->addAction(openstepfileaction);
​
​
    drawmenuBar = menuBar()->addMenu("Draw");
    drawmenuBar->addAction(drawboxaction);
    drawmenuBar->addAction(drawbottleaction);
    drawmenuBar->addAction(drawhelixaction);
​
    viewenuBar = menuBar()->addMenu("View");
    viewenuBar->addAction(viewfrontaction);
    viewenuBar->addAction(viewbackaction);
    viewenuBar->addAction(viewtopaction);
    viewenuBar->addAction(viewbottomaction);
    viewenuBar->addAction(viewleftaction);
    viewenuBar->addAction(viewrightaction);
    viewenuBar->addAction(viewaxoaction);
    viewenuBar->addAction(viewresetaction);
    viewenuBar->addAction(viewfitallaction);
    viewenuBar->addAction(viewfitareaaction);
    viewenuBar->addAction(viewzoomaction);
​
}
void Mainwin::trigeropenfile()
{
​
    QString filename = QFileDialog::getOpenFileName(this, "open file dialog", "/", "step files(*.step)");
    std::string stdfilename = filename.toStdString();
    const char* cstr = stdfilename.c_str();
    TopoDS_Shape stepShape = occ.Open_STEP(cstr);
    Quantity_Color color = Quantity_Color(0.3, 0.5, 0.3, Quantity_TOC_RGB);
    Handle(AIS_Shape) aisstep = new AIS_Shape(stepShape);
    Dui->GetInteractiveContext()->Display(aisstep, Standard_True);
    Dui->GetView()->FitAll();
​
}
​
void Mainwin::trigerdrawbox()
{
    TopoDS_Shape box = occ.createBox();
    Handle(AIS_Shape) aisBox = new AIS_Shape(box);
    Dui->GetInteractiveContext()->Display(aisBox, Standard_True);
    Dui->GetView()->FitAll();
​
}
void Mainwin::trigerdrawbottle()
{
    TopoDS_Shape bottle = occ.MakeBottle(50, 70, 30);
    Handle(AIS_Shape) aisBottle = new AIS_Shape(bottle);
    Dui->GetInteractiveContext()->Display(aisBottle, Standard_True);
    Dui->GetView()->FitAll();
}
void Mainwin::trigerdrawhelix()
{
    TopoDS_Shape helix = occ.createHelix2(3.0, M_PI/3,3.63);
    Handle(AIS_Shape) aishelix = new AIS_Shape(helix);
    Dui->GetInteractiveContext()->Display(aishelix, Standard_True);
    Dui->GetView()->FitAll();
}
void Mainwin::trigerviewfront()
{
    Dui->GetView()->SetProj(V3d_Yneg);
}
​
void Mainwin::trigerviewback()
{
    Dui->GetView()->SetProj(V3d_Ypos);
}
​
void Mainwin::trigerviewtop()
{
    Dui->GetView()->SetProj(V3d_Zpos);
}
​
void Mainwin::trigerviewbottom()
{
    Dui->GetView()->SetProj(V3d_Zneg);
}
​
void Mainwin::trigerviewleft()
{
    Dui->GetView()->SetProj(V3d_Xneg);
}
​
void Mainwin::trigerviewright()
{
    Dui->GetView()->SetProj(V3d_Xpos);
}
​
void Mainwin::trigerviewaxo()
{
    Dui->GetView()->SetProj(V3d_XposYnegZpos);
}
​
void Mainwin::trigerviewreset()
{
    Dui->GetView()->Reset();
}
void Mainwin::trigerfitall()
{
    Dui->GetView()->FitAll();
    Dui->GetView()->ZFitAll();
    Dui->GetView()->Redraw();
}
​
void Mainwin::trigerfitarea()
{
    //setCurrentAction(CurAction3d_WindowZooming);
}
​
void Mainwin::trigerzoom()
{
    //setCurrentAction(CurAction3d_DynamicZooming);
}
相关推荐
天国梦12 小时前
2026英语教学系统选型实战:AI如何让备课效率提升42%?天学网技术落地全解析
人工智能·学习
维克兜率天12 小时前
【维克】大数定律与中心极限定理:为什么长期均值终将回归?
经验分享·学习·金融·概率论
中微极客13 小时前
降维算法75倍加速:从PCA到稀疏字典学习的工程实践
人工智能·学习·算法
ziguo112213 小时前
深入浅出 C/C++ 数据类型:从入门到踩坑
linux·c语言·c++·windows·visual studio
白色冰激凌14 小时前
[SECS/GEM研究] (三)SECS-I 串口上消息怎么分块和重传
c++·secs/gem
光头闪亮亮14 小时前
Fyne ( go跨平台GUI )项目实战-项目开发必备基础知识(中)
android·c++·go
光头闪亮亮14 小时前
Fyne ( go跨平台GUI )项目实战-项目开发必备基础知识(下)
android·c++·go
吃好睡好便好14 小时前
MATLAB中图像的读取、写入和显示
开发语言·图像处理·学习·计算机视觉·matlab
~kiss~14 小时前
大模型中的强化学习算法和对齐算法的区别
学习
MartinYeung515 小时前
[论文学习]InjecAgent:工具集成大语言模型智能体的间接提示注入基准测试
网络·学习·语言模型