adding a basic other struct in rust... well trying...
This commit is contained in:
parent
7eba697dc2
commit
9644631f7c
11 changed files with 124 additions and 36 deletions
|
@ -3,7 +3,7 @@ add_executable(presenter main.cpp resources.qrc)
|
|||
|
||||
target_sources(presenter
|
||||
PRIVATE
|
||||
cpp/main.cpp resources.qrc
|
||||
main.cpp resources.qrc
|
||||
cpp/songsqlmodel.cpp cpp/songsqlmodel.h
|
||||
cpp/serviceitemmodel.cpp cpp/serviceitemmodel.h
|
||||
cpp/serviceitem.cpp cpp/serviceitem.h
|
||||
|
|
|
@ -34,17 +34,18 @@
|
|||
#include <qsqlquery.h>
|
||||
#include <qstringliteral.h>
|
||||
|
||||
#include "mpv/mpvobject.h"
|
||||
#include "serviceitemmodel.h"
|
||||
#include "songsqlmodel.h"
|
||||
#include "videosqlmodel.h"
|
||||
#include "imagesqlmodel.h"
|
||||
#include "presentationsqlmodel.h"
|
||||
#include "filemanager.h"
|
||||
#include "slide.h"
|
||||
#include "cpp/mpv/mpvobject.h"
|
||||
#include "cpp/serviceitemmodel.h"
|
||||
#include "cpp/songsqlmodel.h"
|
||||
#include "cpp/videosqlmodel.h"
|
||||
#include "cpp/imagesqlmodel.h"
|
||||
#include "cpp/presentationsqlmodel.h"
|
||||
#include "cpp/filemanager.h"
|
||||
#include "cpp/slide.h"
|
||||
|
||||
// RUST
|
||||
#include "cxx-qt-gen/my_object.cxxqt.h"
|
||||
#include "cxx-qt-gen/service_thing.cxxqt.h"
|
||||
|
||||
static void connectToDatabase() {
|
||||
// let's setup our sql database
|
||||
|
@ -132,6 +133,7 @@ int main(int argc, char *argv[])
|
|||
qmlRegisterType<PresentationSqlModel>("org.presenter", 1, 0, "PresentationSqlModel");
|
||||
qmlRegisterType<ServiceItemModel>("org.presenter", 1, 0, "ServiceItemModel");
|
||||
qmlRegisterType<MyObject>("org.presenter", 1, 0, "MyObject");
|
||||
qmlRegisterType<ServiceThing>("org.presenter", 1, 0, "ServiceThing");
|
||||
qmlRegisterSingletonInstance("org.presenter", 1, 0, "SlideObject", slide.get());
|
||||
qmlRegisterSingletonInstance("org.presenter", 1, 0, "FileManager", filemanager.get());
|
||||
|
|
@ -45,6 +45,7 @@ FocusScope {
|
|||
text: "Solo"
|
||||
icon.name: "viewimage"
|
||||
hoverEnabled: true
|
||||
onClicked: myObject.slapVariantAround(imagesqlmodel.getImage(1).title);
|
||||
}
|
||||
Controls.ToolButton {
|
||||
text: "Grid"
|
||||
|
@ -130,15 +131,12 @@ FocusScope {
|
|||
anchors.horizontalCenter: previewSlide.horizontalCenter
|
||||
/* Layout.columnSpan: 3 */
|
||||
visible: itemType === "video";
|
||||
Kirigami.Icon {
|
||||
source: previewSlide.mpvIsPlaying ? "media-pause" : "media-play"
|
||||
Controls.ToolButton {
|
||||
Layout.preferredWidth: 25
|
||||
Layout.preferredHeight: 25
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
onPressed: SlideObject.playPause();
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
}
|
||||
icon.name: previewSlide.mpvIsPlaying ? "media-pause" : "media-play"
|
||||
hoverEnabled: true
|
||||
onClicked: SlideObject.playPause();
|
||||
}
|
||||
Controls.Slider {
|
||||
id: videoSlider
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
[package]
|
||||
name = "qml-minimal"
|
||||
name = "libre-presenter"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = [
|
||||
"Chris Cochrun <chris@cochrun.xyz>"
|
||||
]
|
||||
license = "MIT OR Apache-2.0"
|
||||
license = "GPL-3.0"
|
||||
|
||||
# This will instruct Cargo to create a static
|
||||
# library which CMake can link against
|
||||
|
|
|
@ -2,4 +2,5 @@ use cxx_qt_build::CxxQtBuilder;
|
|||
|
||||
fn main() {
|
||||
CxxQtBuilder::new().file("src/cxxqt_object.rs").build();
|
||||
CxxQtBuilder::new().file("src/service_thing.rs").build();
|
||||
}
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
#[cxx_qt::bridge]
|
||||
mod my_object {
|
||||
use cxx_qt_lib::QVariantValue;
|
||||
|
||||
unsafe extern "C++" {
|
||||
include!("cxx-qt-lib/qstring.h");
|
||||
type QString = cxx_qt_lib::QString;
|
||||
include!("cxx-qt-lib/qvariant.h");
|
||||
type QVariant = cxx_qt_lib::QVariant;
|
||||
}
|
||||
|
||||
#[cxx_qt::qobject]
|
||||
|
@ -31,11 +34,24 @@ mod my_object {
|
|||
}
|
||||
|
||||
#[qinvokable]
|
||||
pub fn say_hi(&self, string: &QString, number: i32) {
|
||||
pub fn say_hi(self: Pin<&mut Self>, string: &QString, number: i32) {
|
||||
println!(
|
||||
"Hi from Rust! String is '{}' and number is {}",
|
||||
string, number
|
||||
);
|
||||
println!("length is: {}", string.to_string().len());
|
||||
let mut nstr: String = string.to_string();
|
||||
nstr.push_str(" hi");
|
||||
self.set_string(QString::from(nstr.as_str()));
|
||||
}
|
||||
|
||||
#[qinvokable]
|
||||
pub fn slap_variant_around(self: Pin<&mut Self>, variant: &QVariant) {
|
||||
println!("wow!");
|
||||
match variant.value() {
|
||||
QVariantValue::QString(string) => self.set_string(string),
|
||||
_ => println!("Unknown QVariant type"),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,3 +14,4 @@ mod tests {
|
|||
}
|
||||
|
||||
mod cxxqt_object;
|
||||
mod service_thing;
|
||||
|
|
80
src/rust/src/service_thing.rs
Normal file
80
src/rust/src/service_thing.rs
Normal file
|
@ -0,0 +1,80 @@
|
|||
#[cxx_qt::bridge]
|
||||
mod service_thing {
|
||||
use cxx_qt_lib::QVariantValue;
|
||||
|
||||
unsafe extern "C++" {
|
||||
include!("cxx-qt-lib/qstring.h");
|
||||
type QString = cxx_qt_lib::QString;
|
||||
include!("cxx-qt-lib/qvariant.h");
|
||||
type QVariant = cxx_qt_lib::QVariant;
|
||||
}
|
||||
|
||||
#[cxx_qt::qobject]
|
||||
pub struct ServiceThing {
|
||||
#[qproperty]
|
||||
name: QString,
|
||||
#[qproperty]
|
||||
kind: QString,
|
||||
#[qproperty]
|
||||
background: QString,
|
||||
#[qproperty]
|
||||
background_type: QString,
|
||||
#[qproperty]
|
||||
text: QString,
|
||||
#[qproperty]
|
||||
audio: QString,
|
||||
#[qproperty]
|
||||
font: QString,
|
||||
#[qproperty]
|
||||
font_size: QString,
|
||||
#[qproperty]
|
||||
active: bool,
|
||||
#[qproperty]
|
||||
selected: bool,
|
||||
}
|
||||
|
||||
impl Default for ServiceThing {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
name: QString::from(""),
|
||||
kind: QString::from(""),
|
||||
background: QString::from(""),
|
||||
background_type: QString::from(""),
|
||||
text: QString::from(""),
|
||||
audio: QString::from(""),
|
||||
font: QString::from(""),
|
||||
font_size: QString::from(""),
|
||||
active: false,
|
||||
selected: false,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl qobject::ServiceThing {
|
||||
#[qinvokable]
|
||||
pub fn activate(self: Pin<&mut Self>) {
|
||||
self.set_active(true);
|
||||
}
|
||||
|
||||
#[qinvokable]
|
||||
pub fn say_hi(self: Pin<&mut Self>, string: &QString, number: i32) {
|
||||
println!(
|
||||
"Hi from Rust! String is '{}' and number is {}",
|
||||
string, number
|
||||
);
|
||||
println!("length is: {}", string.to_string().len());
|
||||
let mut nstr: String = string.to_string();
|
||||
nstr.push_str(" hi");
|
||||
self.set_name(QString::from(nstr.as_str()));
|
||||
}
|
||||
|
||||
#[qinvokable]
|
||||
pub fn slap_variant_around(self: Pin<&mut Self>, variant: &QVariant) {
|
||||
println!("wow!");
|
||||
match variant.value() {
|
||||
QVariantValue::QString(string) => self.set_name(string),
|
||||
_ => println!("Unknown QVariant type"),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue