mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-10-31 04:58:58 +00:00
29 lines
422 B
Vala
29 lines
422 B
Vala
using Gtk;
|
|
using Gitg;
|
|
|
|
class TestProgressGrid
|
|
{
|
|
public static int main(string[] args)
|
|
{
|
|
Gtk.init(ref args);
|
|
Gitg.init();
|
|
|
|
var window = new Window();
|
|
window.set_default_size(300, 300);
|
|
var grid = new ProgressBin();
|
|
grid.fraction = 0.3;
|
|
window.add(grid);
|
|
window.show_all();
|
|
|
|
window.delete_event.connect((w, ev) => {
|
|
Gtk.main_quit();
|
|
return true;
|
|
});
|
|
|
|
Gtk.main();
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
// vi:ts=4
|