public ConnectionConfig m_connection; // main serial connection to printer
 
        public DeviceDriverConfig()
        {
            m_drivertype = eDriverType.eGENERIC; // default to a null driver
            m_connection = new ConnectionConfig();
            m_connection.CreateDefault();

        }
        private double m_Ypixpermm; // the calculated pixels per mm

        #endregion Fields

        #region Constructors

        public MonitorConfig()
        {
            m_XDLPRes = 1024;
            m_YDLPRes = 768;
            m_Xpixpermm = 1.0;
            m_Ypixpermm = 1.0;
            m_displayconnectionenabled = false;  // -SHS
            m_displayconnection = new ConnectionConfig();
            m_displayconnection.CreateDefault();
            m_monitorid = "";
        }
예제 #3
0
        private string m_monitorid;                  // which monitor we're using

        public MonitorConfig()
        {
            m_XDLPRes   = 1024;
            m_YDLPRes   = 768;
            m_Xpixpermm = 1.0;
            m_Ypixpermm = 1.0;
            m_displayconnectionenabled = false;  // -SHS
            m_displayconnection        = new ConnectionConfig();
            m_displayconnection.CreateDefault();
            m_monitorid = "";
        }
        private double m_Ypixpermm; // the calculated pixels per mm

        #endregion Fields

        #region Constructors

        public MonitorConfig()
        {
            m_XDLPRes = 1024;
            m_YDLPRes = 768;
            m_Xpixpermm = 1.0;
            m_Ypixpermm = 1.0;
            m_displayconnectionenabled = false;  // -SHS
            m_displayconnection = new ConnectionConfig();
            m_monitorrect = new MRect();
            m_displayconnection.CreateDefault();
            m_monitorid = "";
            m_mask = null;
            m_usemask = false;
            m_brightmask_filename = "";
        }
        public Bitmap m_mask;                        // the loaded mask (if any)

        public MonitorConfig()
        {
            m_XDLPRes   = 1024;
            m_YDLPRes   = 768;
            m_Xpixpermm = 1.0;
            m_Ypixpermm = 1.0;
            m_displayconnectionenabled = false;  // -SHS
            m_displayconnection        = new ConnectionConfig();
            m_monitorrect = new MRect();
            m_displayconnection.CreateDefault();
            m_monitorid           = "";
            m_mask                = null;
            m_usemask             = false;
            m_brightmask_filename = "";
        }
예제 #6
0
        public ConnectionConfig m_connection; // main serial connection to printer

        public DeviceDriverConfig()
        {
            m_drivertype = eDriverType.eGENERIC; // default to a null driver
            m_connection = new ConnectionConfig();
            m_connection.CreateDefault();
        }