Questions tagged [qtplugin]

62 questions
1
vote
1 answer

Use a QT Widget plugin using static qmake

i have built an QT GUI app using Visual Studio 2017 with Qt VS Tools extension and QT version 5.6 (the one provided by QT precompiled), using Qled widget plugin. With this Default Dynamic Qt version, the app runs fine with the widget and i have no…
Miguel
  • 49
  • 1
  • 7
1
vote
2 answers

QPluginLoader instance returns null

Greeting I created plugin with Qt (5.6.2) and trying to load it but it returns null all the time. I checked several question and also tried the solutions but it didn't work for me. Can you take a look of the following code and see whats…
M.H.
  • 223
  • 3
  • 10
  • 23
1
vote
1 answer

Frameless window shows dark border on linux

I created a dialog with shadow effect Qt::WindowFlags flags = Qt::Dialog| Qt::FramelessWindowHint; QGraphicsDropShadowEffect* effect = new QGraphicsDropShadowEffect; effect->setOffset(4); effect->setBlurRadius(9); …
Sijith
  • 3,740
  • 17
  • 61
  • 101
1
vote
1 answer

In qtp,Sometimes, properties used for a webelement click doesnot work for the same click in another instance

For clicking a webelement I used properties: html id , html tag and index. And it worked successfully. And after a series of steps, I am trying to click the same webelement with same properties in same action or test.. But it doesn't work.. I am…
1
vote
1 answer

How to click Chrome plugins like "Download" and "Print" button in qtp

I was trying to download a pdf report and the download button was "chromes download plugin button" which i am not able to click using qtp script. The properties shown for all three buttons "Print","Download" and "Rotate" are same: "html…
1
vote
0 answers

Qt Quick 2 Extension Plugin cannot open so file: no such file

I have an Qt Quick application: /home/xx/projects/build-{project name}-Desktop_Qt_5_8_0_GCC_64bit |----app (binary) |----imports (folder) | |----org (folder) | |----my (folder) | |----qt…
A.J
  • 338
  • 1
  • 4
  • 16
1
vote
2 answers

How to use flags as custom widget property type in QT?

I have trouble to use flags as QT custom widget property type. The expected property does not show on QT Designer property editor. The code is as below: #ifndef SVBASICDEMO_H #define SVBASICDEMO_H #include #include…
ricky
  • 2,058
  • 4
  • 23
  • 49
1
vote
1 answer

Issue Using QTP on a VB.NET application with dialog

I have a VB.NET application with a dialog. With HP QTP I've recorded the following script: 1. Dialog("CDRCreator1.1").WinButton("OK").Click 2. SwfWindow("CDRCreator").SwfButton("Select System").Click 3. …
BlueTree
  • 179
  • 1
  • 13
1
vote
2 answers

Restrictions in creating a plugin

Recently tried the plugin example of Qt. It didn't work at all and I was confused as to the reason. Then found the solution on one of the forums. Qt, Application and plugin all three have to be built with the same configuration…
vinaym
  • 467
  • 1
  • 6
  • 18
1
vote
0 answers

How to load NPAPI on QT 5.3 embedded system?

I have NPAPI plugin file - libxxxplugin.so. Is it possible to load this plugin file onto QT embedded linux system? I made a browser using QWebView, and put it in QTWEBKIT_PLUGIN_PATH directory as described in PluginDatabase.cpp. But,…
tkpl
  • 2,279
  • 2
  • 16
  • 8
1
vote
0 answers

Qt plugin does not handle class with same name and different folders/namespaces

I'm creating in Visual Studio a Qt project with the Qt plugin version 1.2.4. This is my folder structure: src\ | |-Class.h -- It defines Class |-Class.cpp | |-Private\ |-Class.h -- It defines Private::Class |-Class.cpp In…
Jepessen
  • 11,744
  • 14
  • 82
  • 149
1
vote
1 answer

Qt subdirs incude classes

I'm follow Qt Echo Plugin example and trying to write complex application. My project have following structure: MainDir \ Main.pro kernel \ kernel.pro abstractinterface.h main.cpp testplugin \ …
Ivan
  • 490
  • 1
  • 7
  • 23
1
vote
1 answer

how to create plugins (Qt 5.2.0)

i ‘m trying to create a plugin(not for Qt creator), i created an empty project and added the following files : but i’m getting the following errors: 1. C:\Qt\Qt5.2.0\5.2.0\mingw48_32\include\QtCore\qglobal.h:666: erreur : invalid application of…
user2514225
1
vote
2 answers

QT for cross platform plugin development?

I have a pre-existing application, that calls out into a plugin library. I want the plugin library to be developed in Qt, and to be able to display a Qt UI. However, when I attempt to create a QWidget it complains that the QApplication needs to be…
Chris Becke
  • 34,244
  • 12
  • 79
  • 148
0
votes
0 answers

Create plugin for Qt Design Studio

Objective I am trying to create a plugin to have some custom widgets in Qt Design Studio. Context I used to be familiar with Qt Creator, and made some plugins in previous projects. For a new project, I need to create a plugin for Qt Design Studio,…
Nagawica
  • 145
  • 1
  • 1
  • 9