Questions tagged [qtplugin]
62 questions
0
votes
0 answers
Where to install plugins created with Qt 6.5 in Debian?
I don't know where should I put my plugin that I created to see it in Qt Designer
I installed Qt 6.5 in Debian and created a custom widget (plugin) with Qt Creator.
Where should I copy the compiled .so file so that Qt Designer can see it among the…

malloy
- 21
- 3
0
votes
0 answers
How to set custom widget form in Qt Designer?
I created a custom widget in Qt 6.5 using Visual Studio C++ 2022 Community. This widget is a led with various shapes and colors that can be selected in the Qt Designer editor. I can't get selected shape to appear with selected color in Qt…

malloy
- 21
- 3
0
votes
0 answers
Getting error about PyQt5 when using Virtual Environment on Ubuntu
I'm building a project with PyQt5 and I've changed my operating system Windows to Ubuntu. On Windows, everything was going perfect with virtual environments but since i changed my OS and tried to launch my first qt app, i'm getting the error down…
0
votes
0 answers
Error when reloading new Plugin code in QGIS
I am nooby to Plugin Development but I'm trying to create a plugin in QGIS, for a Uni-subject, with its own graphical interface, which will receive a zipcode from the user and return the name of the corresponding location.
I already created the…

Zeca
- 1
0
votes
0 answers
How to disambiguate same string between translations inside Qt/QML app and a Qt Plugin?
There's a Qt/QML app that uses qsTr() for localizing it's strings in .qml files and a Qt plugin (loaded via QPluginLoader) that does the same.
Text { text: qsTr("back") }
Suppose there's a same string that in app has one meaning and in the plugin…

Ribtoks
- 6,634
- 1
- 25
- 37
0
votes
1 answer
How to integrate custom widget (plugin) for Qt Designer
I made a Qt Custom Designer Widget using Qt's Wizard. The plugin compile and install on the Qt Designer's plugin folder without problems but it does not appear loaded in the About Plugins of Qt. I use the QT_DEBUG_PLUGINS and notice that the plugin…

silverhawk
- 35
- 13
0
votes
0 answers
Prevent Qt5 app from crashing due to plugins
I'm building a Qt5 app that makes use of Qt's plugin framework. While testing the app, I noticed that if there is s some problem with the plugin causing it to crash, it takes down the app as well. Is there a way to insulate the app from these…

Marcus
- 1,685
- 1
- 18
- 33
0
votes
1 answer
QML: Qt.labs.platform.MenuItem's icon
There's a plugin called Qt.labs.platform. Among other things, it provides tray icon with a menu. That menu has a list of MenuItems. Any menu item may have an icon, which would be displayed on the left side of item's text.
There's two ways of setting…

ratijas
- 704
- 7
- 14
0
votes
0 answers
Why I am not able to save notepad in UFT?
Set objFSO=CreateObject("Scripting.FileSystemObject")
Set objTFile=objFSO.CreateTextFile("C:\test\Test.txt")
SystemUtil.Run "C:\test\Test.txt"
Window("Notepad").Activate
Window("Notepad").Type micCtrlDwn + "v" + micCtrlUp
wait…
0
votes
0 answers
Load PyQt5 plugin into designer-qt5 (cygwin)
I have recently installed on my cygwin platform the following packages using apt-cyg:
apt-cyg install python-pyqt5
apt-cyg install qt5-devel-tools
The latter command installed Qt Designer as an executable (designer-qt5).
PyQt5 examples works fine…

Leptoceratops
- 177
- 2
- 12
0
votes
1 answer
Unable to run emulator on Android Studio || Windows 10
I have got really frustrated with this issue for the past 24 hours. I downloaded and installed Android Studio 3.2.1 on my E: . I have my Android SDK path set to C:\Users\anant\AppData\Local\Android\Sdk . However, when I try to run the emulator Nexus…

Ananta K Roy
- 1,848
- 2
- 14
- 16
0
votes
1 answer
Is it possible to implement Qt Application Plugin using a base and derived class?
Suppose I have the following toy interface:
class iTest{
virtual ~iTest(void) = 0;
virtual void doA(void) = 0;
virtual void doB(void) = 0;
}
Q_DECLARE_INTERFACE(iTest, "somestring")
I'd like to implement this in two classes: Base and…

Benjamin Slack
- 11
- 2
0
votes
1 answer
Qt plugin options for configuring
I am trying to build qtvirtualkeyboard plugin following this instructions with arrow-key-navigation option enabled. But I don't understand how to enable it in the right way. I have tried to add
CONFIG += arrow-key-navigation
into…

ephemerr
- 1,833
- 19
- 22
0
votes
1 answer
Debug shared plugin in console application in Qt Creator
Greeting
I have 2 project in one session in qt creator. One is console application and the other is shared plugin. I'm loading the plugin and then call it's method. I want to enter plugin's method and debug it (like visual studio if you have…

M.H.
- 223
- 3
- 10
- 23
0
votes
1 answer
Qt style plugin loaded but key is missing
I was trying to create a style plugin for my project, the plugin seems being loaded, but why QStyleFactory::keys() didn't return my key?
By setting QT_DEBUG_PLUGINS to 1, I got following message :
Found metadata in lib .../styles/libstyles.so,…

n.x.
- 31
- 4