Skip to content

Commit

Permalink
Merge pull request #410 from acesnik/master
Browse files Browse the repository at this point in the history
Adjustments for higher and lower screen resolutions...
  • Loading branch information
Anthony authored Jun 22, 2017
2 parents 75ec60e + 1e3dc65 commit d536587
Show file tree
Hide file tree
Showing 15 changed files with 2,976 additions and 1,107 deletions.
1,287 changes: 1,000 additions & 287 deletions ProteoformSuiteGUI/LoadDeconvolutionResults.Designer.cs

Large diffs are not rendered by default.

13 changes: 12 additions & 1 deletion ProteoformSuiteGUI/LoadDeconvolutionResults.cs
Original file line number Diff line number Diff line change
Expand Up @@ -362,13 +362,24 @@ private void cmb_loadTable2_SelectedIndexChanged(object sender, EventArgs e)
lb_filter2.Text = cmb_loadTable1.SelectedItem.ToString();
}

private void cmb_LoadTable3_SelectedIndexChanged(object sender, EventArgs e)
private void cmb_loadTable3_SelectedIndexChanged(object sender, EventArgs e)
{
DisplayUtility.FillDataGridView(dgv_loadFiles3, SaveState.lollipop.get_files(SaveState.lollipop.input_files, Lollipop.file_types[cmb_loadTable3.SelectedIndex]).Select(f => new DisplayInputFile(f)));
DisplayInputFile.FormatInputFileTable(dgv_loadFiles3, Lollipop.file_types[cmb_loadTable3.SelectedIndex]);
lb_filter3.Text = cmb_loadTable1.SelectedItem.ToString();
}

//Do nothing when text changes
private void cmb_loadTable1_TextChanged(object sender, EventArgs e) { }
private void cmb_loadTable2_TextChanged(object sender, EventArgs e) { }
private void cmb_loadTable3_TextChanged(object sender, EventArgs e) { }


#endregion CHANGED TABLE SELECTION Private Methods

private void rb_unlabeled_CheckedChanged(object sender, EventArgs e)
{

}
}
}
2 changes: 1 addition & 1 deletion ProteoformSuiteGUI/NeuCodePairs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public bool ReadyToRunTheGamut()

public void RunTheGamut()
{
ClearListsTablesFigures(true);
//ClearListsTablesFigures(true); No need to clear tables for graphing and filling tables
GraphLysineCount();
GraphIntensityRatio();
FillNeuCodePairsDGV();
Expand Down
7 changes: 7 additions & 0 deletions ProteoformSuiteGUI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,16 @@ static class Program
[STAThread]
static void Main()
{
if (Environment.OSVersion.Version.Major >= 6)
{
SetProcessDPIAware();
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new ProteoformSweet());
}

[System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern bool SetProcessDPIAware();
}
}
34 changes: 24 additions & 10 deletions ProteoformSuiteGUI/ProteoformFamilies.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion ProteoformSuiteGUI/ProteoformFamilies.cs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,8 @@ private void tb_likelyCleavages_TextChanged(object sender, EventArgs e)
SaveState.lollipop.likely_cleavages = tb_likelyCleavages.Text.Split(',');
}

#endregion Private Methods
private void cmbx_empty_TextChanged(object sender, EventArgs e) { }

#endregion Private Methods
}
}
20 changes: 10 additions & 10 deletions ProteoformSuiteGUI/ProteoformSweet.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d536587

Please sign in to comment.