Commit graph

99 commits

Author SHA1 Message Date
504b4bc944 fixy 2025-07-25 15:19:21 -05:00
92f2b18a20 rust side builds but having trouble linking in main.cpp 2025-03-12 09:35:36 -05:00
0ba3e7588b fixing lots of bugs 2025-03-10 23:18:30 -05:00
2c014e242f Refactoring to slide_model and service_item getting the data from db
This is kinda a broken commit. There isn't any order to the adding of
the slide anymore. So it'll need to find a way of keeping track of
where all the current slides are and then insert the new ones in the
correct order while moving the others around as well.
2024-10-02 14:48:16 -05:00
6052cd01ac trying to move slide building to more backend focused 2024-10-02 10:38:40 -05:00
836c997e97 adding SlideType to slide_model 2024-09-27 06:12:41 -05:00
3f4288c0d2 adding the prev function to cxx 2024-09-26 20:45:03 -05:00
8463af6ad9 moving more of the logic to slide_model
With more of the logic coming to the rust models, I can start to make
compile time guarantees.
2024-09-26 14:54:25 -05:00
8c7f2d794f starting to change slide_model to have the logic of changing slides
In order to make slide_object dumber and and not need to keep track of
slide info, we are moving the business logic to slide_model so that
the model can keep track of whether presentations are ready to switch
and don't need to run reveal_next or something.
2024-09-26 14:11:30 -05:00
4c403d9f3c embedding the slide_model in the slide_object 2024-09-26 06:39:06 -05:00
4659cb6de5 trying to fix the slides not showing a newly created video_thumbnail 2024-09-18 09:35:06 -05:00
9b75c366de saving some updates 2024-09-17 15:32:34 -05:00
0cac11cb89 remove some unnecessary use and type statements 2024-09-17 06:23:03 -05:00
27acbdc866 fixing name clobbering in qobjects.
Apparently qobjects need unique names or else they will name clobber.
2024-09-15 06:11:34 -05:00
b4ce082891 rename all cxx_qt::bridge modules to qobject for clarity 2024-09-15 06:10:06 -05:00
398bc58525 build correctly for real now 2024-09-04 14:28:43 -05:00
0ebdaf2921 builds correctly now 2024-09-04 14:17:59 -05:00
bf9f65fade some thoughts? 2024-07-17 13:48:27 -05:00
7302807f5f some prelim movement of slide_model controlling changes 2024-07-14 15:05:09 -05:00
4989380865 trying to simplify the way we create slides 2024-06-26 10:44:20 -05:00
da1c4f84b5 fixing name clobbering in qobjects.
Apparently qobjects need unique names or else they will name clobber.
2024-06-26 09:12:11 -05:00
cbf5fe3d9d clippy-fix 2024-06-25 23:04:30 -05:00
aa0eeaaeed rename all cxx_qt::bridge modules to qobject for clarity 2024-06-24 16:40:37 -05:00
9d9ecb3cc0 rustfmt things 2024-04-14 10:50:30 -05:00
2428792895 adding a custom loading spinner to slides 2024-04-11 09:33:03 -05:00
5df0302be9 using std::thread for ffmpeg calls since it takes long on big videos 2024-04-10 22:24:57 -05:00
effede9da1 fix video thumbs? 2024-04-10 15:30:42 -05:00
64095d6fed async setup for using ffmpeg in the slide model 2024-04-10 11:42:01 -05:00
70040c5149 some basics of video times - unfinished 2024-04-10 09:49:50 -05:00
461d25a73d a somewhat working system of video start and end times 2024-04-07 21:34:31 -05:00
00fcf565ef making obs scene switching more coherent, but still not functional 2024-04-07 06:56:44 -05:00
1117d6eea2 pdf and html now properly work in slides 2024-03-31 14:34:43 -05:00
bd78eb4986 fixing some loops and debug info 2024-03-07 12:04:17 -06:00
9c30af7a5b fixing slide_model moves not following service_item moves 2024-01-22 11:19:45 -06:00
72e3a75d94 more debug info 2024-01-19 17:12:04 -06:00
2e43cd87eb trying to debug slide moving with service_item moves 2024-01-19 10:40:05 -06:00
8b23c9809c fixing the transition of the previewSlideList following active item 2024-01-18 04:20:39 -06:00
da258433d9 Adding reveal next and previous buttons
In order to make this work, I had to determine in rust which were html
and essentially not call the change_slide function and instead call
the reveal_next/previous functions and then tweak it from there.
2024-01-17 11:26:04 -06:00
791bcc146e attempting to switch the next button to using slibe_object for a
cleaner interaction
2024-01-17 09:46:23 -06:00
335afba9c0 fixing bug in inserting things with multiple slides 2024-01-16 13:54:31 -06:00
692b847a05 preparing to use obs in the slide model 2023-11-29 14:38:23 -06:00
1de0058646 some possible ideas for how obs should work 2023-11-29 09:48:09 -06:00
744481587f initial port to cxx_qt 6.0 2023-11-27 11:07:55 -06:00
62daf316a3 Quite a few of the models have been ported.. need more though.
Still need all the songs and some small utility modules
2023-11-23 06:12:04 -06:00
81b430e768 slides, settings, and file stuff ported 2023-11-21 17:31:19 -06:00
3c2f74ae66 fixed bug: activating service item switches the slide list properly 2023-11-20 06:21:18 -06:00
c6700907b1 attempt at fixing bug with slides not activating with service item 2023-11-16 11:21:00 -06:00
e30066b101 revealJS presentations work sorta
I still have lots of bugs, but the groundwork is there. At least a
proof of concept.
2023-11-14 21:39:30 -06:00
7dc680ad3c fix pdf not using correct slide_index 2023-11-13 13:31:09 -06:00
affaf7a53b make adding presentations properly add the right number of slides
To make sure we know how many slides are in a presentation we needed
to ensure we are using Urls appropriately and that we are looking in
the correct key in the QVariantMap
2023-09-29 16:32:45 -05:00