rearranging rust files
This commit is contained in:
parent
b76f027455
commit
748c7672be
7 changed files with 6 additions and 186 deletions
|
@ -1,24 +0,0 @@
|
|||
[package]
|
||||
name = "libre-presenter"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = [
|
||||
"Chris Cochrun <chris@cochrun.xyz>"
|
||||
]
|
||||
license = "GPL-3.0"
|
||||
|
||||
# This will instruct Cargo to create a static
|
||||
# library which CMake can link against
|
||||
[lib]
|
||||
crate-type = ["staticlib"]
|
||||
|
||||
[dependencies]
|
||||
cxx = "1.0.83"
|
||||
cxx-qt = "0.4.1"
|
||||
cxx-qt-lib = "0.4.1"
|
||||
|
||||
# cxx-qt-build generates C++ code from the `#[cxx_qt::bridge]` module
|
||||
# and compiles it together with the Rust static library
|
||||
[build-dependencies]
|
||||
cxx-qt-build = "0.4.1"
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
use cxx_qt_build::CxxQtBuilder;
|
||||
|
||||
fn main() {
|
||||
CxxQtBuilder::new().file("src/cxxqt_object.rs").build();
|
||||
CxxQtBuilder::new().file("src/service_thing.rs").build();
|
||||
}
|
|
@ -1,57 +0,0 @@
|
|||
#[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]
|
||||
pub struct MyObject {
|
||||
#[qproperty]
|
||||
number: i32,
|
||||
#[qproperty]
|
||||
string: QString,
|
||||
}
|
||||
|
||||
impl Default for MyObject {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
number: 0,
|
||||
string: QString::from(""),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl qobject::MyObject {
|
||||
#[qinvokable]
|
||||
pub fn increment_number(self: Pin<&mut Self>) {
|
||||
let previous = *self.as_ref().number();
|
||||
self.set_number(previous + 1);
|
||||
}
|
||||
|
||||
#[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_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"),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
pub fn add(left: usize, right: usize) -> usize {
|
||||
left + right
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn it_works() {
|
||||
let result = add(2, 2);
|
||||
assert_eq!(result, 4);
|
||||
}
|
||||
}
|
||||
|
||||
mod cxxqt_object;
|
||||
mod service_thing;
|
|
@ -1,80 +0,0 @@
|
|||
#[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