Compare commits

..

11 Commits

Author SHA1 Message Date
9cccb7af89 Ignore Cargo.lock
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-09-11 15:08:55 +01:00
b77c0cf50c Remove Cargo.lock 2022-09-11 15:08:40 +01:00
2858158277 Figured out a ton of things now, Let's make an actual UI this time! 2022-09-11 15:05:26 +01:00
61dd0f22a9 wood pecker
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-09-10 16:45:18 +01:00
aaabc484ad json parsing works, and invidious extra works, yay??
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-09-10 16:32:54 +01:00
f8bc34a93d trigger CI
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-09-08 13:11:10 +01:00
80b37cc348 wooooo 2022-09-08 13:10:23 +01:00
fa650374de Readme stay here 2022-09-08 11:35:17 +01:00
22a443d5fd get out of here 2022-09-08 11:29:05 +01:00
6b9e407f8f move one directory up 2022-09-08 11:28:36 +01:00
d7a1c50dc6 New dev branch 2022-09-08 10:24:04 +01:00
10 changed files with 141 additions and 62 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/target
Cargo.lock

23
.woodpecker.yml Normal file
View File

@@ -0,0 +1,23 @@
pipeline:
build:
when:
event: [push, pull_request]
image: rust:latest
commands:
- cargo update
- cargo build
- cargo test
- echo "Done building!"
gzip:
when:
event: [push]
image: rust:latest
commands:
- mkdir ../artifact
- mv target/debug ../artifact
- tar -c -z -v -f gtubek-dev.tar.gz ../artifact
#upload:
#when:
#event: [push]
#image:

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "gtubek"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gtk = { version = "0.4.8", package = "gtk4" }
adw = { version = "0.1.1", package = "libadwaita" }
invidious = "0.3.2"
gtk-ui-builder = "0.2.0"
serde_json = "1.0"
[profile.release]
strip = true

10
inv.rs
View File

@@ -1,10 +0,0 @@
use invidious::reqwest::blocking::Client;
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
let client = Client::new(String::from("https://vid.puffyan.us"));
let search_results = client.search(Some("q=rust programming"))?.items;
let video = client.video("5C_HPTJg5ek", None)?;
Ok(())
}

52
main.rs
View File

@@ -1,52 +0,0 @@
use adw::Application;
use std::time::Duration;
use gtk::Video;
use gtk::gio;
use std::fs::File;
use std::path::Path;
use gtk::prelude::*;
use gtk::{self, ApplicationWindow, Button, prelude::*};
use invidious::reqwest::blocking::functions::video;
mod inv;
const APP_ID: &str = "org.gtk_rs.MainEventLoop1";
fn main() {
// Create a new application
let app = Application::builder().application_id(APP_ID).build();
// Connect to "activate" signal of `app`
app.connect_activate(build_ui);
print!("{}: {}", video.title, video.author);
// Run the application
app.run();
}
fn build_ui(app: &Application) {
// Create a button
let button = Button::builder()
.label("Press me!")
.margin_top(12)
.margin_bottom(12)
.margin_start(12)
.margin_end(12)
.build();
let video = Video::for_file(Some(&gio::File::for_path("/home/midou/Vidéos/miui.mp4")));
// Create a window
let window = ApplicationWindow::builder()
.application(app)
.title("My GTK App")
.child(&button)
.child(&video)
.build();
// Present window
window.present();
}

BIN
nikolor.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

13
src/inv.rs Normal file
View File

@@ -0,0 +1,13 @@
use invidious::reqwest::blocking::Client;
use std::error::Error;
//use serde::{Deserialize, Serialize};
//use serde_json::Result;
pub fn inv() -> Result<(), Box<dyn Error>> {
let client = Client::new(String::from("https://invidious.projectsegfau.lt"));
let search_results = client.search(Some("q=rust programming"))?.items;
let video = client.video("5C_HPTJg5ek", None)?;
//println!("{:?}", video);
println!("{:?}", video.format_streams[2].url);
Ok(())
}

87
src/main.rs Normal file
View File

@@ -0,0 +1,87 @@
use adw::Application;
use std::time::Duration;
use gtk::Video;
use gtk::gio;
use std::fs::File;
use std::path::Path;
use gtk::prelude::*;
use gtk::{self, ApplicationWindow, Button, prelude::*, ListBox, FlowBox, PolicyType, ScrolledWindow, Box, Orientation, Align::*};
use crate::inv::inv;
mod inv;
const APP_ID: &str = "org.gtk_rs.MainEventLoop1";
fn main() {
// Create a new application
let app = Application::builder().application_id(APP_ID).build();
// Connect to "activate" signal of `app`
app.connect_activate(build_ui);
//print!("{:?}", output);
// Run the application
app.run();
}
fn build_ui(app: &Application) {
// Create a button
let button = Button::builder()
.label("Press me!")
.icon_name("fingerprint-authentication-symbolic")
.valign(Fill)
.vexpand(true)
.margin_top(12)
.margin_bottom(12)
.margin_start(12)
.margin_end(12)
.build();
//button.connect_clicked(move |_| trig_play());
let video = Video::for_file(Some(&gio::File::for_path("/home/midou/Vidéos/miui.mp4")));
//let output = inv::inv();
//let video = Video::for_media_stream(Some(&output));
/*
// Set a listBox
let listbox = ListBox::builder()
.child(&video)
.build();
*/
// Set a box
let boxy = Box::new(Orientation::Vertical, 0);
boxy.append(&video);
boxy.append(&button);
// Then make the window scrollable
let scrolled_window = ScrolledWindow::builder()
// .hscrollbar_policy(PolicyType::Never) // Disable horizontal scrolling
// .hscrollbar_policy()
.min_content_width(360)
.child(&boxy)
.build();
// Create a window
let window = ApplicationWindow::builder()
.application(app)
.default_width(1280)
.default_height(720)
.title("My GTK App")
.child(&scrolled_window)
.build();
// Present window
window.present();
}
//fn trig_play() {
// let trigger =
//}

View File