Code Monkey home page Code Monkey logo

Comments (6)

GuillaumeGomez avatar GuillaumeGomez commented on August 27, 2024 1

Done!

from gtk4-rs.

sdroege avatar sdroege commented on August 27, 2024

Can you describe what exactly you were compiling and how? gtk4 = { git = "https://github.com/gtk-rs/gtk4-rs.git" } would be correct for a crate outside this repository.

from gtk4-rs.

jpercyasnet avatar jpercyasnet commented on August 27, 2024

this is the main.rs file:

//! # Basic Sample
//!
//! This sample demonstrates how to create a toplevel `window`, set its title, size and
//! position, how to add a `button` to this `window` and how to connect signals with
//! actions.
use gtk4::prelude::*;

use std::env::args;

fn build_ui(application: &gtk4::Application) {
    let window = gtk4::ApplicationWindow::new(application);

    window.set_title(Some("First GTK Program"));
    window.set_default_size(350, 70);

    let button = gtk4::Button::with_label("Click me!");

    window.set_child(Some(&button));

    window.show();
}

fn main() {
    let application =
        gtk4::Application::new(Some("com.github.gtk-rs.examples.basic"), Default::default())
            .expect("Initialization failed...");

    application.connect_activate(|app| {
        build_ui(app);
    });

    application.run(&args().collect::<Vec<_>>());
}

and this is the Cargo.toml file:

[package]
name = "basictest"
version = "0.1.0"
authors = ["jp"]
edition = "2018"

[dependencies]
gtk4 = { git = "https://github.com/gtk-rs/gtk4.git" }

just did the normal cargo new basictest and executed cargo run in the new directory.

from gtk4-rs.

sdroege avatar sdroege commented on August 27, 2024

Yes that looks correct but you should better use https://github.com/gtk-rs/gtk4-rs.git instead of https://github.com/gtk-rs/gtk4.git. You're currently using the old repository.

What exactly is the problem though?

from gtk4-rs.

bilelmoussaoui avatar bilelmoussaoui commented on August 27, 2024

Yes that looks correct but you should better use https://github.com/gtk-rs/gtk4-rs.git instead of https://github.com/gtk-rs/gtk4.git. You're currently using the old repository.

We should archive all the old gtk4 repositories as they are just very confusing and are not useful any more.
cc @GuillaumeGomez

from gtk4-rs.

bilelmoussaoui avatar bilelmoussaoui commented on August 27, 2024

Thank you !

from gtk4-rs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.