Clients/Message/Program.cs
author Stephane Lenclud
Fri, 02 Sep 2016 01:38:08 +0200
changeset 267 a601b377a3eb
permissions -rw-r--r--
Event trigger by name now won't trigger disabled events.
     1 //
     2 // Copyright (C) 2014-2016 Stéphane Lenclud.
     3 //
     4 // This file is part of SharpDisplayManager.
     5 //
     6 // SharpDisplayManager 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 // SharpDisplayManager 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 SharpDisplayManager.  If not, see <http://www.gnu.org/licenses/>.
    18 //
    19 
    20 using System;
    21 using System.Collections.Generic;
    22 using System.Linq;
    23 using System.Threading.Tasks;
    24 using System.Windows.Forms;
    25 using System.Drawing;
    26 
    27 namespace SharpDisplayClientMessage
    28 {
    29     static public class Program
    30     {
    31         /// <summary>
    32         /// The main entry point for the application.
    33         /// </summary>
    34         [STAThread]
    35         public static void Main()
    36         {
    37             //Set high priority to our process to avoid lags when rendering to our screen
    38             //System.Diagnostics.Process.GetCurrentProcess().PriorityClass = System.Diagnostics.ProcessPriorityClass.AboveNormal;
    39 
    40             Application.EnableVisualStyles();
    41             Application.SetCompatibleTextRenderingDefault(false);
    42             Application.Run(new FormClientMessage());
    43         }
    44 
    45         [STAThread]
    46         public static void MainWithParams(object aParams)
    47         {
    48             //Set high priority to our process to avoid lags when rendering to our screen
    49             //System.Diagnostics.Process.GetCurrentProcess().PriorityClass = System.Diagnostics.ProcessPriorityClass.AboveNormal;
    50 
    51             Application.EnableVisualStyles();
    52             Application.SetCompatibleTextRenderingDefault(false);
    53             FormClientMessage form = new FormClientMessage();
    54             form.Params = (StartParams)aParams;
    55             form.WindowState = FormWindowState.Minimized;
    56             form.ShowInTaskbar = false;
    57             Application.Run(form);
    58         }
    59 
    60     }
    61 
    62     public class StartParams
    63     {
    64         public StartParams(string aPrimaryText, string aSecondaryText ="", int aDurationInMs = 5000, uint aClientPriority = SharpLib.Display.Priorities.Foreground)
    65         {
    66             PrimaryText = aPrimaryText;
    67             SecondaryText = aSecondaryText;
    68             Priority = aClientPriority;
    69             DurationInMs = aDurationInMs;
    70         }
    71 
    72         public string PrimaryText { get; set; }
    73         public string SecondaryText { get; set; }
    74         public uint Priority { get; set; }
    75         public int DurationInMs { get; set; }
    76     }
    77 }