Skip to content
Snippets Groups Projects
Select Git revision
  • 6697c86b1ce53bfb4502d6f9aa746ba3feceb634
  • master default protected
  • release/202005
  • release/202001
  • release/201912
  • release/201911
  • release/releaseWindowsTestOne
  • release/releaseTest
  • release/releaseWindowsTest
  • release/windowsReleaseTest
  • release/201910
  • release/qt/201910
  • release/windows-test/201910
  • release/201908
  • release/201906
  • release/201905
  • release/201904
  • release/201903
  • release/201902
  • release/201901
  • release/201812
  • 1.0.0
  • 0.3.0
  • 0.2.1
  • 0.2.0
  • 0.1.0
26 results

credentialmodel.cpp

Blame
    • Guillaume Roguez's avatar
      cd4a078a
      account: make account_p.h really private · cd4a078a
      Guillaume Roguez authored
      
      AccountPrivate declared in account_p.h has overused of 'friend' concept
      by making a strong dependency with many other (un)related classes.
      This patch moves up some AccountPrivate member access into Account
      and remove all non-needed friendship relation.
      Now AccountPrivate is really private! (pimpl idiom)
      
      Note: a new structure has been created to solve some parts of this issue,
      it's UsageStatistics and it's a container for common usage statistics.
      
      Reviewed-by: default avatarStepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
      Change-Id: I8701a5e1349dfe899b7dd5bee7e78270113e30d9
      cd4a078a
      History
      account: make account_p.h really private
      Guillaume Roguez authored
      
      AccountPrivate declared in account_p.h has overused of 'friend' concept
      by making a strong dependency with many other (un)related classes.
      This patch moves up some AccountPrivate member access into Account
      and remove all non-needed friendship relation.
      Now AccountPrivate is really private! (pimpl idiom)
      
      Note: a new structure has been created to solve some parts of this issue,
      it's UsageStatistics and it's a container for common usage statistics.
      
      Reviewed-by: default avatarStepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
      Change-Id: I8701a5e1349dfe899b7dd5bee7e78270113e30d9
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    MainPage.xaml.h 1.87 KiB
    #pragma once
    /**************************************************************************
    * 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 "MainPage.g.h"
    
    using namespace Windows::UI::Xaml::Controls;
    using namespace Windows::UI::Xaml::Input;
    
    namespace RingClientUWP
    {
    namespace Views {
    }
    public ref class MainPage sealed
    {
    public:
        MainPage();
    
    protected:
        virtual void OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override;
        virtual void OnKeyDown(KeyRoutedEventArgs^ e) override;
    private:
        void _toggleSmartBoxButton__Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
        void showFrame(Windows::UI::Xaml::Controls::Frame^ frame);
    };
    }