2014-02-03 05:27:59 +00:00
namespace BizHawk.Client.EmuHawk.config
{
partial class DisplayConfigLite
{
/// <summary>
/// Required designer variable.
/// </summary>
private System . ComponentModel . IContainer components = null ;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose ( bool disposing )
{
if ( disposing & & ( components ! = null ) )
{
components . Dispose ( ) ;
}
base . Dispose ( disposing ) ;
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent ( )
{
2014-07-12 20:42:44 +00:00
System . ComponentModel . ComponentResourceManager resources = new System . ComponentModel . ComponentResourceManager ( typeof ( DisplayConfigLite ) ) ;
2014-02-03 05:27:59 +00:00
this . btnCancel = new System . Windows . Forms . Button ( ) ;
this . btnOk = new System . Windows . Forms . Button ( ) ;
this . groupBox1 = new System . Windows . Forms . GroupBox ( ) ;
2014-08-09 16:54:56 +00:00
this . lblScanlines = new System . Windows . Forms . Label ( ) ;
2014-04-15 22:56:44 +00:00
this . lblUserFilterName = new System . Windows . Forms . Label ( ) ;
this . btnSelectUserFilter = new System . Windows . Forms . Button ( ) ;
this . rbUser = new System . Windows . Forms . RadioButton ( ) ;
2014-02-03 07:01:31 +00:00
this . tbScanlineIntensity = new System . Windows . Forms . TrackBar ( ) ;
2014-02-07 02:36:27 +00:00
this . rbNone = new System . Windows . Forms . RadioButton ( ) ;
this . rbScanlines = new System . Windows . Forms . RadioButton ( ) ;
this . rbHq2x = new System . Windows . Forms . RadioButton ( ) ;
this . checkLetterbox = new System . Windows . Forms . CheckBox ( ) ;
2014-04-15 21:46:18 +00:00
this . checkPadInteger = new System . Windows . Forms . CheckBox ( ) ;
2014-05-03 02:52:35 +00:00
this . grpFinalFilter = new System . Windows . Forms . GroupBox ( ) ;
2014-04-15 21:46:18 +00:00
this . rbFinalFilterBicubic = new System . Windows . Forms . RadioButton ( ) ;
this . rbFinalFilterNone = new System . Windows . Forms . RadioButton ( ) ;
this . rbFinalFilterBilinear = new System . Windows . Forms . RadioButton ( ) ;
2014-05-03 02:52:35 +00:00
this . rbUseRaw = new System . Windows . Forms . RadioButton ( ) ;
this . rbUseSystem = new System . Windows . Forms . RadioButton ( ) ;
this . grpARSelection = new System . Windows . Forms . GroupBox ( ) ;
2014-12-07 02:26:52 +00:00
this . label4 = new System . Windows . Forms . Label ( ) ;
this . txtCustomARHeight = new System . Windows . Forms . TextBox ( ) ;
this . label3 = new System . Windows . Forms . Label ( ) ;
this . txtCustomARWidth = new System . Windows . Forms . TextBox ( ) ;
this . rbUseCustom = new System . Windows . Forms . RadioButton ( ) ;
2014-07-12 20:42:44 +00:00
this . checkFullscreenHacks = new System . Windows . Forms . CheckBox ( ) ;
2014-07-31 02:42:21 +00:00
this . label2 = new System . Windows . Forms . Label ( ) ;
2014-07-12 20:42:44 +00:00
this . checkSnowyNullEmulator = new System . Windows . Forms . CheckBox ( ) ;
this . label1 = new System . Windows . Forms . Label ( ) ;
2014-12-07 02:26:52 +00:00
this . rbOpenGL = new System . Windows . Forms . RadioButton ( ) ;
this . label5 = new System . Windows . Forms . Label ( ) ;
this . tabControl1 = new System . Windows . Forms . TabControl ( ) ;
this . tpAR = new System . Windows . Forms . TabPage ( ) ;
this . tpDispMethod = new System . Windows . Forms . TabPage ( ) ;
this . tpMisc = new System . Windows . Forms . TabPage ( ) ;
this . groupBox3 = new System . Windows . Forms . GroupBox ( ) ;
this . rbGDIPlus = new System . Windows . Forms . RadioButton ( ) ;
this . label6 = new System . Windows . Forms . Label ( ) ;
this . label7 = new System . Windows . Forms . Label ( ) ;
2014-02-03 05:27:59 +00:00
this . groupBox1 . SuspendLayout ( ) ;
2014-02-03 07:01:31 +00:00
( ( System . ComponentModel . ISupportInitialize ) ( this . tbScanlineIntensity ) ) . BeginInit ( ) ;
2014-05-03 02:52:35 +00:00
this . grpFinalFilter . SuspendLayout ( ) ;
this . grpARSelection . SuspendLayout ( ) ;
2014-12-07 02:26:52 +00:00
this . tabControl1 . SuspendLayout ( ) ;
this . tpAR . SuspendLayout ( ) ;
this . tpDispMethod . SuspendLayout ( ) ;
this . tpMisc . SuspendLayout ( ) ;
this . groupBox3 . SuspendLayout ( ) ;
2014-02-03 05:27:59 +00:00
this . SuspendLayout ( ) ;
//
// btnCancel
//
this . btnCancel . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btnCancel . DialogResult = System . Windows . Forms . DialogResult . Cancel ;
2014-12-07 02:26:52 +00:00
this . btnCancel . Location = new System . Drawing . Point ( 360 , 404 ) ;
2014-02-03 05:27:59 +00:00
this . btnCancel . Name = "btnCancel" ;
this . btnCancel . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btnCancel . TabIndex = 5 ;
this . btnCancel . Text = "Cancel" ;
this . btnCancel . UseVisualStyleBackColor = true ;
//
// btnOk
//
this . btnOk . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
2014-12-07 02:26:52 +00:00
this . btnOk . Location = new System . Drawing . Point ( 279 , 404 ) ;
2014-02-03 05:27:59 +00:00
this . btnOk . Name = "btnOk" ;
this . btnOk . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btnOk . TabIndex = 4 ;
this . btnOk . Text = "OK" ;
this . btnOk . UseVisualStyleBackColor = true ;
this . btnOk . Click + = new System . EventHandler ( this . btnOk_Click ) ;
//
// groupBox1
//
2014-08-09 16:54:56 +00:00
this . groupBox1 . Controls . Add ( this . lblScanlines ) ;
2014-04-15 21:46:18 +00:00
this . groupBox1 . Controls . Add ( this . lblUserFilterName ) ;
this . groupBox1 . Controls . Add ( this . btnSelectUserFilter ) ;
this . groupBox1 . Controls . Add ( this . rbUser ) ;
2014-02-03 07:01:31 +00:00
this . groupBox1 . Controls . Add ( this . tbScanlineIntensity ) ;
2014-02-03 05:27:59 +00:00
this . groupBox1 . Controls . Add ( this . rbNone ) ;
this . groupBox1 . Controls . Add ( this . rbScanlines ) ;
this . groupBox1 . Controls . Add ( this . rbHq2x ) ;
2014-12-07 02:26:52 +00:00
this . groupBox1 . Location = new System . Drawing . Point ( 6 , 6 ) ;
2014-02-03 05:27:59 +00:00
this . groupBox1 . Name = "groupBox1" ;
2014-09-14 00:51:30 +00:00
this . groupBox1 . Size = new System . Drawing . Size ( 193 , 132 ) ;
2014-02-03 05:27:59 +00:00
this . groupBox1 . TabIndex = 7 ;
this . groupBox1 . TabStop = false ;
2014-04-15 21:46:18 +00:00
this . groupBox1 . Text = "Scaling Filter" ;
2014-02-03 05:27:59 +00:00
//
2014-08-09 16:54:56 +00:00
// lblScanlines
//
this . lblScanlines . AutoSize = true ;
this . lblScanlines . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . lblScanlines . Location = new System . Drawing . Point ( 104 , 39 ) ;
this . lblScanlines . Name = "lblScanlines" ;
this . lblScanlines . Size = new System . Drawing . Size ( 15 , 13 ) ;
this . lblScanlines . TabIndex = 11 ;
this . lblScanlines . Text = "%" ;
//
2014-04-15 22:56:44 +00:00
// lblUserFilterName
//
this . lblUserFilterName . Location = new System . Drawing . Point ( 6 , 114 ) ;
this . lblUserFilterName . Name = "lblUserFilterName" ;
this . lblUserFilterName . Size = new System . Drawing . Size ( 161 , 15 ) ;
this . lblUserFilterName . TabIndex = 10 ;
this . lblUserFilterName . Text = "Will contain user filter name" ;
//
// btnSelectUserFilter
//
this . btnSelectUserFilter . Location = new System . Drawing . Point ( 83 , 88 ) ;
this . btnSelectUserFilter . Name = "btnSelectUserFilter" ;
this . btnSelectUserFilter . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btnSelectUserFilter . TabIndex = 5 ;
this . btnSelectUserFilter . Text = "Select" ;
this . btnSelectUserFilter . UseVisualStyleBackColor = true ;
this . btnSelectUserFilter . Click + = new System . EventHandler ( this . btnSelectUserFilter_Click ) ;
//
// rbUser
//
this . rbUser . AutoSize = true ;
this . rbUser . Location = new System . Drawing . Point ( 6 , 88 ) ;
this . rbUser . Name = "rbUser" ;
this . rbUser . Size = new System . Drawing . Size ( 47 , 17 ) ;
this . rbUser . TabIndex = 4 ;
this . rbUser . TabStop = true ;
this . rbUser . Text = "User" ;
this . rbUser . UseVisualStyleBackColor = true ;
//
2014-02-07 02:36:27 +00:00
// tbScanlineIntensity
2014-02-03 05:27:59 +00:00
//
2014-02-07 02:36:27 +00:00
this . tbScanlineIntensity . LargeChange = 32 ;
this . tbScanlineIntensity . Location = new System . Drawing . Point ( 83 , 55 ) ;
2014-07-31 02:42:21 +00:00
this . tbScanlineIntensity . Maximum = 256 ;
2014-02-07 02:36:27 +00:00
this . tbScanlineIntensity . Name = "tbScanlineIntensity" ;
2014-09-14 00:51:30 +00:00
this . tbScanlineIntensity . Size = new System . Drawing . Size ( 70 , 42 ) ;
2014-02-07 02:36:27 +00:00
this . tbScanlineIntensity . TabIndex = 3 ;
this . tbScanlineIntensity . TickFrequency = 32 ;
this . tbScanlineIntensity . TickStyle = System . Windows . Forms . TickStyle . TopLeft ;
2014-08-09 16:54:56 +00:00
this . tbScanlineIntensity . Scroll + = new System . EventHandler ( this . tbScanlineIntensity_Scroll ) ;
this . tbScanlineIntensity . ValueChanged + = new System . EventHandler ( this . tbScanlineIntensity_Scroll ) ;
2014-02-07 02:36:27 +00:00
//
// rbNone
//
this . rbNone . AutoSize = true ;
this . rbNone . Location = new System . Drawing . Point ( 6 , 19 ) ;
this . rbNone . Name = "rbNone" ;
this . rbNone . Size = new System . Drawing . Size ( 51 , 17 ) ;
this . rbNone . TabIndex = 2 ;
this . rbNone . TabStop = true ;
this . rbNone . Text = "None" ;
this . rbNone . UseVisualStyleBackColor = true ;
2014-02-03 05:27:59 +00:00
//
// rbScanlines
//
this . rbScanlines . AutoSize = true ;
2014-02-03 07:01:31 +00:00
this . rbScanlines . Location = new System . Drawing . Point ( 6 , 65 ) ;
2014-02-03 05:27:59 +00:00
this . rbScanlines . Name = "rbScanlines" ;
this . rbScanlines . Size = new System . Drawing . Size ( 71 , 17 ) ;
this . rbScanlines . TabIndex = 1 ;
this . rbScanlines . TabStop = true ;
this . rbScanlines . Text = "Scanlines" ;
this . rbScanlines . UseVisualStyleBackColor = true ;
//
2014-02-07 02:36:27 +00:00
// rbHq2x
2014-02-03 05:27:59 +00:00
//
2014-02-07 02:36:27 +00:00
this . rbHq2x . AutoSize = true ;
this . rbHq2x . Location = new System . Drawing . Point ( 6 , 42 ) ;
this . rbHq2x . Name = "rbHq2x" ;
this . rbHq2x . Size = new System . Drawing . Size ( 50 , 17 ) ;
this . rbHq2x . TabIndex = 0 ;
this . rbHq2x . TabStop = true ;
this . rbHq2x . Text = "Hq2x" ;
this . rbHq2x . UseVisualStyleBackColor = true ;
2014-02-03 05:27:59 +00:00
//
2014-02-07 02:36:27 +00:00
// checkLetterbox
2014-02-03 07:01:31 +00:00
//
2014-02-07 02:36:27 +00:00
this . checkLetterbox . AutoSize = true ;
2014-12-07 02:26:52 +00:00
this . checkLetterbox . Location = new System . Drawing . Point ( 6 , 148 ) ;
2014-02-07 02:36:27 +00:00
this . checkLetterbox . Name = "checkLetterbox" ;
2014-04-15 21:46:18 +00:00
this . checkLetterbox . Size = new System . Drawing . Size ( 173 , 17 ) ;
2014-02-07 02:36:27 +00:00
this . checkLetterbox . TabIndex = 8 ;
2014-04-15 21:46:18 +00:00
this . checkLetterbox . Text = "Maintain aspect ratio (letterbox)" ;
2014-02-07 02:36:27 +00:00
this . checkLetterbox . UseVisualStyleBackColor = true ;
2014-05-03 02:52:35 +00:00
this . checkLetterbox . CheckedChanged + = new System . EventHandler ( this . checkLetterbox_CheckedChanged ) ;
2014-02-03 07:01:31 +00:00
//
2014-04-15 21:46:18 +00:00
// checkPadInteger
//
this . checkPadInteger . AutoSize = true ;
2014-12-07 02:26:52 +00:00
this . checkPadInteger . Location = new System . Drawing . Point ( 15 , 284 ) ;
2014-04-15 21:46:18 +00:00
this . checkPadInteger . Name = "checkPadInteger" ;
2014-05-03 02:52:35 +00:00
this . checkPadInteger . Size = new System . Drawing . Size ( 248 , 17 ) ;
2014-04-15 21:46:18 +00:00
this . checkPadInteger . TabIndex = 9 ;
2014-05-03 02:52:35 +00:00
this . checkPadInteger . Text = "Stretch pixels by integers only (e.g. no 1.3333x)" ;
2014-04-15 21:46:18 +00:00
this . checkPadInteger . UseVisualStyleBackColor = true ;
2014-05-03 02:52:35 +00:00
this . checkPadInteger . CheckedChanged + = new System . EventHandler ( this . checkPadInteger_CheckedChanged ) ;
2014-04-15 21:46:18 +00:00
//
2014-05-03 02:52:35 +00:00
// grpFinalFilter
2014-04-15 21:46:18 +00:00
//
2014-05-03 02:52:35 +00:00
this . grpFinalFilter . Controls . Add ( this . rbFinalFilterBicubic ) ;
this . grpFinalFilter . Controls . Add ( this . rbFinalFilterNone ) ;
this . grpFinalFilter . Controls . Add ( this . rbFinalFilterBilinear ) ;
2014-12-07 02:26:52 +00:00
this . grpFinalFilter . Location = new System . Drawing . Point ( 205 , 6 ) ;
2014-05-03 02:52:35 +00:00
this . grpFinalFilter . Name = "grpFinalFilter" ;
2014-09-14 00:51:30 +00:00
this . grpFinalFilter . Size = new System . Drawing . Size ( 187 , 132 ) ;
2014-05-03 02:52:35 +00:00
this . grpFinalFilter . TabIndex = 8 ;
this . grpFinalFilter . TabStop = false ;
this . grpFinalFilter . Text = "Final Filter" ;
2014-04-15 21:46:18 +00:00
//
// rbFinalFilterBicubic
//
this . rbFinalFilterBicubic . AutoSize = true ;
this . rbFinalFilterBicubic . Location = new System . Drawing . Point ( 7 , 65 ) ;
this . rbFinalFilterBicubic . Name = "rbFinalFilterBicubic" ;
this . rbFinalFilterBicubic . Size = new System . Drawing . Size ( 142 , 17 ) ;
this . rbFinalFilterBicubic . TabIndex = 3 ;
this . rbFinalFilterBicubic . TabStop = true ;
this . rbFinalFilterBicubic . Text = "Bicubic (shader. buggy?)" ;
this . rbFinalFilterBicubic . UseVisualStyleBackColor = true ;
//
// rbFinalFilterNone
//
this . rbFinalFilterNone . AutoSize = true ;
this . rbFinalFilterNone . Location = new System . Drawing . Point ( 6 , 19 ) ;
this . rbFinalFilterNone . Name = "rbFinalFilterNone" ;
this . rbFinalFilterNone . Size = new System . Drawing . Size ( 51 , 17 ) ;
this . rbFinalFilterNone . TabIndex = 2 ;
this . rbFinalFilterNone . TabStop = true ;
this . rbFinalFilterNone . Text = "None" ;
this . rbFinalFilterNone . UseVisualStyleBackColor = true ;
//
// rbFinalFilterBilinear
//
this . rbFinalFilterBilinear . AutoSize = true ;
this . rbFinalFilterBilinear . Location = new System . Drawing . Point ( 6 , 42 ) ;
this . rbFinalFilterBilinear . Name = "rbFinalFilterBilinear" ;
this . rbFinalFilterBilinear . Size = new System . Drawing . Size ( 59 , 17 ) ;
this . rbFinalFilterBilinear . TabIndex = 0 ;
this . rbFinalFilterBilinear . TabStop = true ;
this . rbFinalFilterBilinear . Text = "Bilinear" ;
this . rbFinalFilterBilinear . UseVisualStyleBackColor = true ;
//
2014-05-03 02:52:35 +00:00
// rbUseRaw
//
this . rbUseRaw . AutoSize = true ;
this . rbUseRaw . Location = new System . Drawing . Point ( 6 , 19 ) ;
this . rbUseRaw . Name = "rbUseRaw" ;
this . rbUseRaw . Size = new System . Drawing . Size ( 240 , 17 ) ;
this . rbUseRaw . TabIndex = 11 ;
this . rbUseRaw . TabStop = true ;
this . rbUseRaw . Text = "Use 1:1 pixel size (for crispness or debugging)" ;
this . rbUseRaw . UseVisualStyleBackColor = true ;
this . rbUseRaw . CheckedChanged + = new System . EventHandler ( this . rbUseRaw_CheckedChanged ) ;
//
// rbUseSystem
//
this . rbUseSystem . AutoSize = true ;
2014-09-14 00:51:30 +00:00
this . rbUseSystem . Location = new System . Drawing . Point ( 26 , 58 ) ;
2014-05-03 02:52:35 +00:00
this . rbUseSystem . Name = "rbUseSystem" ;
2014-09-14 00:51:30 +00:00
this . rbUseSystem . Size = new System . Drawing . Size ( 167 , 17 ) ;
2014-05-03 02:52:35 +00:00
this . rbUseSystem . TabIndex = 12 ;
this . rbUseSystem . TabStop = true ;
2014-09-14 00:51:30 +00:00
this . rbUseSystem . Text = "Use system\'s recommendation" ;
2014-05-03 02:52:35 +00:00
this . rbUseSystem . UseVisualStyleBackColor = true ;
this . rbUseSystem . CheckedChanged + = new System . EventHandler ( this . rbUseSystem_CheckedChanged ) ;
//
// grpARSelection
//
2014-09-14 00:51:30 +00:00
this . grpARSelection . Controls . Add ( this . label4 ) ;
this . grpARSelection . Controls . Add ( this . txtCustomARHeight ) ;
this . grpARSelection . Controls . Add ( this . label3 ) ;
this . grpARSelection . Controls . Add ( this . txtCustomARWidth ) ;
this . grpARSelection . Controls . Add ( this . rbUseCustom ) ;
2014-05-03 02:52:35 +00:00
this . grpARSelection . Controls . Add ( this . rbUseRaw ) ;
this . grpARSelection . Controls . Add ( this . rbUseSystem ) ;
2014-12-07 02:26:52 +00:00
this . grpARSelection . Location = new System . Drawing . Point ( 15 , 171 ) ;
2014-05-03 02:52:35 +00:00
this . grpARSelection . Name = "grpARSelection" ;
2014-09-14 00:51:30 +00:00
this . grpARSelection . Size = new System . Drawing . Size ( 377 , 107 ) ;
2014-05-03 02:52:35 +00:00
this . grpARSelection . TabIndex = 13 ;
this . grpARSelection . TabStop = false ;
this . grpARSelection . Text = "Aspect Ratio Selection" ;
2014-07-12 20:42:44 +00:00
//
2014-12-07 02:26:52 +00:00
// label4
//
this . label4 . AutoSize = true ;
this . label4 . Location = new System . Drawing . Point ( 23 , 41 ) ;
this . label4 . Name = "label4" ;
this . label4 . Size = new System . Drawing . Size ( 257 , 13 ) ;
this . label4 . TabIndex = 12 ;
this . label4 . Text = "Allow pixel distortion (e.g. 2x1 pixels, for better AR fit):" ;
//
// txtCustomARHeight
//
this . txtCustomARHeight . Location = new System . Drawing . Point ( 230 , 79 ) ;
this . txtCustomARHeight . Name = "txtCustomARHeight" ;
this . txtCustomARHeight . Size = new System . Drawing . Size ( 72 , 20 ) ;
this . txtCustomARHeight . TabIndex = 15 ;
//
// label3
//
this . label3 . AutoSize = true ;
this . label3 . Location = new System . Drawing . Point ( 212 , 84 ) ;
this . label3 . Name = "label3" ;
this . label3 . Size = new System . Drawing . Size ( 12 , 13 ) ;
this . label3 . TabIndex = 12 ;
this . label3 . Text = "x" ;
//
// txtCustomARWidth
//
this . txtCustomARWidth . Location = new System . Drawing . Point ( 134 , 79 ) ;
this . txtCustomARWidth . Name = "txtCustomARWidth" ;
this . txtCustomARWidth . Size = new System . Drawing . Size ( 72 , 20 ) ;
this . txtCustomARWidth . TabIndex = 14 ;
//
// rbUseCustom
//
this . rbUseCustom . AutoSize = true ;
this . rbUseCustom . Location = new System . Drawing . Point ( 26 , 80 ) ;
this . rbUseCustom . Name = "rbUseCustom" ;
this . rbUseCustom . Size = new System . Drawing . Size ( 107 , 17 ) ;
this . rbUseCustom . TabIndex = 13 ;
this . rbUseCustom . TabStop = true ;
this . rbUseCustom . Text = "Use custom Size:" ;
this . rbUseCustom . UseVisualStyleBackColor = true ;
//
2014-07-12 20:42:44 +00:00
// checkFullscreenHacks
//
this . checkFullscreenHacks . AutoSize = true ;
2014-12-07 02:26:52 +00:00
this . checkFullscreenHacks . Location = new System . Drawing . Point ( 2 , 7 ) ;
2014-07-12 20:42:44 +00:00
this . checkFullscreenHacks . Name = "checkFullscreenHacks" ;
this . checkFullscreenHacks . Size = new System . Drawing . Size ( 191 , 17 ) ;
this . checkFullscreenHacks . TabIndex = 14 ;
this . checkFullscreenHacks . Text = "Enable Windows Fullscreen Hacks" ;
this . checkFullscreenHacks . UseVisualStyleBackColor = true ;
//
2014-07-31 02:42:21 +00:00
// label2
//
2014-12-07 02:26:52 +00:00
this . label2 . Location = new System . Drawing . Point ( 3 , 131 ) ;
2014-07-31 02:42:21 +00:00
this . label2 . Name = "label2" ;
2014-12-07 02:26:52 +00:00
this . label2 . Size = new System . Drawing . Size ( 398 , 45 ) ;
2014-07-31 02:42:21 +00:00
this . label2 . TabIndex = 17 ;
this . label2 . Text = "Some people think the whitenoise is a great idea, and some people don\'t. Enabling" +
" this displays an Oxoo instead." ;
2014-07-12 20:42:44 +00:00
//
// checkSnowyNullEmulator
//
this . checkSnowyNullEmulator . AutoSize = true ;
2014-12-07 02:26:52 +00:00
this . checkSnowyNullEmulator . Location = new System . Drawing . Point ( 2 , 106 ) ;
2014-07-12 20:42:44 +00:00
this . checkSnowyNullEmulator . Name = "checkSnowyNullEmulator" ;
this . checkSnowyNullEmulator . Size = new System . Drawing . Size ( 159 , 17 ) ;
this . checkSnowyNullEmulator . TabIndex = 16 ;
this . checkSnowyNullEmulator . Text = "Enable Snowy Null Emulator" ;
this . checkSnowyNullEmulator . UseVisualStyleBackColor = true ;
//
// label1
//
2014-12-07 02:26:52 +00:00
this . label1 . Location = new System . Drawing . Point ( 3 , 30 ) ;
2014-07-12 20:42:44 +00:00
this . label1 . Name = "label1" ;
2014-12-07 02:26:52 +00:00
this . label1 . Size = new System . Drawing . Size ( 398 , 73 ) ;
2014-07-12 20:42:44 +00:00
this . label1 . TabIndex = 15 ;
this . label1 . Text = resources . GetString ( "label1.Text" ) ;
2014-05-02 04:27:08 +00:00
//
2014-12-07 02:26:52 +00:00
// rbOpenGL
//
this . rbOpenGL . AutoSize = true ;
this . rbOpenGL . Checked = true ;
this . rbOpenGL . Location = new System . Drawing . Point ( 9 , 19 ) ;
this . rbOpenGL . Name = "rbOpenGL" ;
this . rbOpenGL . Size = new System . Drawing . Size ( 65 , 17 ) ;
this . rbOpenGL . TabIndex = 3 ;
this . rbOpenGL . TabStop = true ;
this . rbOpenGL . Text = "OpenGL" ;
this . rbOpenGL . UseVisualStyleBackColor = true ;
//
// label5
//
this . label5 . Location = new System . Drawing . Point ( 24 , 39 ) ;
this . label5 . Name = "label5" ;
this . label5 . Size = new System . Drawing . Size ( 359 , 47 ) ;
this . label5 . TabIndex = 16 ;
this . label5 . Text = " • May malfunction on some systems.\r\n • May have increased performance for OpenGL" +
"-based emulation cores.\r\n • May have reduced performance on some systems.\r\n" ;
//
// tabControl1
//
this . tabControl1 . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Bottom )
| System . Windows . Forms . AnchorStyles . Left )
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . tabControl1 . Controls . Add ( this . tpAR ) ;
this . tabControl1 . Controls . Add ( this . tpDispMethod ) ;
this . tabControl1 . Controls . Add ( this . tpMisc ) ;
this . tabControl1 . Location = new System . Drawing . Point ( 12 , 12 ) ;
this . tabControl1 . Name = "tabControl1" ;
this . tabControl1 . SelectedIndex = 0 ;
this . tabControl1 . Size = new System . Drawing . Size ( 423 , 382 ) ;
this . tabControl1 . TabIndex = 17 ;
//
// tpAR
//
this . tpAR . Controls . Add ( this . groupBox1 ) ;
this . tpAR . Controls . Add ( this . checkLetterbox ) ;
this . tpAR . Controls . Add ( this . checkPadInteger ) ;
this . tpAR . Controls . Add ( this . grpARSelection ) ;
this . tpAR . Controls . Add ( this . grpFinalFilter ) ;
this . tpAR . Location = new System . Drawing . Point ( 4 , 22 ) ;
this . tpAR . Name = "tpAR" ;
this . tpAR . Padding = new System . Windows . Forms . Padding ( 3 ) ;
this . tpAR . Size = new System . Drawing . Size ( 415 , 356 ) ;
this . tpAR . TabIndex = 0 ;
this . tpAR . Text = "Scaling & Filtering" ;
this . tpAR . UseVisualStyleBackColor = true ;
//
// tpDispMethod
//
this . tpDispMethod . Controls . Add ( this . label6 ) ;
this . tpDispMethod . Controls . Add ( this . groupBox3 ) ;
this . tpDispMethod . Location = new System . Drawing . Point ( 4 , 22 ) ;
this . tpDispMethod . Name = "tpDispMethod" ;
this . tpDispMethod . Size = new System . Drawing . Size ( 415 , 356 ) ;
this . tpDispMethod . TabIndex = 2 ;
this . tpDispMethod . Text = "Display Method" ;
this . tpDispMethod . UseVisualStyleBackColor = true ;
//
// tpMisc
//
this . tpMisc . Controls . Add ( this . label2 ) ;
this . tpMisc . Controls . Add ( this . checkSnowyNullEmulator ) ;
this . tpMisc . Controls . Add ( this . checkFullscreenHacks ) ;
this . tpMisc . Controls . Add ( this . label1 ) ;
this . tpMisc . Location = new System . Drawing . Point ( 4 , 22 ) ;
this . tpMisc . Name = "tpMisc" ;
this . tpMisc . Size = new System . Drawing . Size ( 415 , 356 ) ;
this . tpMisc . TabIndex = 3 ;
this . tpMisc . Text = "Misc" ;
this . tpMisc . UseVisualStyleBackColor = true ;
//
// groupBox3
//
this . groupBox3 . Controls . Add ( this . label7 ) ;
this . groupBox3 . Controls . Add ( this . rbGDIPlus ) ;
this . groupBox3 . Controls . Add ( this . label5 ) ;
this . groupBox3 . Controls . Add ( this . rbOpenGL ) ;
this . groupBox3 . Location = new System . Drawing . Point ( 4 , 3 ) ;
this . groupBox3 . Name = "groupBox3" ;
this . groupBox3 . Size = new System . Drawing . Size ( 389 , 165 ) ;
this . groupBox3 . TabIndex = 16 ;
this . groupBox3 . TabStop = false ;
//
// rbGDIPlus
//
this . rbGDIPlus . AutoSize = true ;
this . rbGDIPlus . Checked = true ;
this . rbGDIPlus . Location = new System . Drawing . Point ( 6 , 89 ) ;
this . rbGDIPlus . Name = "rbGDIPlus" ;
this . rbGDIPlus . Size = new System . Drawing . Size ( 50 , 17 ) ;
this . rbGDIPlus . TabIndex = 17 ;
this . rbGDIPlus . TabStop = true ;
this . rbGDIPlus . Text = "GDI+" ;
this . rbGDIPlus . UseVisualStyleBackColor = true ;
//
// label6
//
this . label6 . Location = new System . Drawing . Point ( 3 , 171 ) ;
this . label6 . Name = "label6" ;
this . label6 . Size = new System . Drawing . Size ( 359 , 47 ) ;
this . label6 . TabIndex = 18 ;
this . label6 . Text = "Changes require restart of program to take effect.\r\n" ;
//
// label7
//
this . label7 . Location = new System . Drawing . Point ( 24 , 109 ) ;
this . label7 . Name = "label7" ;
this . label7 . Size = new System . Drawing . Size ( 359 , 47 ) ;
this . label7 . TabIndex = 18 ;
this . label7 . Text = " • Mainly for compatibility purposes\r\n • Missing some features\r\n • Works better o" +
"ver Remote Desktop, etc.\r\n" ;
2014-09-14 00:51:30 +00:00
//
2014-02-03 05:27:59 +00:00
// DisplayConfigLite
//
this . AcceptButton = this . btnOk ;
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
this . CancelButton = this . btnCancel ;
2014-12-07 02:26:52 +00:00
this . ClientSize = new System . Drawing . Size ( 451 , 439 ) ;
this . Controls . Add ( this . tabControl1 ) ;
2014-02-03 05:27:59 +00:00
this . Controls . Add ( this . btnCancel ) ;
this . Controls . Add ( this . btnOk ) ;
this . FormBorderStyle = System . Windows . Forms . FormBorderStyle . FixedDialog ;
this . Name = "DisplayConfigLite" ;
2014-04-15 22:56:44 +00:00
this . StartPosition = System . Windows . Forms . FormStartPosition . CenterParent ;
2014-02-03 05:27:59 +00:00
this . Text = "Display Configuration" ;
this . groupBox1 . ResumeLayout ( false ) ;
this . groupBox1 . PerformLayout ( ) ;
2014-02-03 07:01:31 +00:00
( ( System . ComponentModel . ISupportInitialize ) ( this . tbScanlineIntensity ) ) . EndInit ( ) ;
2014-05-03 02:52:35 +00:00
this . grpFinalFilter . ResumeLayout ( false ) ;
this . grpFinalFilter . PerformLayout ( ) ;
this . grpARSelection . ResumeLayout ( false ) ;
this . grpARSelection . PerformLayout ( ) ;
2014-12-07 02:26:52 +00:00
this . tabControl1 . ResumeLayout ( false ) ;
this . tpAR . ResumeLayout ( false ) ;
this . tpAR . PerformLayout ( ) ;
this . tpDispMethod . ResumeLayout ( false ) ;
this . tpMisc . ResumeLayout ( false ) ;
this . tpMisc . PerformLayout ( ) ;
this . groupBox3 . ResumeLayout ( false ) ;
this . groupBox3 . PerformLayout ( ) ;
2014-02-03 05:27:59 +00:00
this . ResumeLayout ( false ) ;
}
#endregion
private System . Windows . Forms . Button btnCancel ;
private System . Windows . Forms . Button btnOk ;
private System . Windows . Forms . GroupBox groupBox1 ;
private System . Windows . Forms . RadioButton rbNone ;
private System . Windows . Forms . RadioButton rbScanlines ;
private System . Windows . Forms . RadioButton rbHq2x ;
2014-02-03 07:01:31 +00:00
private System . Windows . Forms . TrackBar tbScanlineIntensity ;
2014-02-07 02:36:27 +00:00
private System . Windows . Forms . CheckBox checkLetterbox ;
2014-04-15 21:46:18 +00:00
private System . Windows . Forms . CheckBox checkPadInteger ;
2014-05-03 02:52:35 +00:00
private System . Windows . Forms . GroupBox grpFinalFilter ;
2014-04-15 21:46:18 +00:00
private System . Windows . Forms . RadioButton rbFinalFilterBicubic ;
private System . Windows . Forms . RadioButton rbFinalFilterNone ;
private System . Windows . Forms . RadioButton rbFinalFilterBilinear ;
private System . Windows . Forms . Button btnSelectUserFilter ;
private System . Windows . Forms . RadioButton rbUser ;
private System . Windows . Forms . Label lblUserFilterName ;
2014-05-03 02:52:35 +00:00
private System . Windows . Forms . RadioButton rbUseRaw ;
private System . Windows . Forms . RadioButton rbUseSystem ;
private System . Windows . Forms . GroupBox grpARSelection ;
2014-07-12 20:42:44 +00:00
private System . Windows . Forms . CheckBox checkFullscreenHacks ;
private System . Windows . Forms . CheckBox checkSnowyNullEmulator ;
private System . Windows . Forms . Label label2 ;
private System . Windows . Forms . Label label1 ;
2014-08-09 16:54:56 +00:00
private System . Windows . Forms . Label lblScanlines ;
2014-09-14 00:51:30 +00:00
private System . Windows . Forms . TextBox txtCustomARHeight ;
private System . Windows . Forms . Label label3 ;
private System . Windows . Forms . TextBox txtCustomARWidth ;
private System . Windows . Forms . RadioButton rbUseCustom ;
private System . Windows . Forms . Label label4 ;
2014-12-07 02:26:52 +00:00
private System . Windows . Forms . RadioButton rbOpenGL ;
private System . Windows . Forms . Label label5 ;
private System . Windows . Forms . TabControl tabControl1 ;
private System . Windows . Forms . TabPage tpAR ;
private System . Windows . Forms . TabPage tpDispMethod ;
private System . Windows . Forms . Label label6 ;
private System . Windows . Forms . GroupBox groupBox3 ;
private System . Windows . Forms . Label label7 ;
private System . Windows . Forms . RadioButton rbGDIPlus ;
private System . Windows . Forms . TabPage tpMisc ;
2014-02-03 05:27:59 +00:00
}
}