basic updates to make cxx-qt work with 6.0
This commit is contained in:
parent
6b3559b4ef
commit
5d571a7e6f
2 changed files with 171 additions and 170 deletions
|
@ -1,7 +1,5 @@
|
||||||
#[cxx_qt::bridge]
|
#[cxx_qt::bridge]
|
||||||
mod service_thing {
|
mod service_thing {
|
||||||
use cxx_qt_lib::QVariantValue;
|
|
||||||
|
|
||||||
unsafe extern "C++" {
|
unsafe extern "C++" {
|
||||||
include!("cxx-qt-lib/qstring.h");
|
include!("cxx-qt-lib/qstring.h");
|
||||||
type QString = cxx_qt_lib::QString;
|
type QString = cxx_qt_lib::QString;
|
||||||
|
@ -9,32 +7,46 @@ mod service_thing {
|
||||||
type QVariant = cxx_qt_lib::QVariant;
|
type QVariant = cxx_qt_lib::QVariant;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
unsafe extern "RustQt" {
|
||||||
#[cxx_qt::qobject]
|
#[qobject]
|
||||||
pub struct ServiceThing {
|
#[qml_element]
|
||||||
#[qproperty]
|
#[qproperty(QString, name)]
|
||||||
name: QString,
|
#[qproperty(QString, kind)]
|
||||||
#[qproperty]
|
#[qproperty(QString, background)]
|
||||||
kind: QString,
|
#[qproperty(QString, background_type)]
|
||||||
#[qproperty]
|
#[qproperty(QString, text)]
|
||||||
background: QString,
|
#[qproperty(QString, audio)]
|
||||||
#[qproperty]
|
#[qproperty(QString, font)]
|
||||||
background_type: QString,
|
#[qproperty(QString, font_size)]
|
||||||
#[qproperty]
|
#[qproperty(bool, active)]
|
||||||
text: QString,
|
#[qproperty(bool, selected)]
|
||||||
#[qproperty]
|
type ServiceThing = super::ServiceThingRust;
|
||||||
audio: QString,
|
|
||||||
#[qproperty]
|
|
||||||
font: QString,
|
|
||||||
#[qproperty]
|
|
||||||
font_size: QString,
|
|
||||||
#[qproperty]
|
|
||||||
active: bool,
|
|
||||||
#[qproperty]
|
|
||||||
selected: bool,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for ServiceThing {
|
#[qinvokable]
|
||||||
|
fn activate(self: Pin<&mut ServiceThing>);
|
||||||
|
|
||||||
|
#[qinvokable]
|
||||||
|
fn check_active(self: Pin<&mut ServiceThing>);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
use cxx_qt_lib::QString;
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct ServiceThingRust {
|
||||||
|
name: QString,
|
||||||
|
kind: QString,
|
||||||
|
background: QString,
|
||||||
|
background_type: QString,
|
||||||
|
text: QString,
|
||||||
|
audio: QString,
|
||||||
|
font: QString,
|
||||||
|
font_size: QString,
|
||||||
|
active: bool,
|
||||||
|
selected: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for ServiceThingRust {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
name: QString::from(""),
|
name: QString::from(""),
|
||||||
|
@ -49,9 +61,9 @@ mod service_thing {
|
||||||
selected: false,
|
selected: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl qobject::ServiceThing {
|
impl qobject::ServiceThing {
|
||||||
#[qinvokable]
|
#[qinvokable]
|
||||||
pub fn activate(self: Pin<&mut Self>) {
|
pub fn activate(self: Pin<&mut Self>) {
|
||||||
println!("{}", self.active());
|
println!("{}", self.active());
|
||||||
|
@ -64,20 +76,4 @@ mod service_thing {
|
||||||
pub fn check_active(self: Pin<&mut Self>) {
|
pub fn check_active(self: Pin<&mut Self>) {
|
||||||
println!("Are we active?: {}", self.active());
|
println!("Are we active?: {}", self.active());
|
||||||
}
|
}
|
||||||
|
|
||||||
// #[qinvokable]
|
|
||||||
// pub fn slap_variant_around(self: Pin<&mut Self>, variant: &QVariant) {
|
|
||||||
// println!("wow!");
|
|
||||||
// let sname: String;
|
|
||||||
// match variant.value() {
|
|
||||||
// QVariantValue::QString(string) => {
|
|
||||||
// let nstr = string.to_string();
|
|
||||||
// self.set_name(QString::from(nstr.as_str()));
|
|
||||||
// sname = nstr;
|
|
||||||
// println!("New name is: {}", sname);
|
|
||||||
// }
|
|
||||||
// _ => println!("Unknown QVariant type"),
|
|
||||||
// };
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,5 @@
|
||||||
#[cxx_qt::bridge]
|
#[cxx_qt::bridge]
|
||||||
mod settings {
|
mod settings {
|
||||||
|
|
||||||
use configparser::ini::Ini;
|
|
||||||
use dirs;
|
|
||||||
use std::path::PathBuf;
|
|
||||||
|
|
||||||
unsafe extern "C++" {
|
unsafe extern "C++" {
|
||||||
include!("cxx-qt-lib/qstring.h");
|
include!("cxx-qt-lib/qstring.h");
|
||||||
type QString = cxx_qt_lib::QString;
|
type QString = cxx_qt_lib::QString;
|
||||||
|
@ -12,11 +7,25 @@ mod settings {
|
||||||
type QUrl = cxx_qt_lib::QUrl;
|
type QUrl = cxx_qt_lib::QUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
// In order for settings to save to the ini file,
|
unsafe extern "RustQt" {
|
||||||
// I'll need to create my own setting functions I think.
|
#[qobject]
|
||||||
#[derive(Clone)]
|
#[qml_element]
|
||||||
#[cxx_qt::qobject]
|
#[qproperty(QString, screen)]
|
||||||
pub struct Settings {
|
#[qproperty(QString, sound_effect)]
|
||||||
|
#[qproperty(QUrl, last_save_file)]
|
||||||
|
#[qproperty(QUrl, loaded_file)]
|
||||||
|
type Settings = super::SettingsRust;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
use configparser::ini::Ini;
|
||||||
|
use dirs;
|
||||||
|
use std::path::PathBuf;
|
||||||
|
|
||||||
|
// In order for settings to save to the ini file,
|
||||||
|
// I'll need to create my own setting functions I think.
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct SettingsRust {
|
||||||
config: Ini,
|
config: Ini,
|
||||||
|
|
||||||
#[qproperty]
|
#[qproperty]
|
||||||
|
@ -27,9 +36,9 @@ mod settings {
|
||||||
last_save_file: QUrl,
|
last_save_file: QUrl,
|
||||||
#[qproperty]
|
#[qproperty]
|
||||||
loaded_file: QUrl,
|
loaded_file: QUrl,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for Settings {
|
impl Default for SettingsRust {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
config: Ini::new(),
|
config: Ini::new(),
|
||||||
|
@ -39,9 +48,9 @@ mod settings {
|
||||||
loaded_file: QUrl::from(""),
|
loaded_file: QUrl::from(""),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl qobject::Settings {
|
impl qobject::Settings {
|
||||||
#[qinvokable]
|
#[qinvokable]
|
||||||
pub fn print_sound(self: Pin<&mut Self>) {
|
pub fn print_sound(self: Pin<&mut Self>) {
|
||||||
let mut config = Ini::new();
|
let mut config = Ini::new();
|
||||||
|
@ -68,8 +77,7 @@ mod settings {
|
||||||
if let Some(s) = sf {
|
if let Some(s) = sf {
|
||||||
self.as_mut()
|
self.as_mut()
|
||||||
.set_last_save_file(QUrl::from(&s));
|
.set_last_save_file(QUrl::from(&s));
|
||||||
self.as_mut()
|
self.as_mut().set_loaded_file(QUrl::from(&s));
|
||||||
.set_loaded_file(QUrl::from(&s));
|
|
||||||
println!("{s}");
|
println!("{s}");
|
||||||
} else {
|
} else {
|
||||||
println!("error loading last save file");
|
println!("error loading last save file");
|
||||||
|
@ -108,9 +116,7 @@ mod settings {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn write(
|
pub fn write(mut self: Pin<&mut Self>) -> std::io::Result<&str> {
|
||||||
mut self: Pin<&mut Self>,
|
|
||||||
) -> std::io::Result<&str> {
|
|
||||||
let mut file = dirs::config_dir().unwrap();
|
let mut file = dirs::config_dir().unwrap();
|
||||||
file.push("lumina");
|
file.push("lumina");
|
||||||
file.push("lumina.conf");
|
file.push("lumina.conf");
|
||||||
|
@ -122,5 +128,4 @@ mod settings {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue