Skip to content
Snippets Groups Projects
Select Git revision
  • 6df6d1c1c0830c5691c5b7629db755efb8f93adf
  • master default
  • windows_ci_static
  • c_link
  • cpack
  • windows_ci
  • cert_pk_id
  • proxy_push_result
  • cnode_put_id
  • update-windows-build
  • proxy
  • resubscribe_on_token_change
  • actions
  • client_mode
  • llhttp
  • search_node_add
  • crypto_aes_gcm_argon2
  • ios_notifications
  • log_fmt
  • v2asio
  • fix-msvc
  • v3.4.0
  • v3.3.1
  • v3.3.1rc1
  • v3.3.1rc2
  • v3.3.0
  • v3.2.0
  • v3.1.11
  • v3.1.10
  • v3.1.9
  • v3.1.8.2
  • v3.1.8.1
  • v3.1.8
  • v3.1.7
  • v3.1.6
  • v3.1.5
  • v3.1.4
  • v3.1.3
  • v3.1.2
  • v3.1
  • v3.0.1
41 results

virtual_network_builder.py

  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    App.xaml.cpp 5.33 KiB
    /**************************************************************************
    * Copyright (C) 2016 by Savoir-faire Linux                                *
    * Author: Jäger Nicolas <nicolas.jager@savoirfairelinux.com>              *
    *                                                                         *
    * This program is free software; you can redistribute it and/or modify    *
    * it under the terms of the GNU General Public License as published by    *
    * the Free Software Foundation; either version 3 of the License, or       *
    * (at your option) any later version.                                     *
    *                                                                         *
    * This program is distributed in the hope that it will be useful,         *
    * but WITHOUT ANY WARRANTY; without even the implied warranty of          *
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           *
    * GNU General Public License for more details.                            *
    *                                                                         *
    * You should have received a copy of the GNU General Public License       *
    * along with this program.  If not, see <http://www.gnu.org/licenses/>.   *
    **************************************************************************/
    #include "pch.h"
    
    #include "LoadingPage.xaml.h"
    #include "MainPage.xaml.h"
    #include "Wizard.xaml.h"
    #include "VideoPage.xaml.h"
    
    using namespace Windows::ApplicationModel::Core;
    using namespace Windows::Foundation;
    using namespace Windows::Graphics::Display;
    using namespace Windows::UI;
    using namespace Windows::UI::Xaml;
    using namespace Windows::UI::Xaml::Controls;
    using namespace Windows::UI::Xaml::Interop;
    using namespace Windows::UI::Xaml::Media;
    using namespace Windows::UI::ViewManagement;
    using namespace Windows::UI::Core;
    
    using namespace RingClientUWP;
    
    App::App()
    {
        InitializeComponent(); // summon partial class, form generated files trough App.xaml
    
        this->EnteredBackground += ref new EnteredBackgroundEventHandler(this, &App::App_EnteredBackground);
        this->LeavingBackground += ref new LeavingBackgroundEventHandler(this, &App::App_LeavingBackground);
    
        /* connect to delegate */
        RingD::instance->summonWizard += ref new RingClientUWP::SummonWizard(this, &RingClientUWP::App::OnsummonWizard);
    }
    
    void
    App::OnLaunched(LaunchActivatedEventArgs^ e)
    {
        if (e->PreviousExecutionState != ApplicationExecutionState::Running) {
            rootFrame = dynamic_cast<Frame^>(Window::Current->Content);
    
            if (rootFrame == nullptr) {
                rootFrame = ref new Frame();
    
                if (rootFrame->Content == nullptr)
                    rootFrame->Navigate(TypeName(Views::LoadingPage::typeid), e->Arguments);
    
                Window::Current->Content = rootFrame;
            }
            else {
                rootFrame->Navigate(TypeName(Views::LoadingPage::typeid), e->Arguments);
                Window::Current->Content = rootFrame;
            }
    
            ApplicationView::GetForCurrentView()->SetPreferredMinSize(Size(400, 500));
            Windows::UI::ViewManagement::ApplicationView::PreferredLaunchViewSize = Size(740, 500);
            auto configFile = Utils::toString(ApplicationData::Current->LocalFolder->Path + "\\.config\\dring.yml");
            if (Utils::fileExists(configFile)) {
                Windows::UI::ViewManagement::ApplicationView::PreferredLaunchWindowingMode
                    = Windows::UI::ViewManagement::ApplicationViewWindowingMode::PreferredLaunchViewSize;
            }
    
            Window::Current->Activate();
    
            auto color = Windows::UI::ColorHelper::FromArgb(255, 59, 193, 211);
    
            ApplicationView::GetForCurrentView()->TitleBar->ButtonBackgroundColor = color;
            ApplicationView::GetForCurrentView()->TitleBar->InactiveBackgroundColor = color;
            ApplicationView::GetForCurrentView()->TitleBar->ButtonInactiveBackgroundColor = color;
            ApplicationView::GetForCurrentView()->TitleBar->BackgroundColor = color;
            ApplicationView::GetForCurrentView()->TitleBar->ForegroundColor = Colors::White;
            ApplicationView::GetForCurrentView()->TitleBar->ButtonForegroundColor = Colors::White;
        }
    }
    
    void App::OnsummonWizard()
    {
        rootFrame->Navigate(Windows::UI::Xaml::Interop::TypeName(Views::Wizard::typeid));
    }
    
    void App::App_EnteredBackground(Platform::Object^ sender, EnteredBackgroundEventArgs^ e)
    {
        MSG_("App_EnteredBackground");
        RingD::instance->isInBackground = true;
    }
    
    void App::App_LeavingBackground(Platform::Object^ sender, LeavingBackgroundEventArgs^ e)
    {
        MSG_("App_LeavingBackground");
        RingD::instance->isInBackground = false;
    }
    
    void App::OnActivated(IActivatedEventArgs^ e)
    {
        if (e->Kind == ActivationKind::ToastNotification) {
            auto toastArgs = safe_cast<ToastNotificationActivatedEventArgs^>(e);
            std::string args = Utils::toString(toastArgs->Argument);
            /*if (toastArgs->UserInput->HasKey("message"))
                MSG_(dynamic_cast<String^>(toastArgs->UserInput->Lookup("message")));*/
            if (!args.empty()) {
                auto callId = args.substr(2);
                if (args[0] == 'a')
                    RingD::instance->acceptIncommingCall(Utils::toPlatformString(callId));
                else if (args[0] == 'r')
                    RingD::instance->refuseIncommingCall(Utils::toPlatformString(callId));
            }
        }
    }