2018-04-14 12:09:06 +00:00
|
|
|
using Gtk;
|
|
|
|
using Granite;
|
|
|
|
|
|
|
|
namespace Tootle{
|
|
|
|
|
|
|
|
public static Application app;
|
2018-05-03 08:56:04 +00:00
|
|
|
public static MainWindow? window;
|
2018-05-08 16:09:38 +00:00
|
|
|
public static Window window_dummy;
|
2018-04-27 18:50:08 +00:00
|
|
|
|
|
|
|
public static SettingsManager settings;
|
|
|
|
public static AccountManager accounts;
|
|
|
|
public static NetManager network;
|
2018-05-24 19:52:59 +00:00
|
|
|
public static ImageCache image_cache;
|
2018-04-14 12:09:06 +00:00
|
|
|
|
|
|
|
public class Application : Granite.Application {
|
|
|
|
|
2018-05-05 15:38:01 +00: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 12:09:06 +00:00
|
|
|
|
|
|
|
construct {
|
|
|
|
application_id = "com.github.bleakgrey.tootle";
|
|
|
|
flags = ApplicationFlags.FLAGS_NONE;
|
2018-05-03 08:56:04 +00:00
|
|
|
program_name = "Tootle";
|
2018-04-14 12:09:06 +00:00
|
|
|
build_version = "0.1.0";
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int main (string[] args) {
|
2018-05-03 08:56:04 +00:00
|
|
|
Gtk.init (ref args);
|
2018-04-14 12:09:06 +00:00
|
|
|
app = new Application ();
|
2018-05-08 16:09:38 +00:00
|
|
|
|
|
|
|
settings = new SettingsManager ();
|
|
|
|
accounts = new AccountManager ();
|
|
|
|
network = new NetManager ();
|
2018-05-24 19:52:59 +00:00
|
|
|
image_cache = new ImageCache ();
|
2018-05-27 16:25:16 +00:00
|
|
|
accounts.init ();
|
|
|
|
|
|
|
|
app.error.connect (app.on_error);
|
2018-04-14 12:09:06 +00:00
|
|
|
return app.run (args);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void startup () {
|
|
|
|
base.startup ();
|
2018-05-08 16:09:38 +00:00
|
|
|
|
|
|
|
window_dummy = new Window ();
|
|
|
|
add_window (window_dummy);
|
2018-04-14 12:09:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void activate () {
|
2018-05-08 16:09:38 +00:00
|
|
|
if (window != null) {
|
|
|
|
debug ("Reopening window");
|
2018-05-27 16:25:16 +00:00
|
|
|
if (!accounts.is_empty ())
|
|
|
|
window.present ();
|
|
|
|
else
|
|
|
|
NewAccountDialog.open ();
|
2018-05-08 16:09:38 +00:00
|
|
|
}
|
2018-05-03 08:56:04 +00:00
|
|
|
else {
|
2018-05-08 16:09:38 +00:00
|
|
|
debug ("Creating new window");
|
2018-05-27 16:25:16 +00:00
|
|
|
if (accounts.is_empty ())
|
|
|
|
NewAccountDialog.open ();
|
|
|
|
else {
|
|
|
|
window = new MainWindow (this);
|
|
|
|
window.present ();
|
|
|
|
}
|
2018-05-03 08:56:04 +00:00
|
|
|
}
|
2018-04-14 12:09:06 +00:00
|
|
|
}
|
2018-05-27 16:25:16 +00: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 12:09:06 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|