问题标签 [qt-jambi]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
200 浏览

java - QtJambi 4.6.3.2 窗口 7

我使用 QtJambi 编写了一个简单的应用程序,特别是com.trolltech.qt.webkit.QWebView该类。在 linux 上一切正常,但是当我运行 Win32 版本时,我得到了

有人可以提出一些解决方案吗,我发现的唯一帮助是在旧帖子上,但问题似乎不同。

我使用带有 qtjambi 插件的 maven 构建包:

0 投票
2 回答
2332 浏览

java - Qt Jambi 开发还有可能吗?

我主要有使用 Qt 和 C++ 的 GUI 开发经验。现在我打算用 Java 做一些 GUI 开发,并把目光投向了 Qt Jambi。但是,我不知道如何开始。

有相对较新的二进制文件可用:http: //qt-jambi.org/downloads

看来我也需要:http Eclipse Integration Plugin: //qt-jambi.org/doc/eclipseintegration

...但是下载链接已损坏,我错过了什么吗?Qt Jambi 开发不再可能了吗?

0 投票
0 回答
230 浏览

java - Mac OS X Mavericks 上的 QT Jambi 安装失败/错误

我正在尝试在我的 Mac 上安装 QT Jambi,因为我已经爱上了它。

但是当我尝试通过 sh 安装它时,我收到以下消息:

我很感激每一次尝试/提示来帮助我解决这个问题。

0 投票
1 回答
285 浏览

java - QtJambi example not executing

I'm trying to compile and run the tooltip code from this tutorial. I obtained QtJambi from my package manager (the package is qtjambi-beta from AUR), which installed it into the directory /opt/qtjambi-beta/. In particular, the qtjambi-4.7.0.jar file is located at /opt/qtjambi-beta/qtjambi-linux64-community-4.7.0/qtjambi-4.7.0.jar.

Now, I made a folder called qtpractice and put the example in there under the name JambiApp.java. The code I put into it was exactly as follows (following the example I linked):

I compiled it with javac qtpractice/*.java -cp /opt/qtjambi-beta/qtjambi-linux64-community-4.7.0/qtjambi-4.7.0.jar, which worked fine. I then tried to execute it with java qtpractice.JambiApp, and I got the following error:

EDIT: Based on some advice from the comments, I tried this command instead: java -cp /opt/qtjambi-beta/qtjambi-linux64-community-4.7.0/qtjambi-4.7.0.jar qtpractice.JambiApp . When I did this, I got the following error again:

What did I miss? From what I can tell, I did everything necessary to make it execute.

0 投票
1 回答
99 浏览

java - 通过 Qt Jambi 使用粒子(Qt 的惊人功能)

标题说明了一切;我正在尝试通过 Qt Jambi Libraries 使用 Qt 中可用的粒子功能。我知道要在 Qt 中使用 Particles,您必须先使用以下内容导入它:

但是,每当我尝试使用 Qt Jambi Libraries 导入 QtQuick 时,它都会显示没有具有该名称的此类。Qt Jambi 中是否包含 Particles 类但在另一个类中,或者它甚至不是 Qt Jambi 支持的功能?

0 投票
0 回答
118 浏览

java - Eclipse 插件参数

使用 Eclipse 插件时,我想为我的插件使用 QTjambi,然后我尝试使用下面的代码启动它。args 对我来说不可用,但是 QApplication.initialize(args) 需要它,否则它不会启动,该怎么办?

0 投票
0 回答
809 浏览

java - 如何从 Maven 构建 QT-JAMBI

我用maven在我的eclipse上写了一些qt-jambi应用程序,我需要将它构建为一个可执行文件

如何使用 maven 构建 qt jambi 应用程序

以下是我的 pom.xml

请帮助我提前谢谢

0 投票
1 回答
416 浏览

java - 在 Java 程序中使用 Matlab Javabuilder App 的分割违规

我在 QTJambi 中创建了一个 GUI,它在按下按钮时运行 Matlab 代码。一切运行良好,并且从 Matlab 代码接收输出,但是当我关闭 GUI 的窗口时,我得到一个分段违规,如下所示:

0 投票
1 回答
1443 浏览

kotlin - Kotlin 内联函数无法正常工作

在使用 QtJambi 作为 GUI 工具包的项目时,我试图编写一个库以使连接信号和插槽更容易。我发现了以下问题。

这是我的代码:

当没有预期的通用参数时,这适用于第一个连接函数。但是对于第二个连接功能,当我执行以下操作时:

我收到以下错误:

可能的原因是什么,我该如何解决?

编辑:使用示例

Kotlin 字节码

0 投票
1 回答
154 浏览

java - 连接 QPushButton 占碑

我对 Java 编程很陌生。我编写了下面列出的应用程序,但无法将按钮连接到我的功能。知道我做错了什么吗?

当我调用该函数SumNum(5,3);时,它可以正常工作,但是当我从按钮调用它时,它不起作用。我正在使用new_action.released.connect("Tata()");

我研究了 Qt,它给了我
void com.trolltech.qt.QSignalEmitter.AbstractSignal.connect(Object receiver, String method),但什么是对象接收器?

我什至将自己作为对象接收者,new_action.released.connect(new_action,"Tata()");但是,不,它也不起作用。

任何的想法?

编辑:这里是 python 中的相同应用程序:

在 Python 中它不要求对象接收器,它只是运行它,但在 java 中它似乎完全不同。