Questions tagged [libqxt]

LibQxt is an extension library for the Qt framework.

LibQxt is an extension library for Qt providing a suite of cross-platform utility classes to add functionality not readily available in .

The most recent version of libQxt is 0.6.2.

Supported platforms

  • Linux*/X11
  • Windows
  • Mac OSX

Qxt Modules

Qxt consists of several modules, each of which lives in a separate library:

  • QxtBerkeley: The QxtBerkeley module provides a Qt interface to the Berkeley DB.
  • QxtCore: The QxtCore module extends QtCore and contains core non-GUI functionality.
  • QxtGui: The QxtGui module extends QxtCore and QtGui.
  • QxtNetwork: The QxtNetwork module extends QtNetwork with RPC functionality.
  • QxtSql: The QxtSql module extends QtSql with serializable queries.
  • QxtWeb: The QxtWeb module provides tools for creating web services using Qt.
  • QxtZeroconf: Qxt QxtZeroconf module implements configure free service discovery

Some features

  • QSlider with two buttons
  • Rotating & richtext buttons and labels
  • LineEdit with sample text
  • managing many screen settings
  • String SpinBox
  • Check ComboBox
  • Global Shortcut (hot keys)
  • Schedule View
  • Tooltip with arbitrary widget on it
  • RPC(connecting signals and slots through network)
  • XML-RPC
  • QxtSQLPackage (Sending SQL query result through network or to a file)
  • QxtSlotMapper (Map a signal to slots based on parameter value)
30 questions
9
votes
1 answer

How to use Qxt libraries on PyQt?

First of all, please excuse my bad English. I hope you guys understand what I am saying. I have developed the server and client system. The server side is based on Qt, and the client side is based on PyQt. (I wanted to build the client based on Qt…
Jonas Hong
  • 275
  • 1
  • 2
  • 7
5
votes
2 answers

How to compile LibQxt for qt5?

I am having problems compiling LibQxt for qt 5. http://dev.libqxt.org/libqxt/src There are commits that says "Port Libqxt to Qt5". The project says to use configure-premake but it gives the error that there is no premake for windows but in the…
Jason123
  • 139
  • 2
  • 8
5
votes
2 answers

compiling libqxt in mac osx

I have the latest (git) version of libqxt. I run ./configure and that works just fine, then make fails with this error: linking ../../lib/QxtWidgets.framework/QxtWidgets ld: warning: directory not found for option '-L/usr/local/pgsql/lib' ld:…
sfw
  • 93
  • 1
  • 5
4
votes
3 answers

Adding Qxt plugin to Designer

I'm having a problem with adding the Qxt library to Qt Designer. The error it gives is: Cannot load library C:/Qt/4.6.2/plugins/designer/QxtDesignerPlugins.dll; The specified module cannot be found. Any ideas on what the problem is?
Cenoc
  • 11,172
  • 21
  • 58
  • 92
4
votes
1 answer

Error trying to install Qxt for sending email

I need to use the QxtSMTP module to be able to send email through Qt. I downloaded the package from here. As per the instructions, I did .configure and make. During make install, it threw an error - (OS X,…
SexyBeast
  • 7,913
  • 28
  • 108
  • 196
3
votes
1 answer

libQxt widgets not showing in Qt Creator

I have installed libQxt 0.6.2 successfully, it creates a C:\QXT folder. My Qt 4.7.4 is configured for MinGW. When I run: %QTDIR%\Desktop\Qt\4.7.4\mingw\bin\designer.exe The QXT widgets are shown in the toolbox. But when I…
Krish
  • 31
  • 1
3
votes
1 answer

LibQxT does not detect Qt version properly

I am trying to install LibQxT to use it with Qt5, so I downloaded the sources and as soon as I run the configure.bat there is an error: LibQxt requires 4.3 or newer but Qt 5.2.1 was detected. Searching on the web Ive found out that apparently it…
Victor
  • 907
  • 2
  • 17
  • 42
3
votes
1 answer

Linking libqxt in a Qt5 application on Ubuntu

I have a problem with linking libqxt in a Qt5 application. I write a code like in example in documentation but I have errors. QxtGlobalShortcut* shortcut = new QxtGlobalShortcut(this); connect(shortcut, SIGNAL(activated()), this,…
user2263192
  • 65
  • 1
  • 5
3
votes
0 answers

Configure qxt library under Windows

I want to include into my Qt 4.8.1 project the Qxt 0.6.2 library. I followed the steps from their user guide and at the end the library was installed in: C:\Qxt. I have added these two lines in my project .pro file: CONFIG += qxt QXT += core…
croppio.com
  • 1,823
  • 5
  • 28
  • 44
3
votes
0 answers

Windows 7 Qt Creator libqxt

SDK: Qt Creator 2.4.1 (Qt 4.7.4 (32 bit)) running on Windows 7 Software: libqxt Final target platform: Harmattan (Nokia N9) I am developing an application that is suppose to use qt-Brisa which in turn uses libqxt so I am trying to install…
2
votes
0 answers

QxtLogger (From libQxt) prints its Messages in Application Output

I am using QxtLogger (from libQxt) for logging in our application. It was working fine with Qt 4.7.3. I recently updated to Qt 4.8, Since then log messages from QxtLogger are getting printed in Application Output. I didn't installed it as…
Anwar Shaikh
  • 1,591
  • 3
  • 22
  • 43
2
votes
2 answers

How to hide console window in QxtApplication

I am trying to make gui Qxt Application, but when launches it creates a console window. I don't need console window, how can I hide it? I'm using mingw gcc4.4 qt4.8 libqxt-0.6.2 .pro file: QT += core gui network testlib CONFIG += qxt QXT …
user1190294
1
vote
1 answer

static libqxt - missing anything?

OK, to sum it up... There's probably a config problem with STATIC Qxt on windows. It should link against libcrypto.a and libssl.a, but it doesn't, making any program trying to staticaly compile against qxtnetwork fail with missing references... With…
1
vote
2 answers

Need help compiling libqxt for Windows

I have a Qt project which uses libqxt. How do I compile it for Windows? Edit Ok, I compiled it, and it's installed in "C:\Qxt\", but when I try to build my project it still fails with error ..\qlocate\mainwindow.cpp:13:29: error: QxtGlobalShortcut:…
sashoalm
  • 75,001
  • 122
  • 434
  • 781
1
vote
0 answers

QtWebEngine: How to hook Ctrl + V KeyEvent?

I want to call a method if the shortcut Ctrl+V ("Paste") triggered. I tried to add a new action with Ctrl+V keycode. This works for Ctrl+F but not for Ctrl+V. I tried to get the KeyEvents from the OpenGL Child Object of the View. Unfortunately, this…
Chris J.
  • 47
  • 1
  • 4
1
2