github中的子模块(git submodule) git中支持引用另外一个开源库,并且可以指定依赖的分支或者提交记录号。 比如fltk-rs库的fltk-sys模块依赖了库cfltk并指明了依赖的提交是8a56507 甚至可以嵌套,毕竟库自身也不知道自己给别人当了子。比如上面这个 cfltk 又依赖了fltk @ 324fcfc 但是如果你单纯使用git clone {url...
openglaxisfltk-rselectocardiogram UpdatedOct 20, 2022 A Text Editor created with Rust Programming Language, currently on build ... rusttexteditorfltk-rs UpdatedOct 11, 2021 Rust An addon installer for Left 4 Dead 2 that will let you use them on official versus/scavenge servers ...
Rust bindings for the FLTK GUI library. Contribute to fltk-rs/fltk-rs development by creating an account on GitHub.
use fltk::{prelude::*, *}; use fltk_decl::{DeclarativeApp, Widget}; // use the extension you require! const PATH: &str = "examples/gui.json"; #[derive(Clone, Copy)] struct State { count: i32, } impl State { pub fn increment(&mut self, val: i32) { let mut result: frame:...
A smart table widget for fltk-rs. Contribute to fltk-rs/fltk-table development by creating an account on GitHub.
fltk-rs surrounds all mutating calls to widgets with a lock on the C++ wrapper side. Normally you wouldn't have to call app::lock() and app::unlock(). This depends however on the support of recursive mutexes in your system. If you notice haning in multithreaded applications, you might ...
A smart table widget for fltk-rs. It aims to reduce the amount of boilerplate required to create a table. Usage [dependencies]fltk="1.2"fltk-table="0.1" Example usefltk::{app,enums,prelude::{GroupExt,WidgetExt},window,};usefltk_table::{SmartTable,TableOpts};fnmain(){letapp = app::...
[dependencies] fltk = "^1.5"To use the latest changes in the repo:[dependencies] fltk = { version = "^1.5", git = "https://github.com/fltk-rs/fltk-rs" }Or if you have other depenendencies which depend on fltk-rs:[dependencies] fltk = "^1.5" [patch.crates-io] fltk = { git...
A theming crate for fltk-rs. The widget themes are based on work by Remy Oukaour and Rangi42. The color themes are based on work by Greg Ercolano. Some of the widget schemes are based on work by the NTK GUI library, others are nouveau. Definitions Color theme A color theme modify FL...
https://fltk-rs.github.io/fltk-book 本書的中文翻譯 You can print and save as pdf to read at your convenience. To contribute: 1- You need to cargo install mdbook 2- Fork this repo and clone your fork. 3- modify files. 4- run mdbook build. 5- check things are correct by running ...