#gtk #box #modal #button #message #multi-platform

msgbox

A multi-platform message box modal with a OK button, which runs synchronously

7 releases (breaking)

Uses old Rust 2015

0.7.0 Feb 15, 2022
0.6.1 Jul 2, 2021
0.6.0 Nov 5, 2020
0.5.0 Apr 21, 2020
0.1.0 Jan 20, 2017

#288 in GUI

Download history 173/week @ 2023-11-17 189/week @ 2023-11-24 71/week @ 2023-12-01 105/week @ 2023-12-08 131/week @ 2023-12-15 117/week @ 2023-12-22 74/week @ 2023-12-29 129/week @ 2024-01-05 152/week @ 2024-01-12 104/week @ 2024-01-19 118/week @ 2024-01-26 77/week @ 2024-02-02 228/week @ 2024-02-09 213/week @ 2024-02-16 270/week @ 2024-02-23 174/week @ 2024-03-01

897 downloads per month
Used in 8 crates

MIT license

11KB
195 lines

msgbox-rs

OS Build Status
Linux & OS X Build Status
Windows Build status
extern crate msgbox;

use msgbox::IconType;

fn main() {
    msgbox::create("Hello Title", "Hello World!", IconType::Info);
}

Simple, cross-platform message box GUI library.

All it does is to show a message box modal with an OK button, which runs synchronously.

It supports multi-platform, and maintains separate dependencies per platform, thus light-weight.

Example use case is to show a modal when an error occurs in OpenGL applications.

  • Synchronous Message Modal
  • Multi-platform (Linux GTK3+, Windows and OS X)
  • Light-weight

Platform support

  • Linux with GTK 3+ (Tested on Ubuntu Gnome 16.04)
  • Windows (Tested on Windows 8.1 and 10)
  • OS X (Tested on MacOS 10.13.3 High Sierra)

Dev Requirements

Linux

  • libgtk-3-dev for apt
  • gtk3-devel for yum

Windows

  • Windows version compatible with winapi

OS X

  • Tested on High Sierra 10.13.3, but it should work on 10.3+

License

Distributed under MIT License

Dependencies

~0.3–4MB
~96K SLoC