diff --git a/TODO.org b/TODO.org index f4368e0..0333b8b 100644 --- a/TODO.org +++ b/TODO.org @@ -11,6 +11,8 @@ A 1.0 release may be achievable soon as long as I can figure out what is good to *** DONE REFACTORING THE BACKEND A large portion of the back I am refactoring to create a slide class with a slide object for QML to look at as the master slide. Then a slide model for us to use to know for sure what the next slide will look like always and jump to it better within listviews and gridviews. Then use a serviceitemmodel that is aware of the slidemodel to know which slides belong to it. A lot of the UI will need to be refactored a bit to point to the new objects properly. +Could start working on moving slide.h and slide.cpp to a slide.rs. Then creating a slide_object.rs. Then maybe a service_item.rs. Creating these very basic classes in Rust would mean I start learning more and more Rust, and I would be preventing more memory bugs. + *** TODO What is out Some of the special effects and things that I wanted to do could perhaps hold off. A lot of the things that I want to do to help make this really special could hold off. Blur, Color Adjustments, and Shadows for backgrounds and text and stuff can hold off for now. More of the special propresenter kind of things. diff --git a/src/qml/presenter/Presentation.qml b/src/qml/presenter/Presentation.qml index 89c8330..d770524 100644 --- a/src/qml/presenter/Presentation.qml +++ b/src/qml/presenter/Presentation.qml @@ -45,7 +45,7 @@ FocusScope { text: "Solo" icon.name: "viewimage" hoverEnabled: true - onClicked: serviceThing.slapVariantAround(imagesqlmodel.getImage(1).title); + onClicked: serviceThing.slapVariantAround(ServiceItemModel.getItems()); } Controls.ToolButton { text: "Grid" diff --git a/src/rust/file_helper.rs b/src/rust/file_helper.rs index 3b082e8..6538ebf 100644 --- a/src/rust/file_helper.rs +++ b/src/rust/file_helper.rs @@ -7,8 +7,6 @@ mod file_helper { type QString = cxx_qt_lib::QString; include!("cxx-qt-lib/qurl.h"); type QUrl = cxx_qt_lib::QUrl; - include!("cxx-qt-lib/qdate.h"); - type QDate = cxx_qt_lib::QDate; include!("cxx-qt-lib/qvariant.h"); type QVariant = cxx_qt_lib::QVariant; }