资源简介
Candle是用于GRBL 的一款G代码解释软件按,可以读取刀路文件.NC并进行加工,可以实时显示加工过程。是一款很不错的diy cnc控制软件。这是最新版本1.1.7的源代码。用QT写的。
代码片段和文件信息
// This file is a part of “Candle“ application.
// Copyright 2015-2016 Hayrullin Denis Ravilevich
#include
#include “frmabout.h“
#include “ui_frmabout.h“
frmAbout::frmAbout(QWidget *parent) :
QDialog(parent)
ui(new Ui::frmAbout)
{
ui->setupUi(this);
ui->lblAbout->setText(ui->lblAbout->text().arg(qApp->applicationVersion()));
QFile file(qApp->applicationDirPath() + “/LICENSE“);
if (file.open(QIODevice::ReadOnly)) {
ui->txtLicense->setPlainText(file.readAll());
}
}
frmAbout::~frmAbout()
{
delete ui;
}
void frmAbout::on_cmdOk_clicked()
{
this->hide();
}
void frmAbout::on_lblAbout_linkActivated(const QString &link)
{
QDesktopServices::openUrl(link);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-09-28 14:44 Candle-master\
文件 378 2017-09-28 14:44 Candle-master\.gitattributes
文件 664 2017-09-28 14:44 Candle-master\.gitignore
文件 35147 2017-09-28 14:44 Candle-master\LICENSE
文件 1463 2017-09-28 14:44 Candle-master\readme.md
目录 0 2017-09-28 14:44 Candle-master\screenshots\
文件 156770 2017-09-28 14:44 Candle-master\screenshots\screenshot.png
文件 190687 2017-09-28 14:44 Candle-master\screenshots\screenshot_collapsed_groupboxes.png
文件 104805 2017-09-28 14:44 Candle-master\screenshots\screenshot_compact_table.png
文件 116819 2017-09-28 14:44 Candle-master\screenshots\screenshot_compact_visualizer.png
文件 140415 2017-09-28 14:44 Candle-master\screenshots\screenshot_heightmap_heightmap.png
文件 211387 2017-09-28 14:44 Candle-master\screenshots\screenshot_heightmap_heightmap_interpolation.png
文件 148449 2017-09-28 14:44 Candle-master\screenshots\screenshot_heightmap_modified.png
文件 137818 2017-09-28 14:44 Candle-master\screenshots\screenshot_heightmap_original.png
文件 234706 2017-09-28 14:44 Candle-master\screenshots\screenshot_linux.png
文件 85963 2017-09-28 14:44 Candle-master\screenshots\screenshot_live_edit.png
文件 173111 2017-09-28 14:44 Candle-master\screenshots\screenshot_ru.png
文件 84478 2017-09-28 14:44 Candle-master\screenshots\screenshot_toolpath_highlighting.png
目录 0 2017-09-28 14:44 Candle-master\src\
文件 2745 2017-09-28 14:44 Candle-master\src\candle.pro
目录 0 2017-09-28 14:44 Candle-master\src\drawers\
文件 13451 2017-09-28 14:44 Candle-master\src\drawers\gcodedrawer.cpp
文件 2904 2017-09-28 14:44 Candle-master\src\drawers\gcodedrawer.h
文件 1579 2017-09-28 14:44 Candle-master\src\drawers\heightmapborderdrawer.cpp
文件 493 2017-09-28 14:44 Candle-master\src\drawers\heightmapborderdrawer.h
文件 3964 2017-09-28 14:44 Candle-master\src\drawers\heightmapgriddrawer.cpp
文件 902 2017-09-28 14:44 Candle-master\src\drawers\heightmapgriddrawer.h
文件 3553 2017-09-28 14:44 Candle-master\src\drawers\heightmapinterpolationdrawer.cpp
文件 853 2017-09-28 14:44 Candle-master\src\drawers\heightmapinterpolationdrawer.h
文件 2978 2017-09-28 14:44 Candle-master\src\drawers\origindrawer.cpp
文件 213 2017-09-28 14:44 Candle-master\src\drawers\origindrawer.h
............此处省略161个文件信息
评论
共有 条评论