Questions tagged [qtplugin]
62 questions
0
votes
0 answers
Qt 5.6 how to use QWebEngineView in my custom widget plugin?
I'm trying to create a Qt custom widget plugin to wrap a QWebEngineView. But I found QWebEngineView seems does not work with Qt Designer.
The demo code is attached as below. After build and place this plugin in Qt plugins folder, then Qt Designer…

ricky
- 2,058
- 4
- 23
- 49
0
votes
1 answer
Registering an extension in Qt Designer with no associated widget plugin
TL;DR
I want to register a Qt Designer extension but don't want any widget plugin, so any of the following can solve my problem:
How do I create a plugin in Qt Designer that doesn't expose any widget in the widget box but that can register…

cbuchart
- 10,847
- 9
- 53
- 93
0
votes
1 answer
Qt plugin: From qmake to qbs. Linkage error
I have a .pro project consisting of two products:
player.pro
TEMPLATE = subdirs
SUBDIRS = mediaplayer \
imageplayer
imageplayer.depends = mediaplayer
madiaplayer.pro - dll lib
TEMPLATE = lib
DEFINES += MEDIAPLAYER_LIBRARY
HEADERS =…

Dmitry Fisenko
- 1
- 2
0
votes
0 answers
capturing crash in mainwindow when Qt plugin crashed
iam having three plugins loaded (Qt Plugins using qpluginLoader) to my application. the plugins are different modules , in many cases plugins crashed as development is still in progress.
so when any one of the plugin crashed , i have to…

Wagmare
- 1,354
- 1
- 24
- 58
0
votes
0 answers
How to get text from a QLineEdit in a different Qt plugin
I have an interface MyInterface:
class MyInterface
{
public:
virtual ~MyInterface() {}
virtual QMap *inputsMap() const = 0;
};
I have a class MyImplementingClass that implements MyInterface. However, I'm unable to get…

Program-Me-Rev
- 6,184
- 18
- 58
- 142
0
votes
1 answer
QTP unable to identify java object
QTP version 11 is unable to identify any java object instead it is identifying it just as a window
I tried to spy the java application but QTP is identifying it as a window.
So, is it a QTP issue,missing patch or environment variable issue

Akash Shrivastava
- 13
- 3
0
votes
1 answer
File Checkpoint parameterization issue in UFT
I have a sample PDF & there is one field with Account Number. I want this Account Number to be validated. I have added a file checkpoint with Environment Variable. I come to know the Account Number of new PDF at run time so i I have passed Account…

pranav012
- 27
- 6
0
votes
2 answers
How to know that in QTP/UFT which add-in's were used in any random test project?
Here the situation is that I have a already tested project and I Don't know that which add-ins is being used in that tested project so my question is that how can I know which add-in is used in that test project using that test script to prepare the…

Nitin Rastogi
- 171
- 1
- 13
0
votes
1 answer
Deploying Qt console application with QtPlugin
The context :
I'm currently working on a multiplatform server-side console application using Qt.
I have a development computer (pc-dev) and a server where I want to deploy my application (pc-server).
pc-dev is configured with all the development…

Inounx
- 71
- 6
0
votes
0 answers
QTP launches and then abruptly get closed when invoked through RQM Commandline Adapter
Settings:
QTP 11.0
RQM Adapter ver : com.ibm.rqm.adapter.commandline_2.0.0.v20140416_2010
RQM adapter calls the batch file, which invokes scriptlaunch.vbs program to launch qtp script.
QTP launches and then abruptly gets closed, however the process…

Pradeep Bhandari
- 35
- 1
- 7
0
votes
1 answer
Error while building Qt Creator Plugin
I tried to create Qt Creator Plugin by following https://doc-snapshots.qt.io/qtcreator-extending/first-plugin.html , but I failed to build with a link error
ld: library not found for -lCore_debug
clang: error: linker command failed with exit code 1…

DenimPowell
- 1,073
- 7
- 14
0
votes
1 answer
I am getting error as "General Error while saving the Business Component "
In QTP while saving a business Component I am getting error as "General Error while saving the Business Component "
Is anyone facing the same issue while storing the scripts? Please let me know if you know the reason behind this..

Manas
- 39
- 1
- 11
0
votes
1 answer
QT Custom Plugin - Ways to increase security
I have this simple plugin interface for my custom application.
plugininterface.h:
#ifndef PLUGININTERFACE_H
#define PLUGININTERFACE_H
#include
class PluginInterface
{
public:
virtual QString Author() const = 0;
virtual QString…

Sora
- 73
- 7
0
votes
1 answer
Qt design doesn't load the plugin after installization qt designer plugin
I am new to Qt. I try to install the designer plugin on Mac OSX 10.10 that is provided by qglviewer.
I do as the http://libqglviewer.com/installUnix.html#plugin says. I successfully compile and install the plugins.
cd designerPlugin
qmake
make
make…

Shawn
- 167
- 1
- 1
- 10
-1
votes
1 answer
Undefined reference after building SQLite plugin for Qt 6.5.1
I am trying to build SQLite3 plugin for Qt since I need to use SQLite specific hook functions. I have prebuilt Qt 6.5.1 on windows machine mingw_64 version. I have built plugin which works with qt functions but gives me undefined reference when I am…

Nikita Novikov
- 1
- 2