Expand description
This crate contains manually generated bindings to Qt basic value types.
It is meant to be used by other crates, such as the qmetaobject
crate which re-expose them.
The Qt types are basically exposed using the cpp
crate. They have manually writen rust idiomatic
API which expose the C++ API.
These types are the direct equivalent of the Qt types and are exposed on the stack.
In addition, the build script of this crate expose some metadata to downstream crate that also want to use Qt’s C++ API. Build scripts of crates that depends directly from this crate will have the following environment variables set when the build script is run:
DEP_QT_VERSION
: The Qt version as given by qmake.DEP_QT_INCLUDE_PATH
: The include directory to give to thecpp_build
crate to locate the Qt headers.DEP_QT_LIBRARY_PATH
: The path containing the Qt libraries.DEP_QT_COMPILE_FLAGS
: A list of flags separated by;
DEP_QT_FOUND
: Set to 1 when qt was found, or 0 if qt was not found and therequired
feature is not set.DEP_QT_ERROR_MESSAGE
: whenDEP_QT_FOUND
is 0, contains the error that caused the build to fail
Finding Qt
This is the algorithm used to find Qt.
- You can set the environment variable
QT_INCLUDE_PATH
andQT_LIBRARY_PATH
to be a single directory where the Qt headers and Qt libraries are installed. - Otherwise you can specify a
QMAKE
environment variable with the absolute path of theqmake
executable which will be used to query these paths. - If none of these environment variable is set, the
qmake
executable found in$PATH
.
Philosophy
The goal of this crate is to expose a idiomatic Qt API for the core value type classes. The API is manually generated to expose required feature in the most rust-like API, while still keeping the similarities with the Qt API itself.
It is not meant to expose all of the Qt API exhaustively, but only the part which is relevant for the usage in other crate. If you see a feature missing, feel free to write a issue or a pull request.
Note that this crate concentrate on the value types, not the widgets or the
the QObject
. For that, there is the qmetaobject
crate.
Usage with the cpp
crate
Here is an example that make use of the types exposed by this crate in combination
with the cpp
crate to call native API:
In Cargo.toml
#...
[dependencies]
qttype = "0.1"
cpp = "0.5"
#...
[build-dependencies]
cpp_build = "0.5"
Note: It is important to depend directly on qttype
, it is not enough to rely on the
dependency coming transitively from another dependencies, otherwise the DEP_QT_*
environment variables won’t be defined.
Then in the build.rs
file:
fn main() {
let mut config = cpp_build::Config::new();
config.include(std::env::var("DEP_QT_INCLUDE_PATH").unwrap());
for f in std::env::var("DEP_QT_COMPILE_FLAGS").unwrap().split_terminator(";") {
config.flag(f);
}
config.build("src/main.rs");
}
With that, you can now use the types inside your .rs files:
let byte_array = qttypes::QByteArray::from("Hello World!");
cpp::cpp!([byte_array as "QByteArray"] { qDebug() << byte_array; });
You will find a small but working example in the qmetaobject-rs repository.
Cargo Features
required
: When this feature is enabled (the default), the build script will panic with an error if Qt is not found. Otherwise, when not enabled, the build will continue, but any use of the classes will panic at runtime.chrono
: enable the conversion betweenQDateTime
related types and the types from thechrono
crate.
Link against these Qt modules using cargo features:
Cargo feature | Qt module |
---|---|
qtmultimedia | Qt Multimedia |
qtmultimediawidgets | Qt Multimedia Widgets |
qtquick | Qt Quick |
qtquickcontrols2 | Qt Quick Controls |
qtsql | Qt SQL |
qttest | Qt Test |
qtwebengine | Qt WebEngine |
Structs
- Wrapper around
QBrush
class. - Wrapper around
QByteArray
class. - Wrapper around
QColor
class. - Wrapper around
QDate
class. - Wrapper around
QDateTime
class. - Wrapper around
QImage
class. - Wrapper around
QJsonArray
class. - Wrapper around
QJsonObject
class. - Wrapper around
QJsonValue
class. - Bindings for
QLineF
class. - Internal class used to iterate over a
QList
- Bindings for
QMargins
class. - Wrapper around
QModelIndex
class. - Wrapper around
QPainter
class. - Wrapper around
QPen
class. - Wrapper around
QPixmap
class. - Bindings for
QPoint
class. - Bindings for
QPointF
class. - Bindings for
QRectF
class. - Wrapper around
QSettings
class. - Bindings for
QSize
class. - Bindings for
QSizeF
class. - Wrapper around
QString
class. - Wrapper around
QStringList
class. - Wrapper around
QTime
class. - Wrapper around
QUrl
class. - Wrapper around
QVariant
class. - Wrapper around
QVariantList
typedef. - Wrapper around
QVariantMap
typedef. - Internal class used to iterate over a
QVariantMap
Enums
- Bindings for
Qt::BrushStyle
enum. - Bindings for
QImage::Format
enum class. - Bindings for
QString::NormalizationForm
enum. - Bindings for
Qt::PenStyle
enum. - Bindings for
QColor::NameFormat
enum class. - Bindings for
QColor::Spec
enum class. - Bindings for
QPainter::RenderHint
enum. - Bindings for
QStandardPaths::StandardLocation
enum. - Bindings for
QChar::UnicodeVersion
enum.