你应该能够通过查看名为 motorcontrol 的函数来了解我正在尝试做什么在里面:
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
}
我得到的错误是我不能在那里声明一个函数,但是如果我把它放在括号之外,我得到的错误是 ui 没有在此范围内声明。我明白为什么会收到此错误,但我不知道解决方法。我可以让 ui 成为一个全局变量/对象吗?如果可以,我该怎么做,或者是否有另一种方法来解决/解决这个问题。这是我的代码:
#include "widget.h"
#include "ui_widget.h"
#include <QCamera>
#include <QCameraViewfinder>
#include <QCameraImageCapture>
#include <QVBoxLayout>
#include <QMenu>
#include <QAction>
#include <QFileDialog>
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
mCamera = new QCamera(this);
mCameraViewfinder = new QCameraViewfinder(this);
mCameraImageCapture = new QCameraImageCapture(mCamera,this);
mLayout = new QVBoxLayout;
mOptionsMenu = new QMenu("Options",this);
mCameraAction = new QAction("Camera",this);
mGantryAction = new QAction("Gantry", this);
mCaptureAction = new QAction("Capture",this);
mLazerAction = new QAction("Lazer",this);
mOptionsMenu->addActions({mCameraAction,mGantryAction,
mLazerAction});
ui->optionsPushButton->setMenu(mOptionsMenu);
ui->lazerDistance->setLayout(mLayout);
ui->xAxis->setLayout(mLayout);
ui->yAxis->setLayout(mLayout);
ui->zAxis->setLayout(mLayout);
ui->xRotate->setLayout(mLayout);
ui->yRotate->setLayout(mLayout);
ui->zRotate->setLayout(mLayout);
ui->x1Label->setLayout(mLayout);
ui->y1Label->setLayout(mLayout);
ui->z1Label->setLayout(mLayout);
ui->x2Label->setLayout(mLayout);
ui->y2Label->setLayout(mLayout);
ui->z2Label->setLayout(mLayout);
ui->xAxis->hide();
ui->yAxis->hide();
ui->zAxis->hide();
ui->xRotate->hide();
ui->yRotate->hide();
ui->zRotate->hide();
ui->x1Label->hide();
ui->y1Label->hide();
ui->z1Label->hide();
ui->x2Label->hide();
ui->y2Label->hide();
ui->z2Label->hide();
ui->lazerDistance->hide();
ui->scanButton->hide();
ui->moterL->hide();
ui->moterLLable->hide();
connect(mCameraAction, &QAction::triggered, [&](){
ui->moterL->hide();
ui->moterLLable->hide();
ui->xAxis->hide();
ui->yAxis->hide();
ui->zAxis->hide();
ui->xRotate->hide();
ui->yRotate->hide();
ui->zRotate->hide();
ui->x1Label->hide();
ui->y1Label->hide();
ui->z1Label->hide();
ui->x2Label->hide();
ui->y2Label->hide();
ui->z2Label->hide();
ui->lazerDistance->hide();
ui->scanButton->hide();
mCamera->setViewfinder(mCameraViewfinder);
mLayout->addWidget(mCameraViewfinder);
mLayout->setMargin(0);
ui->ScrollArea->setLayout(mLayout);
ui->ScrollArea->show();
ui->scrollAreaWidgetContents->show();
mCameraViewfinder->show();
mCamera->start();
});
connect(mGantryAction,&QAction::triggered, [&](){
mCamera->stop();
ui->ScrollArea->hide();
ui->scrollAreaWidgetContents->hide();
mCameraViewfinder->hide();
ui->lazerDistance->hide();
ui->scanButton->hide();
ui->x1Label->show();
ui->y1Label->show();
ui->z1Label->show();
ui->x2Label->show();
ui->y2Label->show();
ui->z2Label->show();
ui->moterLLable->show();
ui->xAxis->show();
ui->yAxis->show();
ui->zAxis->show();
ui->xRotate->show();
ui->yRotate->show();
ui->zRotate->show();
ui->moterL->show();
ui->scanButton->show();
});
connect(mLazerAction, &QAction::triggered, [&](){
mCamera->stop();
ui->ScrollArea->hide();
ui->scrollAreaWidgetContents->hide();
mCameraViewfinder->hide();
ui->scanButton->hide();
ui->moterL->hide();
ui->xAxis->hide();
ui->yAxis->hide();
ui->zAxis->hide();
ui->xRotate->hide();
ui->yRotate->hide();
ui->zRotate->hide();
ui->x1Label->hide();
ui->y1Label->hide();
ui->z1Label->hide();
ui->x2Label->hide();
ui->y2Label->hide();
ui->z2Label->hide();
ui->moterLLable->hide();
ui->lazerDistance->show();
});
//to change the value of the lazer distance
//have ros input a new string
ui->lazerDistance->setText("0");
//funtions to set the values of the moters
}
void motorcontroll(double x1,double x2, double y1, double y2, double z1, double z2,double l1)
{
ui->xAxis->setValue(x1);
ui->yAxis->setValue(y1);
ui->zAxis->setValue(z1);
ui->xRotate->setValue(x2);
ui->yRotate->setValue(y2);
ui->zRotate->setValue(z2);
ui->moterL->setValue(l1);
}
头文件:
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
namespace Ui {
class Widget;
}
class QCamera;
class QCameraViewfinder;
class QCameraImageCapture;
class QVBoxLayout;
class QMenu;
class QAction;
class Widget : public QWidget
{
Q_OBJECT
public:
explicit Widget(QWidget *parent = nullptr);
~Widget();
void motorcontroll(double x1,double x2, double y1, double y2, double z1, double z2,double l1);
private:
Ui::Widget *ui;
QCamera * mCamera;
QCameraViewfinder *mCameraViewfinder;
QCameraImageCapture *mCameraImageCapture;
QVBoxLayout *mLayout;
QMenu *mOptionsMenu;
QAction *mCameraAction;
QAction *mGantryAction;
QAction *mCaptureAction;
QAction *mLazerAction;
};
#endif // WIDGET_H
最佳答案
您需要使 motorcontroll() 成为 Widget 类的成员函数。然后在 cpp 文件中将其实现为 Widget 的成员:
void Widget::motorcontroll(double x1, double x2, double y1, double y2,
double z1, double z2, double l1)
{
// ...
}
关于c++ - 尝试在 qt 中创建访问器函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56399664/
类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc
我正在用Ruby编写一个简单的程序来检查域列表是否被占用。基本上它循环遍历列表,并使用以下函数进行检查。require'rubygems'require'whois'defcheck_domain(domain)c=Whois::Client.newc.query("google.com").available?end程序不断出错(即使我在google.com中进行硬编码),并打印以下消息。鉴于该程序非常简单,我已经没有什么想法了-有什么建议吗?/Library/Ruby/Gems/1.8/gems/whois-2.0.2/lib/whois/server/adapters/base.
我有一个包含模块的模型。我想在模块中覆盖模型的访问器方法。例如:classBlah这显然行不通。有什么想法可以实现吗? 最佳答案 您的代码看起来是正确的。我们正在毫无困难地使用这个确切的模式。如果我没记错的话,Rails使用#method_missing作为属性setter,因此您的模块将优先,阻止ActiveRecord的setter。如果您正在使用ActiveSupport::Concern(参见thisblogpost),那么您的实例方法需要进入一个特殊的模块:classBlah
我的瘦服务器配置了nginx,我的ROR应用程序正在它们上运行。在我发布代码更新时运行thinrestart会给我的应用程序带来一些停机时间。我试图弄清楚如何优雅地重启正在运行的Thin实例,但找不到好的解决方案。有没有人能做到这一点? 最佳答案 #Restartjustthethinserverdescribedbythatconfigsudothin-C/etc/thin/mysite.ymlrestartNginx将继续运行并代理请求。如果您将Nginx设置为使用多个上游服务器,例如server{listen80;server
我正在使用Sequel构建一个愿望list系统。我有一个wishlists和itemstable和一个items_wishlists连接表(该名称是续集选择的名称)。items_wishlists表还有一个用于facebookid的额外列(因此我可以存储opengraph操作),这是一个NOTNULL列。我还有Wishlist和Item具有续集many_to_many关联的模型已建立。Wishlist类也有:selectmany_to_many关联的选项设置为select:[:items.*,:items_wishlists__facebook_action_id].有没有一种方法可以
我想在一个没有Sass引擎的类中使用Sass颜色函数。我已经在项目中使用了sassgem,所以我认为搭载会像以下一样简单:classRectangleincludeSass::Script::FunctionsdefcolorSass::Script::Color.new([0x82,0x39,0x06])enddefrender#hamlengineexecutedwithcontextofself#sothatwithintemlateicouldcall#%stop{offset:'0%',stop:{color:lighten(color)}}endend更新:参见上面的#re
我正在尝试用ruby中的gsub函数替换字符串中的某些单词,但有时效果很好,在某些情况下会出现此错误?这种格式有什么问题吗NoMethodError(undefinedmethod`gsub!'fornil:NilClass):模型.rbclassTest"replacethisID1",WAY=>"replacethisID2andID3",DELTA=>"replacethisID4"}end另一个模型.rbclassCheck 最佳答案 啊,我找到了!gsub!是一个非常奇怪的方法。首先,它替换了字符串,所以它实际上修改了
我有一些代码在几个不同的位置之一运行:作为具有调试输出的命令行工具,作为不接受任何输出的更大程序的一部分,以及在Rails环境中。有时我需要根据代码的位置对代码进行细微的更改,我意识到以下样式似乎可行:print"Testingnestedfunctionsdefined\n"CLI=trueifCLIdeftest_printprint"CommandLineVersion\n"endelsedeftest_printprint"ReleaseVersion\n"endendtest_print()这导致:TestingnestedfunctionsdefinedCommandLin
我有一个正在构建的应用程序,我需要一个模型来创建另一个模型的实例。我希望每辆车都有4个轮胎。汽车模型classCar轮胎模型classTire但是,在make_tires内部有一个错误,如果我为Tire尝试它,则没有用于创建或新建的activerecord方法。当我检查轮胎时,它没有这些方法。我该如何补救?错误是这样的:未定义的方法'create'forActiveRecord::AttributeMethods::Serialization::Tire::Module我测试了两个环境:测试和开发,它们都因相同的错误而失败。 最佳答案
我是Google云的新手,我正在尝试对其进行首次部署。我的第一个部署是RubyonRails项目。我基本上是在关注thisguideinthegoogleclouddocumentation.唯一的区别是我使用的是我自己的项目,而不是他们提供的“helloworld”项目。这是我的app.yaml文件runtime:customvm:trueentrypoint:bundleexecrackup-p8080-Eproductionconfig.ruresources:cpu:0.5memory_gb:1.3disk_size_gb:10当我转到我的项目目录并运行gcloudprevie