tootle-linux-client/src/Application.vala

75 lines
2.2 KiB
Vala
Raw Normal View History

2018-04-14 14:09:06 +02:00
using Gtk;
using Granite;
namespace Tootle{
public static Application app;
2018-05-03 10:56:04 +02:00
public static MainWindow? window;
2018-05-08 18:09:38 +02:00
public static Window window_dummy;
2018-04-27 20:50:08 +02:00
2018-06-17 09:48:18 +02:00
public static Settings settings;
public static Accounts accounts;
public static Network network;
public static ImageCache image_cache;
2018-07-14 10:37:41 +02:00
public static Watchlist watchlist;
2018-04-14 14:09:06 +02:00
public class Application : Granite.Application {
2018-05-05 17:38:01 +02:00
public abstract signal void refresh ();
public abstract signal void toast (string title);
public abstract signal void error (string title, string text);
2018-04-14 14:09:06 +02:00
construct {
application_id = "com.github.bleakgrey.tootle";
flags = ApplicationFlags.FLAGS_NONE;
2018-05-03 10:56:04 +02:00
program_name = "Tootle";
2018-06-21 01:13:01 +02:00
build_version = "0.1.5";
2018-04-14 14:09:06 +02:00
}
public static int main (string[] args) {
2018-05-03 10:56:04 +02:00
Gtk.init (ref args);
2018-04-14 14:09:06 +02:00
app = new Application ();
2018-05-31 14:13:21 +02:00
return app.run (args);
}
protected override void startup () {
base.startup ();
2018-06-19 12:51:04 +02:00
Granite.Services.Logger.DisplayLevel = Granite.Services.LogLevel.INFO;
2018-05-08 18:09:38 +02:00
2018-06-17 09:48:18 +02:00
settings = new Settings ();
accounts = new Accounts ();
network = new Network ();
image_cache = new ImageCache ();
2018-07-14 10:37:41 +02:00
watchlist = new Watchlist ();
2018-05-27 18:25:16 +02:00
accounts.init ();
2018-07-14 10:37:41 +02:00
2018-05-27 18:25:16 +02:00
app.error.connect (app.on_error);
2018-05-08 18:09:38 +02:00
window_dummy = new Window ();
add_window (window_dummy);
2018-04-14 14:09:06 +02:00
}
protected override void activate () {
2018-05-31 14:13:21 +02:00
if (window != null)
return;
debug ("Creating new window");
if (accounts.is_empty ())
NewAccountDialog.open ();
2018-05-03 10:56:04 +02:00
else {
2018-05-31 14:13:21 +02:00
window = new MainWindow (this);
window.present ();
2018-05-03 10:56:04 +02:00
}
2018-04-14 14:09:06 +02:00
}
2018-05-27 18:25:16 +02:00
protected void on_error (string title, string msg){
var message_dialog = new Granite.MessageDialog.with_image_from_icon_name (title, msg, "dialog-warning");
message_dialog.transient_for = window;
message_dialog.run ();
message_dialog.destroy ();
}
2018-04-14 14:09:06 +02:00
}
}