anotherim-desktop/main/src/ui/application.vala

109 lines
4.8 KiB
Vala
Raw Normal View History

2017-03-11 22:52:12 +00:00
using Gtk;
using Dino.Entities;
using Dino.Ui;
public class Dino.Ui.Application : Gtk.Application, Dino.Application {
2017-03-11 22:52:12 +00:00
private Notifications notifications;
private UnifiedWindow window;
2017-03-11 22:52:12 +00:00
public Database db { get; set; }
2017-08-21 15:16:25 +00:00
public Dino.Entities.Settings settings { get; set; }
2017-08-25 19:20:09 +00:00
public StreamInteractor stream_interactor { get; set; }
public Plugins.Registry plugin_registry { get; set; default = new Plugins.Registry(); }
public SearchPathGenerator? search_path_generator { get; set; }
public Application() throws Error {
Object(application_id: "im.dino.Dino", flags: ApplicationFlags.HANDLES_OPEN);
init();
2017-03-11 22:52:12 +00:00
Notify.init("dino");
Environment.set_application_name("Dino");
2017-04-04 17:55:24 +00:00
Gtk.Window.set_default_icon_name("dino");
2017-08-17 19:24:01 +00:00
IconTheme.get_default().add_resource_path("/im/dino/icons");
2017-03-11 22:52:12 +00:00
activate.connect(() => {
if (window == null) {
create_set_app_menu();
2017-08-25 19:20:09 +00:00
window = new UnifiedWindow(this, stream_interactor);
notifications = new Notifications(stream_interactor, window);
notifications.start();
notifications.conversation_selected.connect(window.on_conversation_selected);
}
2017-05-30 20:47:16 +00:00
window.present();
});
2017-03-11 22:52:12 +00:00
}
public void handle_uri(string jid, string query, Gee.Map<string, string> options) {
switch (query) {
2017-08-25 19:20:09 +00:00
case "join":
Dialog dialog = new Dialog.with_buttons(_("Join Conference"), window, Gtk.DialogFlags.MODAL | Gtk.DialogFlags.USE_HEADER_BAR, _("Join"), ResponseType.OK, _("Cancel"), ResponseType.CANCEL);
dialog.modal = true;
Widget ok_button = dialog.get_widget_for_response(ResponseType.OK);
ok_button.get_style_context().add_class("suggested-action");
AddConversation.Conference.ConferenceDetailsFragment conference_fragment = new AddConversation.Conference.ConferenceDetailsFragment(stream_interactor);
conference_fragment.jid = jid;
conference_fragment.set_editable();
Box content_area = dialog.get_content_area();
content_area.add(conference_fragment);
dialog.response.connect((response_id) => {
if (response_id == ResponseType.OK) {
stream_interactor.get_module(MucManager.IDENTITY).join(conference_fragment.account, new Jid(conference_fragment.jid), conference_fragment.nick, conference_fragment.password);
dialog.destroy();
} else if (response_id == ResponseType.CANCEL) {
dialog.destroy();
}
});
dialog.present();
break;
case "message":
2017-08-25 19:20:09 +00:00
AddConversation.Chat.Dialog dialog = new AddConversation.Chat.Dialog(stream_interactor, stream_interactor.get_accounts());
dialog.set_filter(jid);
dialog.set_transient_for(window);
dialog.title = _("Start Chat");
dialog.ok_button.label = _("Start");
dialog.selected.connect((account, jid) => {
Conversation conversation = stream_interactor.get_module(ConversationManager.IDENTITY).create_conversation(jid, account, Conversation.Type.CHAT);
stream_interactor.get_module(ConversationManager.IDENTITY).start_conversation(conversation, true);
window.on_conversation_selected(conversation);
});
dialog.present();
break;
}
}
2017-03-11 22:52:12 +00:00
private void show_accounts_window() {
2017-08-25 19:20:09 +00:00
ManageAccounts.Dialog dialog = new ManageAccounts.Dialog(stream_interactor, db);
2017-03-11 22:52:12 +00:00
dialog.set_transient_for(window);
dialog.account_enabled.connect(add_connection);
dialog.account_disabled.connect(remove_connection);
2017-05-30 20:47:16 +00:00
dialog.present();
2017-03-11 22:52:12 +00:00
}
private void show_settings_window() {
SettingsDialog dialog = new SettingsDialog();
dialog.set_transient_for(window);
2017-05-30 20:47:16 +00:00
dialog.present();
2017-03-11 22:52:12 +00:00
}
private void create_set_app_menu() {
SimpleAction accounts_action = new SimpleAction("accounts", null);
accounts_action.activate.connect(show_accounts_window);
add_action(accounts_action);
SimpleAction settings_action = new SimpleAction("settings", null);
settings_action.activate.connect(show_settings_window);
add_action(settings_action);
SimpleAction quit_action = new SimpleAction("quit", null);
quit_action.activate.connect(quit);
add_action(quit_action);
add_accelerator("<Ctrl>Q", "app.quit", null);
2017-08-17 19:24:01 +00:00
Builder builder = new Builder.from_resource("/im/dino/menu_app.ui");
2017-03-11 22:52:12 +00:00
MenuModel menu = builder.get_object("menu_app") as MenuModel;
set_app_menu(menu);
}
}