2018-04-16 22:34:21 +00:00
|
|
|
public class WriteAs.Application : Gtk.Application {
|
|
|
|
construct {
|
|
|
|
Intl.setlocale(LocaleCategory.ALL, "");
|
|
|
|
Intl.textdomain("write.as");
|
|
|
|
|
|
|
|
application_id = "write-as-gtk.desktop";
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void activate() {
|
|
|
|
if (get_windows().length() == 0)
|
2018-04-16 22:42:30 +00:00
|
|
|
new WriteAs.MainWindow(this).show_all();
|
2018-04-16 22:34:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static int main(string[] args) {
|
|
|
|
return new WriteAs.Application().run(args);
|
|
|
|
}
|
|
|
|
}
|