Darien Figueroa / Mbed 2 deprecated repo3

Dependencies:   mbed MAX14720 MAX30205 USBDevice

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers IFormView.cs Source File

IFormView.cs

00001 /*******************************************************************************
00002 * Copyright (C) 2016 Maxim Integrated Products, Inc., All rights Reserved.
00003 * 
00004 * This software is protected by copyright laws of the United States and
00005 * of foreign countries. This material may also be protected by patent laws
00006 * and technology transfer regulations of the United States and of foreign
00007 * countries. This software is furnished under a license agreement and/or a
00008 * nondisclosure agreement and may only be used or reproduced in accordance
00009 * with the terms of those agreements. Dissemination of this information to
00010 * any party or parties not specified in the license agreement and/or
00011 * nondisclosure agreement is expressly prohibited.
00012 *
00013 * The above copyright notice and this permission notice shall be included
00014 * in all copies or substantial portions of the Software.
00015 *
00016 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
00017 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00018 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
00019 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
00020 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
00021 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
00022 * OTHER DEALINGS IN THE SOFTWARE.
00023 *
00024 * Except as contained in this notice, the name of Maxim Integrated
00025 * Products, Inc. shall not be used except as stated in the Maxim Integrated
00026 * Products, Inc. Branding Policy.
00027 *
00028 * The mere transfer of this software does not imply any licenses
00029 * of trade secrets, proprietary technology, copyrights, patents,
00030 * trademarks, maskwork rights, or any other form of intellectual
00031 * property whatsoever. Maxim Integrated Products, Inc. retains all
00032 * ownership rights.
00033 *******************************************************************************
00034 */
00035 
00036 using System;
00037 using System.Collections.Generic;
00038 using System.Linq;
00039 using System.Text;
00040 using System.Threading.Tasks;
00041 
00042 namespace HealthSensorPlatform.View
00043 {
00044     public interface IFormView
00045     {
00046         /// <summary>
00047         /// Occurs when view requests file logging to be enabled or disabled
00048         /// </summary>
00049         event EventHandler<EnableEventArgs> FileLogEnable;
00050 
00051         event EventHandler<EventArgs> RegisterExport;
00052         event EventHandler<EventArgs> RegisterImport;
00053 
00054         event EventHandler<EventArgs> Connected;
00055 
00056         /// <summary>
00057         /// Read all device registers and update the UI to reflect what is set in the devices
00058         /// </summary>
00059         void UpdateRegisters();
00060 
00061         /// <summary>
00062         /// Occurs when user requests manual register reads and writes
00063         /// </summary>
00064         //event EventHandler<EnableEventArgs> RegisterAccess;
00065 
00066         /// <summary>
00067         /// Set view to show file logging is enabled or disabled
00068         /// </summary>
00069         /// <param name="state"></param>
00070         void LogFileItem(StreamType stream, bool state);
00071 
00072         void OpticalLogFileItem(bool state);
00073         void EcgLogFileItem(bool state);
00074         void RtoRLogFileItem(bool state);
00075         void BioZLogFileItem(bool state);
00076         void PaceLogFileItem(bool state);
00077 
00078         /// <summary>
00079         /// Display messages on the view
00080         /// </summary>
00081         /// <param name="msg"></param>
00082         void MessageInfo(string msg);
00083         /// <summary>
00084         /// Display version information of firmware
00085         /// </summary>
00086         /// <param name="msg"></param>
00087         //void VersionInfo(string msg);
00088         /// <summary>
00089         /// Display connection information on the view
00090         /// </summary>
00091         /// <param name="msg"></param>
00092         //void ConnectionInfo(string msg);
00093 
00094         void MessageBoxShow(string msg);
00095         void MessageBoxShow(string msg, string title);
00096 
00097     }
00098 }