blob: e2a9e0fd2954ee1709cce1564c49f38fe44870ba [file] [log] [blame]
Nicolas Jager998fbd72016-08-08 11:41:28 -04001#pragma once
2/**************************************************************************
3* Copyright (C) 2016 by Savoir-faire Linux *
4* Author: Jäger Nicolas <nicolas.jager@savoirfairelinux.com> *
5* *
6* This program is free software; you can redistribute it and/or modify *
7* it under the terms of the GNU General Public License as published by *
8* the Free Software Foundation; either version 3 of the License, or *
9* (at your option) any later version. *
10* *
11* This program is distributed in the hope that it will be useful, *
12* but WITHOUT ANY WARRANTY; without even the implied warranty of *
13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14* GNU General Public License for more details. *
15* *
16* You should have received a copy of the GNU General Public License *
17* along with this program. If not, see <http://www.gnu.org/licenses/>. *
18**************************************************************************/
19#include "MainPage.g.h"
20
Nicolas Jager8a85e1f2016-08-15 15:11:06 -040021using namespace Windows::UI::Xaml::Controls;
Nicolas Jager998fbd72016-08-08 11:41:28 -040022using namespace Windows::UI::Xaml::Input;
23
24namespace RingClientUWP
25{
26namespace Views {
27}
28public ref class MainPage sealed
29{
30public:
31 MainPage();
32
33protected:
34 virtual void OnKeyDown(KeyRoutedEventArgs^ e) override;
Nicolas Jager15861202016-08-12 11:13:05 -040035private:
36 void _toggleSmartBoxButton__Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
Nicolas Jager8a85e1f2016-08-15 15:11:06 -040037 void showFrame(Windows::UI::Xaml::Controls::Frame^ frame);
Nicolas Jager998fbd72016-08-08 11:41:28 -040038};
39}