mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Revert "BUG-1735 fixed exception when scaling down screenshot with text element"
This reverts commit cc65001d34
.
This commit is contained in:
parent
5b0ae0a117
commit
228dd301ba
23 changed files with 279 additions and 722 deletions
|
@ -1,6 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup useLegacyV2RuntimeActivationPolicy="true">
|
<startup useLegacyV2RuntimeActivationPolicy="true">
|
||||||
|
<supportedRuntime version="v4.0"/>
|
||||||
|
<supportedRuntime version="v2.0.50727"/>
|
||||||
</startup>
|
</startup>
|
||||||
<runtime>
|
<runtime>
|
||||||
<loadFromRemoteSources enabled="true"/>
|
<loadFromRemoteSources enabled="true"/>
|
||||||
|
|
|
@ -86,8 +86,6 @@ namespace Greenshot.Drawing {
|
||||||
}
|
}
|
||||||
using (Pen pen = new Pen(lineColor, lineThickness)) {
|
using (Pen pen = new Pen(lineColor, lineThickness)) {
|
||||||
SetArrowHeads(heads, pen);
|
SetArrowHeads(heads, pen);
|
||||||
graphics.Flush(FlushIntention.Sync);
|
|
||||||
graphics.SmoothingMode = SmoothingMode.None;
|
|
||||||
graphics.DrawLine(pen, Left, Top, Left + Width, Top + Height);
|
graphics.DrawLine(pen, Left, Top, Left + Width, Top + Height);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,8 +92,6 @@ namespace Greenshot.Drawing {
|
||||||
}
|
}
|
||||||
|
|
||||||
using (Pen pen = new Pen(lineColor, lineThickness)) {
|
using (Pen pen = new Pen(lineColor, lineThickness)) {
|
||||||
graphics.Flush(FlushIntention.Flush);
|
|
||||||
graphics.SmoothingMode = SmoothingMode.None;
|
|
||||||
graphics.DrawLine(pen, Left, Top, Left + Width, Top + Height);
|
graphics.DrawLine(pen, Left, Top, Left + Width, Top + Height);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -247,7 +247,7 @@ namespace Greenshot.Drawing {
|
||||||
rect = GuiRectangle.GetGuiRectangle(Left, Top, Width, Height);
|
rect = GuiRectangle.GetGuiRectangle(Left, Top, Width, Height);
|
||||||
|
|
||||||
int pixelsAfter = rect.Width * rect.Height;
|
int pixelsAfter = rect.Width * rect.Height;
|
||||||
float factor = pixelsAfter / (float)pixelsBefore;
|
float factor = pixelsAfter / pixelsBefore;
|
||||||
|
|
||||||
float fontSize = GetFieldValueAsFloat(FieldType.FONT_SIZE);
|
float fontSize = GetFieldValueAsFloat(FieldType.FONT_SIZE);
|
||||||
fontSize *= factor;
|
fontSize *= factor;
|
||||||
|
|
49
Greenshot/Forms/MainForm.Designer.cs
generated
49
Greenshot/Forms/MainForm.Designer.cs
generated
|
@ -80,32 +80,32 @@ namespace Greenshot {
|
||||||
// contextMenu
|
// contextMenu
|
||||||
//
|
//
|
||||||
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||||
this.contextmenu_capturearea,
|
this.contextmenu_capturearea,
|
||||||
this.contextmenu_capturelastregion,
|
this.contextmenu_capturelastregion,
|
||||||
this.contextmenu_capturewindow,
|
this.contextmenu_capturewindow,
|
||||||
this.contextmenu_capturefullscreen,
|
this.contextmenu_capturefullscreen,
|
||||||
this.contextmenu_captureie,
|
this.contextmenu_captureie,
|
||||||
this.toolStripListCaptureSeparator,
|
this.toolStripListCaptureSeparator,
|
||||||
this.contextmenu_capturewindowfromlist,
|
this.contextmenu_capturewindowfromlist,
|
||||||
this.contextmenu_captureiefromlist,
|
this.contextmenu_captureiefromlist,
|
||||||
this.toolStripOtherSourcesSeparator,
|
this.toolStripOtherSourcesSeparator,
|
||||||
this.contextmenu_captureclipboard,
|
this.contextmenu_captureclipboard,
|
||||||
this.contextmenu_openfile,
|
this.contextmenu_openfile,
|
||||||
this.toolStripOpenFolderSeparator,
|
this.toolStripOpenFolderSeparator,
|
||||||
this.contextmenu_openrecentcapture,
|
this.contextmenu_openrecentcapture,
|
||||||
this.toolStripPluginSeparator,
|
this.toolStripPluginSeparator,
|
||||||
this.contextmenu_quicksettings,
|
this.contextmenu_quicksettings,
|
||||||
this.contextmenu_settings,
|
this.contextmenu_settings,
|
||||||
this.toolStripMiscSeparator,
|
this.toolStripMiscSeparator,
|
||||||
this.contextmenu_help,
|
this.contextmenu_help,
|
||||||
this.contextmenu_donate,
|
this.contextmenu_donate,
|
||||||
this.contextmenu_about,
|
this.contextmenu_about,
|
||||||
this.toolStripCloseSeparator,
|
this.toolStripCloseSeparator,
|
||||||
this.contextmenu_exit});
|
this.contextmenu_exit});
|
||||||
this.contextMenu.Name = "contextMenu";
|
this.contextMenu.Name = "contextMenu";
|
||||||
this.contextMenu.Size = new System.Drawing.Size(171, 392);
|
|
||||||
this.contextMenu.Closing += new System.Windows.Forms.ToolStripDropDownClosingEventHandler(this.ContextMenuClosing);
|
this.contextMenu.Closing += new System.Windows.Forms.ToolStripDropDownClosingEventHandler(this.ContextMenuClosing);
|
||||||
this.contextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenuOpening);
|
this.contextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenuOpening);
|
||||||
|
this.contextMenu.Renderer = new Greenshot.Controls.ContextMenuToolStripProfessionalRenderer();
|
||||||
//
|
//
|
||||||
// contextmenu_capturearea
|
// contextmenu_capturearea
|
||||||
//
|
//
|
||||||
|
@ -203,7 +203,7 @@ namespace Greenshot {
|
||||||
// contextmenu_quicksettings
|
// contextmenu_quicksettings
|
||||||
//
|
//
|
||||||
this.contextmenu_quicksettings.Name = "contextmenu_quicksettings";
|
this.contextmenu_quicksettings.Name = "contextmenu_quicksettings";
|
||||||
this.contextmenu_quicksettings.Size = new System.Drawing.Size(170, 22);
|
this.contextmenu_quicksettings.Size = new System.Drawing.Size(170, coreConfiguration.IconSize.Height + 8);
|
||||||
//
|
//
|
||||||
// contextmenu_settings
|
// contextmenu_settings
|
||||||
//
|
//
|
||||||
|
@ -276,7 +276,6 @@ namespace Greenshot {
|
||||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing);
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing);
|
||||||
this.contextMenu.ResumeLayout(false);
|
this.contextMenu.ResumeLayout(false);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
}
|
}
|
||||||
private GreenshotPlugin.Controls.GreenshotToolStripMenuItem contextmenu_captureiefromlist;
|
private GreenshotPlugin.Controls.GreenshotToolStripMenuItem contextmenu_captureiefromlist;
|
||||||
private System.Windows.Forms.ToolStripSeparator toolStripOtherSourcesSeparator;
|
private System.Windows.Forms.ToolStripSeparator toolStripOtherSourcesSeparator;
|
||||||
|
|
|
@ -748,7 +748,7 @@ namespace Greenshot {
|
||||||
}
|
}
|
||||||
|
|
||||||
var now = DateTime.Now;
|
var now = DateTime.Now;
|
||||||
if ((now.Month == 12 && now.Day > 14 && now.Day < 27) || // christmas
|
if ((now.Month == 12 && now.Day > 19 && now.Day < 27) || // christmas
|
||||||
(now.Month == 3 && now.Day > 13 && now.Day < 21)) { // birthday
|
(now.Month == 3 && now.Day > 13 && now.Day < 21)) { // birthday
|
||||||
var resources = new ComponentResourceManager(typeof(MainForm));
|
var resources = new ComponentResourceManager(typeof(MainForm));
|
||||||
contextmenu_donate.Image = (Image)resources.GetObject("contextmenu_present.Image");
|
contextmenu_donate.Image = (Image)resources.GetObject("contextmenu_present.Image");
|
||||||
|
|
491
Greenshot/Forms/PrintOptionsDialog.Designer.cs
generated
491
Greenshot/Forms/PrintOptionsDialog.Designer.cs
generated
|
@ -48,252 +48,251 @@ namespace Greenshot.Forms
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
this.checkbox_dontaskagain = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
this.checkbox_dontaskagain = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
||||||
this.checkboxAllowShrink = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
this.checkboxAllowShrink = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
||||||
this.checkboxAllowEnlarge = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
this.checkboxAllowEnlarge = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
||||||
this.checkboxAllowCenter = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
this.checkboxAllowCenter = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
||||||
this.checkboxAllowRotate = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
this.checkboxAllowRotate = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
||||||
this.button_ok = new GreenshotPlugin.Controls.GreenshotButton();
|
this.button_ok = new GreenshotPlugin.Controls.GreenshotButton();
|
||||||
this.checkboxDateTime = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
this.checkboxDateTime = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
||||||
this.button_cancel = new GreenshotPlugin.Controls.GreenshotButton();
|
this.button_cancel = new GreenshotPlugin.Controls.GreenshotButton();
|
||||||
this.checkboxPrintInverted = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
this.checkboxPrintInverted = new GreenshotPlugin.Controls.GreenshotCheckBox();
|
||||||
this.radioBtnGrayScale = new GreenshotPlugin.Controls.GreenshotRadioButton();
|
this.radioBtnGrayScale = new GreenshotPlugin.Controls.GreenshotRadioButton();
|
||||||
this.radioBtnMonochrome = new GreenshotPlugin.Controls.GreenshotRadioButton();
|
this.radioBtnMonochrome = new GreenshotPlugin.Controls.GreenshotRadioButton();
|
||||||
this.groupBoxPrintLayout = new GreenshotPlugin.Controls.GreenshotGroupBox();
|
this.groupBoxPrintLayout = new GreenshotPlugin.Controls.GreenshotGroupBox();
|
||||||
this.groupBoxColors = new GreenshotPlugin.Controls.GreenshotGroupBox();
|
this.groupBoxColors = new GreenshotPlugin.Controls.GreenshotGroupBox();
|
||||||
this.radioBtnColorPrint = new GreenshotPlugin.Controls.GreenshotRadioButton();
|
this.radioBtnColorPrint = new GreenshotPlugin.Controls.GreenshotRadioButton();
|
||||||
this.groupBoxPrintLayout.SuspendLayout();
|
this.groupBoxPrintLayout.SuspendLayout();
|
||||||
this.groupBoxColors.SuspendLayout();
|
this.groupBoxColors.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// checkbox_dontaskagain
|
// checkbox_dontaskagain
|
||||||
//
|
//
|
||||||
this.checkbox_dontaskagain.AutoSize = true;
|
this.checkbox_dontaskagain.AutoSize = true;
|
||||||
this.checkbox_dontaskagain.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkbox_dontaskagain.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkbox_dontaskagain.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkbox_dontaskagain.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkbox_dontaskagain.LanguageKey = "printoptions_dontaskagain";
|
this.checkbox_dontaskagain.LanguageKey = "printoptions_dontaskagain";
|
||||||
this.checkbox_dontaskagain.Location = new System.Drawing.Point(25, 299);
|
this.checkbox_dontaskagain.Location = new System.Drawing.Point(25, 299);
|
||||||
this.checkbox_dontaskagain.Name = "checkbox_dontaskagain";
|
this.checkbox_dontaskagain.Name = "checkbox_dontaskagain";
|
||||||
this.checkbox_dontaskagain.Size = new System.Drawing.Size(240, 17);
|
this.checkbox_dontaskagain.Size = new System.Drawing.Size(240, 17);
|
||||||
this.checkbox_dontaskagain.TabIndex = 15;
|
this.checkbox_dontaskagain.TabIndex = 15;
|
||||||
this.checkbox_dontaskagain.Text = "Save options as default and do not ask again";
|
this.checkbox_dontaskagain.Text = "Save options as default and do not ask again";
|
||||||
this.checkbox_dontaskagain.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkbox_dontaskagain.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkbox_dontaskagain.UseVisualStyleBackColor = true;
|
this.checkbox_dontaskagain.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// checkboxAllowShrink
|
// checkboxAllowShrink
|
||||||
//
|
//
|
||||||
this.checkboxAllowShrink.AutoSize = true;
|
this.checkboxAllowShrink.AutoSize = true;
|
||||||
this.checkboxAllowShrink.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowShrink.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowShrink.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowShrink.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowShrink.LanguageKey = "printoptions_allowshrink";
|
this.checkboxAllowShrink.LanguageKey = "printoptions_allowshrink";
|
||||||
this.checkboxAllowShrink.Location = new System.Drawing.Point(13, 23);
|
this.checkboxAllowShrink.Location = new System.Drawing.Point(13, 23);
|
||||||
this.checkboxAllowShrink.Name = "checkboxAllowShrink";
|
this.checkboxAllowShrink.Name = "checkboxAllowShrink";
|
||||||
this.checkboxAllowShrink.PropertyName = "OutputPrintAllowShrink";
|
this.checkboxAllowShrink.PropertyName = "OutputPrintAllowShrink";
|
||||||
this.checkboxAllowShrink.Size = new System.Drawing.Size(168, 17);
|
this.checkboxAllowShrink.Size = new System.Drawing.Size(168, 17);
|
||||||
this.checkboxAllowShrink.TabIndex = 2;
|
this.checkboxAllowShrink.TabIndex = 2;
|
||||||
this.checkboxAllowShrink.Text = "Shrink printout to fit paper size";
|
this.checkboxAllowShrink.Text = "Shrink printout to fit paper size";
|
||||||
this.checkboxAllowShrink.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowShrink.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowShrink.UseVisualStyleBackColor = true;
|
this.checkboxAllowShrink.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// checkboxAllowEnlarge
|
// checkboxAllowEnlarge
|
||||||
//
|
//
|
||||||
this.checkboxAllowEnlarge.AutoSize = true;
|
this.checkboxAllowEnlarge.AutoSize = true;
|
||||||
this.checkboxAllowEnlarge.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowEnlarge.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowEnlarge.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowEnlarge.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowEnlarge.LanguageKey = "printoptions_allowenlarge";
|
this.checkboxAllowEnlarge.LanguageKey = "printoptions_allowenlarge";
|
||||||
this.checkboxAllowEnlarge.Location = new System.Drawing.Point(13, 46);
|
this.checkboxAllowEnlarge.Location = new System.Drawing.Point(13, 46);
|
||||||
this.checkboxAllowEnlarge.Name = "checkboxAllowEnlarge";
|
this.checkboxAllowEnlarge.Name = "checkboxAllowEnlarge";
|
||||||
this.checkboxAllowEnlarge.PropertyName = "OutputPrintAllowEnlarge";
|
this.checkboxAllowEnlarge.PropertyName = "OutputPrintAllowEnlarge";
|
||||||
this.checkboxAllowEnlarge.Size = new System.Drawing.Size(174, 17);
|
this.checkboxAllowEnlarge.Size = new System.Drawing.Size(174, 17);
|
||||||
this.checkboxAllowEnlarge.TabIndex = 3;
|
this.checkboxAllowEnlarge.TabIndex = 3;
|
||||||
this.checkboxAllowEnlarge.Text = "Enlarge printout to fit paper size";
|
this.checkboxAllowEnlarge.Text = "Enlarge printout to fit paper size";
|
||||||
this.checkboxAllowEnlarge.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowEnlarge.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowEnlarge.UseVisualStyleBackColor = true;
|
this.checkboxAllowEnlarge.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// checkboxAllowCenter
|
// checkboxAllowCenter
|
||||||
//
|
//
|
||||||
this.checkboxAllowCenter.AutoSize = true;
|
this.checkboxAllowCenter.AutoSize = true;
|
||||||
this.checkboxAllowCenter.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowCenter.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowCenter.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowCenter.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowCenter.LanguageKey = "printoptions_allowcenter";
|
this.checkboxAllowCenter.LanguageKey = "printoptions_allowcenter";
|
||||||
this.checkboxAllowCenter.Location = new System.Drawing.Point(13, 92);
|
this.checkboxAllowCenter.Location = new System.Drawing.Point(13, 92);
|
||||||
this.checkboxAllowCenter.Name = "checkboxAllowCenter";
|
this.checkboxAllowCenter.Name = "checkboxAllowCenter";
|
||||||
this.checkboxAllowCenter.PropertyName = "OutputPrintCenter";
|
this.checkboxAllowCenter.PropertyName = "OutputPrintCenter";
|
||||||
this.checkboxAllowCenter.Size = new System.Drawing.Size(137, 17);
|
this.checkboxAllowCenter.Size = new System.Drawing.Size(137, 17);
|
||||||
this.checkboxAllowCenter.TabIndex = 5;
|
this.checkboxAllowCenter.TabIndex = 5;
|
||||||
this.checkboxAllowCenter.Text = "Center printout on page";
|
this.checkboxAllowCenter.Text = "Center printout on page";
|
||||||
this.checkboxAllowCenter.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowCenter.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowCenter.UseVisualStyleBackColor = true;
|
this.checkboxAllowCenter.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// checkboxAllowRotate
|
// checkboxAllowRotate
|
||||||
//
|
//
|
||||||
this.checkboxAllowRotate.AutoSize = true;
|
this.checkboxAllowRotate.AutoSize = true;
|
||||||
this.checkboxAllowRotate.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowRotate.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowRotate.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowRotate.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowRotate.LanguageKey = "printoptions_allowrotate";
|
this.checkboxAllowRotate.LanguageKey = "printoptions_allowrotate";
|
||||||
this.checkboxAllowRotate.Location = new System.Drawing.Point(13, 69);
|
this.checkboxAllowRotate.Location = new System.Drawing.Point(13, 69);
|
||||||
this.checkboxAllowRotate.Name = "checkboxAllowRotate";
|
this.checkboxAllowRotate.Name = "checkboxAllowRotate";
|
||||||
this.checkboxAllowRotate.PropertyName = "OutputPrintAllowRotate";
|
this.checkboxAllowRotate.PropertyName = "OutputPrintAllowRotate";
|
||||||
this.checkboxAllowRotate.Size = new System.Drawing.Size(187, 17);
|
this.checkboxAllowRotate.Size = new System.Drawing.Size(187, 17);
|
||||||
this.checkboxAllowRotate.TabIndex = 4;
|
this.checkboxAllowRotate.TabIndex = 4;
|
||||||
this.checkboxAllowRotate.Text = "Rotate printout to page orientation";
|
this.checkboxAllowRotate.Text = "Rotate printout to page orientation";
|
||||||
this.checkboxAllowRotate.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxAllowRotate.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxAllowRotate.UseVisualStyleBackColor = true;
|
this.checkboxAllowRotate.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// button_ok
|
// button_ok
|
||||||
//
|
//
|
||||||
this.button_ok.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
this.button_ok.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.button_ok.DialogResult = System.Windows.Forms.DialogResult.OK;
|
this.button_ok.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
this.button_ok.LanguageKey = "OK";
|
this.button_ok.LanguageKey = "OK";
|
||||||
this.button_ok.Location = new System.Drawing.Point(187, 355);
|
this.button_ok.Location = new System.Drawing.Point(187, 355);
|
||||||
this.button_ok.Name = "button_ok";
|
this.button_ok.Name = "button_ok";
|
||||||
this.button_ok.Size = new System.Drawing.Size(75, 23);
|
this.button_ok.Size = new System.Drawing.Size(75, 23);
|
||||||
this.button_ok.TabIndex = 20;
|
this.button_ok.TabIndex = 20;
|
||||||
this.button_ok.Text = "Ok";
|
this.button_ok.Text = "Ok";
|
||||||
this.button_ok.UseVisualStyleBackColor = true;
|
this.button_ok.UseVisualStyleBackColor = true;
|
||||||
this.button_ok.Click += new System.EventHandler(this.Button_okClick);
|
this.button_ok.Click += new System.EventHandler(this.Button_okClick);
|
||||||
//
|
//
|
||||||
// checkboxDateTime
|
// checkboxDateTime
|
||||||
//
|
//
|
||||||
this.checkboxDateTime.AutoSize = true;
|
this.checkboxDateTime.AutoSize = true;
|
||||||
this.checkboxDateTime.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxDateTime.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxDateTime.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxDateTime.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxDateTime.LanguageKey = "printoptions_timestamp";
|
this.checkboxDateTime.LanguageKey = "printoptions_timestamp";
|
||||||
this.checkboxDateTime.Location = new System.Drawing.Point(13, 115);
|
this.checkboxDateTime.Location = new System.Drawing.Point(13, 115);
|
||||||
this.checkboxDateTime.Name = "checkboxDateTime";
|
this.checkboxDateTime.Name = "checkboxDateTime";
|
||||||
this.checkboxDateTime.PropertyName = "OutputPrintFooter";
|
this.checkboxDateTime.PropertyName = "OutputPrintFooter";
|
||||||
this.checkboxDateTime.Size = new System.Drawing.Size(187, 17);
|
this.checkboxDateTime.Size = new System.Drawing.Size(187, 17);
|
||||||
this.checkboxDateTime.TabIndex = 6;
|
this.checkboxDateTime.TabIndex = 6;
|
||||||
this.checkboxDateTime.Text = "Print date / time at bottom of page";
|
this.checkboxDateTime.Text = "Print date / time at bottom of page";
|
||||||
this.checkboxDateTime.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxDateTime.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxDateTime.UseVisualStyleBackColor = true;
|
this.checkboxDateTime.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// button_cancel
|
// button_cancel
|
||||||
//
|
//
|
||||||
this.button_cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
this.button_cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.button_cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
this.button_cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||||
this.button_cancel.LanguageKey = "CANCEL";
|
this.button_cancel.LanguageKey = "CANCEL";
|
||||||
this.button_cancel.Location = new System.Drawing.Point(268, 355);
|
this.button_cancel.Location = new System.Drawing.Point(268, 355);
|
||||||
this.button_cancel.Name = "button_cancel";
|
this.button_cancel.Name = "button_cancel";
|
||||||
this.button_cancel.Size = new System.Drawing.Size(75, 23);
|
this.button_cancel.Size = new System.Drawing.Size(75, 23);
|
||||||
this.button_cancel.TabIndex = 21;
|
this.button_cancel.TabIndex = 21;
|
||||||
this.button_cancel.Text = "Cancel";
|
this.button_cancel.Text = "Cancel";
|
||||||
this.button_cancel.UseVisualStyleBackColor = true;
|
this.button_cancel.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// checkboxPrintInverted
|
// checkboxPrintInverted
|
||||||
//
|
//
|
||||||
this.checkboxPrintInverted.AutoSize = true;
|
this.checkboxPrintInverted.AutoSize = true;
|
||||||
this.checkboxPrintInverted.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxPrintInverted.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxPrintInverted.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxPrintInverted.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxPrintInverted.LanguageKey = "printoptions_inverted";
|
this.checkboxPrintInverted.LanguageKey = "printoptions_inverted";
|
||||||
this.checkboxPrintInverted.Location = new System.Drawing.Point(13, 88);
|
this.checkboxPrintInverted.Location = new System.Drawing.Point(13, 88);
|
||||||
this.checkboxPrintInverted.Name = "checkboxPrintInverted";
|
this.checkboxPrintInverted.Name = "checkboxPrintInverted";
|
||||||
this.checkboxPrintInverted.PropertyName = "OutputPrintInverted";
|
this.checkboxPrintInverted.PropertyName = "OutputPrintInverted";
|
||||||
this.checkboxPrintInverted.Size = new System.Drawing.Size(141, 17);
|
this.checkboxPrintInverted.Size = new System.Drawing.Size(141, 17);
|
||||||
this.checkboxPrintInverted.TabIndex = 14;
|
this.checkboxPrintInverted.TabIndex = 14;
|
||||||
this.checkboxPrintInverted.Text = "Print with inverted colors";
|
this.checkboxPrintInverted.Text = "Print with inverted colors";
|
||||||
this.checkboxPrintInverted.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.checkboxPrintInverted.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.checkboxPrintInverted.UseVisualStyleBackColor = true;
|
this.checkboxPrintInverted.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// radioBtnGrayScale
|
// radioBtnGrayScale
|
||||||
//
|
//
|
||||||
this.radioBtnGrayScale.AutoSize = true;
|
this.radioBtnGrayScale.AutoSize = true;
|
||||||
this.radioBtnGrayScale.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.radioBtnGrayScale.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.radioBtnGrayScale.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.radioBtnGrayScale.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.radioBtnGrayScale.LanguageKey = "printoptions_printgrayscale";
|
this.radioBtnGrayScale.LanguageKey = "printoptions_printgrayscale";
|
||||||
this.radioBtnGrayScale.Location = new System.Drawing.Point(13, 42);
|
this.radioBtnGrayScale.Location = new System.Drawing.Point(13, 42);
|
||||||
this.radioBtnGrayScale.Name = "radioBtnGrayScale";
|
this.radioBtnGrayScale.Name = "radioBtnGrayScale";
|
||||||
this.radioBtnGrayScale.PropertyName = "OutputPrintGrayscale";
|
this.radioBtnGrayScale.PropertyName = "OutputPrintGrayscale";
|
||||||
this.radioBtnGrayScale.Size = new System.Drawing.Size(137, 17);
|
this.radioBtnGrayScale.Size = new System.Drawing.Size(137, 17);
|
||||||
this.radioBtnGrayScale.TabIndex = 12;
|
this.radioBtnGrayScale.TabIndex = 12;
|
||||||
this.radioBtnGrayScale.Text = "Force grayscale printing";
|
this.radioBtnGrayScale.Text = "Force grayscale printing";
|
||||||
this.radioBtnGrayScale.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.radioBtnGrayScale.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.radioBtnGrayScale.UseVisualStyleBackColor = true;
|
this.radioBtnGrayScale.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// radioBtnMonochrome
|
// radioBtnMonochrome
|
||||||
//
|
//
|
||||||
this.radioBtnMonochrome.AutoSize = true;
|
this.radioBtnMonochrome.AutoSize = true;
|
||||||
this.radioBtnMonochrome.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.radioBtnMonochrome.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.radioBtnMonochrome.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.radioBtnMonochrome.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.radioBtnMonochrome.LanguageKey = "printoptions_printmonochrome";
|
this.radioBtnMonochrome.LanguageKey = "printoptions_printmonochrome";
|
||||||
this.radioBtnMonochrome.Location = new System.Drawing.Point(13, 65);
|
this.radioBtnMonochrome.Location = new System.Drawing.Point(13, 65);
|
||||||
this.radioBtnMonochrome.Name = "radioBtnMonochrome";
|
this.radioBtnMonochrome.Name = "radioBtnMonochrome";
|
||||||
this.radioBtnMonochrome.PropertyName = "OutputPrintMonochrome";
|
this.radioBtnMonochrome.PropertyName = "OutputPrintMonochrome";
|
||||||
this.radioBtnMonochrome.Size = new System.Drawing.Size(148, 17);
|
this.radioBtnMonochrome.Size = new System.Drawing.Size(148, 17);
|
||||||
this.radioBtnMonochrome.TabIndex = 13;
|
this.radioBtnMonochrome.TabIndex = 13;
|
||||||
this.radioBtnMonochrome.Text = "Force black/white printing";
|
this.radioBtnMonochrome.Text = "Force black/white printing";
|
||||||
this.radioBtnMonochrome.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.radioBtnMonochrome.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.radioBtnMonochrome.UseVisualStyleBackColor = true;
|
this.radioBtnMonochrome.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// groupBoxPrintLayout
|
// groupBoxPrintLayout
|
||||||
//
|
//
|
||||||
this.groupBoxPrintLayout.AutoSize = true;
|
this.groupBoxPrintLayout.AutoSize = true;
|
||||||
this.groupBoxPrintLayout.Controls.Add(this.checkboxDateTime);
|
this.groupBoxPrintLayout.Controls.Add(this.checkboxDateTime);
|
||||||
this.groupBoxPrintLayout.Controls.Add(this.checkboxAllowShrink);
|
this.groupBoxPrintLayout.Controls.Add(this.checkboxAllowShrink);
|
||||||
this.groupBoxPrintLayout.Controls.Add(this.checkboxAllowEnlarge);
|
this.groupBoxPrintLayout.Controls.Add(this.checkboxAllowEnlarge);
|
||||||
this.groupBoxPrintLayout.Controls.Add(this.checkboxAllowRotate);
|
this.groupBoxPrintLayout.Controls.Add(this.checkboxAllowRotate);
|
||||||
this.groupBoxPrintLayout.Controls.Add(this.checkboxAllowCenter);
|
this.groupBoxPrintLayout.Controls.Add(this.checkboxAllowCenter);
|
||||||
this.groupBoxPrintLayout.LanguageKey = "printoptions_layout";
|
this.groupBoxPrintLayout.LanguageKey = "printoptions_layout";
|
||||||
this.groupBoxPrintLayout.Location = new System.Drawing.Point(12, 12);
|
this.groupBoxPrintLayout.Location = new System.Drawing.Point(12, 12);
|
||||||
this.groupBoxPrintLayout.Name = "groupBoxPrintLayout";
|
this.groupBoxPrintLayout.Name = "groupBoxPrintLayout";
|
||||||
this.groupBoxPrintLayout.Size = new System.Drawing.Size(331, 151);
|
this.groupBoxPrintLayout.Size = new System.Drawing.Size(331, 151);
|
||||||
this.groupBoxPrintLayout.TabIndex = 31;
|
this.groupBoxPrintLayout.TabIndex = 31;
|
||||||
this.groupBoxPrintLayout.TabStop = false;
|
this.groupBoxPrintLayout.TabStop = false;
|
||||||
this.groupBoxPrintLayout.Text = "Page layout settings";
|
this.groupBoxPrintLayout.Text = "Page layout settings";
|
||||||
//
|
//
|
||||||
// groupBoxColors
|
// groupBoxColors
|
||||||
//
|
//
|
||||||
this.groupBoxColors.AutoSize = true;
|
this.groupBoxColors.AutoSize = true;
|
||||||
this.groupBoxColors.Controls.Add(this.checkboxPrintInverted);
|
this.groupBoxColors.Controls.Add(this.checkboxPrintInverted);
|
||||||
this.groupBoxColors.Controls.Add(this.radioBtnColorPrint);
|
this.groupBoxColors.Controls.Add(this.radioBtnColorPrint);
|
||||||
this.groupBoxColors.Controls.Add(this.radioBtnGrayScale);
|
this.groupBoxColors.Controls.Add(this.radioBtnGrayScale);
|
||||||
this.groupBoxColors.Controls.Add(this.radioBtnMonochrome);
|
this.groupBoxColors.Controls.Add(this.radioBtnMonochrome);
|
||||||
this.groupBoxColors.LanguageKey = "printoptions_colors";
|
this.groupBoxColors.LanguageKey = "printoptions_colors";
|
||||||
this.groupBoxColors.Location = new System.Drawing.Point(12, 169);
|
this.groupBoxColors.Location = new System.Drawing.Point(12, 169);
|
||||||
this.groupBoxColors.Name = "groupBoxColors";
|
this.groupBoxColors.Name = "groupBoxColors";
|
||||||
this.groupBoxColors.Size = new System.Drawing.Size(331, 127);
|
this.groupBoxColors.Size = new System.Drawing.Size(331, 127);
|
||||||
this.groupBoxColors.TabIndex = 32;
|
this.groupBoxColors.TabIndex = 32;
|
||||||
this.groupBoxColors.TabStop = false;
|
this.groupBoxColors.TabStop = false;
|
||||||
this.groupBoxColors.Text = "Color settings";
|
this.groupBoxColors.Text = "Color settings";
|
||||||
//
|
//
|
||||||
// radioBtnColorPrint
|
// radioBtnColorPrint
|
||||||
//
|
//
|
||||||
this.radioBtnColorPrint.AutoSize = true;
|
this.radioBtnColorPrint.AutoSize = true;
|
||||||
this.radioBtnColorPrint.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.radioBtnColorPrint.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.radioBtnColorPrint.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.radioBtnColorPrint.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.radioBtnColorPrint.LanguageKey = "printoptions_printcolor";
|
this.radioBtnColorPrint.LanguageKey = "printoptions_printcolor";
|
||||||
this.radioBtnColorPrint.Location = new System.Drawing.Point(13, 19);
|
this.radioBtnColorPrint.Location = new System.Drawing.Point(13, 19);
|
||||||
this.radioBtnColorPrint.Name = "radioBtnColorPrint";
|
this.radioBtnColorPrint.Name = "radioBtnColorPrint";
|
||||||
this.radioBtnColorPrint.PropertyName = "OutputPrintColor";
|
this.radioBtnColorPrint.PropertyName = "OutputPrintColor";
|
||||||
this.radioBtnColorPrint.Size = new System.Drawing.Size(90, 17);
|
this.radioBtnColorPrint.Size = new System.Drawing.Size(90, 17);
|
||||||
this.radioBtnColorPrint.TabIndex = 11;
|
this.radioBtnColorPrint.TabIndex = 11;
|
||||||
this.radioBtnColorPrint.Text = "Full color print";
|
this.radioBtnColorPrint.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||||
this.radioBtnColorPrint.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
this.radioBtnColorPrint.UseVisualStyleBackColor = true;
|
||||||
this.radioBtnColorPrint.UseVisualStyleBackColor = true;
|
//
|
||||||
//
|
// PrintOptionsDialog
|
||||||
// PrintOptionsDialog
|
//
|
||||||
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
this.AutoSize = true;
|
||||||
this.AutoSize = true;
|
this.ClientSize = new System.Drawing.Size(355, 390);
|
||||||
this.ClientSize = new System.Drawing.Size(355, 390);
|
this.Controls.Add(this.groupBoxColors);
|
||||||
this.Controls.Add(this.groupBoxColors);
|
this.Controls.Add(this.groupBoxPrintLayout);
|
||||||
this.Controls.Add(this.groupBoxPrintLayout);
|
this.Controls.Add(this.button_cancel);
|
||||||
this.Controls.Add(this.button_cancel);
|
this.Controls.Add(this.button_ok);
|
||||||
this.Controls.Add(this.button_ok);
|
this.Controls.Add(this.checkbox_dontaskagain);
|
||||||
this.Controls.Add(this.checkbox_dontaskagain);
|
this.LanguageKey = "printoptions_title";
|
||||||
this.LanguageKey = "printoptions_title";
|
this.MaximizeBox = false;
|
||||||
this.MaximizeBox = false;
|
this.MinimizeBox = false;
|
||||||
this.MinimizeBox = false;
|
this.Name = "PrintOptionsDialog";
|
||||||
this.Name = "PrintOptionsDialog";
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
||||||
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
this.Text = "Greenshot print options";
|
||||||
this.Text = "Greenshot print options";
|
this.groupBoxPrintLayout.ResumeLayout(false);
|
||||||
this.groupBoxPrintLayout.ResumeLayout(false);
|
this.groupBoxPrintLayout.PerformLayout();
|
||||||
this.groupBoxPrintLayout.PerformLayout();
|
this.groupBoxColors.ResumeLayout(false);
|
||||||
this.groupBoxColors.ResumeLayout(false);
|
this.groupBoxColors.PerformLayout();
|
||||||
this.groupBoxColors.PerformLayout();
|
this.ResumeLayout(false);
|
||||||
this.ResumeLayout(false);
|
this.PerformLayout();
|
||||||
this.PerformLayout();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
private GreenshotPlugin.Controls.GreenshotRadioButton radioBtnGrayScale;
|
private GreenshotPlugin.Controls.GreenshotRadioButton radioBtnGrayScale;
|
||||||
|
|
|
@ -1,120 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
</root>
|
|
|
@ -1,120 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
</root>
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
||||||
<Import Project="..\CommonProject.properties" />
|
<Import Project="..\CommonProject.properties" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ProjectGuid>{CD642BF4-D815-4D67-A0B5-C69F0B8231AF}</ProjectGuid>
|
<ProjectGuid>{CD642BF4-D815-4D67-A0B5-C69F0B8231AF}</ProjectGuid>
|
||||||
|
@ -18,8 +18,7 @@
|
||||||
<FileUpgradeFlags>
|
<FileUpgradeFlags>
|
||||||
</FileUpgradeFlags>
|
</FileUpgradeFlags>
|
||||||
<OldToolsVersion>3.5</OldToolsVersion>
|
<OldToolsVersion>3.5</OldToolsVersion>
|
||||||
<UpgradeBackupLocation>
|
<UpgradeBackupLocation />
|
||||||
</UpgradeBackupLocation>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="log4net">
|
<Reference Include="log4net">
|
||||||
|
@ -202,11 +201,6 @@
|
||||||
<Compile Include="Forms\MovableShowColorForm.Designer.cs">
|
<Compile Include="Forms\MovableShowColorForm.Designer.cs">
|
||||||
<DependentUpon>MovableShowColorForm.cs</DependentUpon>
|
<DependentUpon>MovableShowColorForm.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Sounds.Designer.cs">
|
|
||||||
<AutoGen>True</AutoGen>
|
|
||||||
<DesignTime>True</DesignTime>
|
|
||||||
<DependentUpon>Sounds.resx</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<None Include="App.config" />
|
<None Include="App.config" />
|
||||||
<Compile Include="GlobalSuppressions.cs" />
|
<Compile Include="GlobalSuppressions.cs" />
|
||||||
<Compile Include="Helpers\CaptureHelper.cs" />
|
<Compile Include="Helpers\CaptureHelper.cs" />
|
||||||
|
@ -247,19 +241,10 @@
|
||||||
<EmbeddedResource Include="Forms\MainForm.resx">
|
<EmbeddedResource Include="Forms\MainForm.resx">
|
||||||
<DependentUpon>MainForm.cs</DependentUpon>
|
<DependentUpon>MainForm.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Forms\PrintOptionsDialog.resx">
|
|
||||||
<DependentUpon>PrintOptionsDialog.cs</DependentUpon>
|
|
||||||
</EmbeddedResource>
|
|
||||||
<EmbeddedResource Include="Forms\SettingsForm.resx">
|
<EmbeddedResource Include="Forms\SettingsForm.resx">
|
||||||
<DependentUpon>SettingsForm.cs</DependentUpon>
|
<DependentUpon>SettingsForm.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Forms\TornEdgeSettingsForm.resx">
|
<EmbeddedResource Include="Sounds.resx" />
|
||||||
<DependentUpon>TornEdgeSettingsForm.cs</DependentUpon>
|
|
||||||
</EmbeddedResource>
|
|
||||||
<EmbeddedResource Include="Sounds.resx">
|
|
||||||
<Generator>ResXFileCodeGenerator</Generator>
|
|
||||||
<LastGenOutput>Sounds.Designer.cs</LastGenOutput>
|
|
||||||
</EmbeddedResource>
|
|
||||||
<None Include="greenshot.manifest" />
|
<None Include="greenshot.manifest" />
|
||||||
<None Include="Languages\help-en-US.html">
|
<None Include="Languages\help-en-US.html">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
@ -346,7 +331,6 @@
|
||||||
</None>
|
</None>
|
||||||
<None Include="Languages\language-nl-NL.xml">
|
<None Include="Languages\language-nl-NL.xml">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</None>
|
</None>
|
||||||
<None Include="Languages\language-nn-NO.xml" />
|
<None Include="Languages\language-nn-NO.xml" />
|
||||||
<None Include="Languages\language-pl-PL.xml">
|
<None Include="Languages\language-pl-PL.xml">
|
||||||
|
|
Binary file not shown.
|
@ -1,22 +0,0 @@
|
||||||
<div class="two-col left-box">
|
|
||||||
|
|
||||||
<h2>Kas tad ir „Greenshot”?</h2>
|
|
||||||
<p>„Greenshot” ir ātrdarbīga un ērta ekrānattēlu ieguves programmatūra „Windows” lietotājiem. Ar to iespējams:</p>
|
|
||||||
<p class="ul">
|
|
||||||
<span class="li">ātri iegūt ekranattēlus no visa ekrāna, tā daļas vai notikta loga, kā arī iegūt pilnu „Internet Explorer” lapu;</span> <span class="li">vienkārši pievienot piezīmes, izcelt vai aizmiglot atsevišķas attēla daļas;</span> <span class="li">saglabāt ekrānattēlu daudz dažādos veidos: saglabāt failā, izdrukājot, ievietojot starpliktuvē, nosūtot uz kādu citu programmatūru vai augšupielādēt tīmekļa servisos;</span> <span class="li">... un veikt daudzas citas brīnišķīgas lietas ikdienas vajadzībām.</li>
|
|
||||||
</p>
|
|
||||||
<p>Tā kā „Greenshot” ir vienkārši lietojams un pielāgojams, tas ir piemērots rīks projektu vadītājiem, programmatūru izstrādātājiem, pielietojumu aprakstu veidotājiem, testētājiem un viesiem pārējiem, kam vien nepieciešams iegūt ekrānattēlus.</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="two-col right-box">
|
|
||||||
|
|
||||||
<h2>Vēlies uzzināt ko vairāk?</h2>
|
|
||||||
<p>Ar „Greenshot” iespējams paveikt daudz ko. Iepazīsties ar <a title="„Greenshot” izmantošanas piemēru ekrānattēli" href="/screenshots/"> „Greenshot” izmantošanas piemēriem</a> vai lejupielādē <a title="Lejupielādē jaunāko pārbaudīto „Greenshot” versiju" href="/downloads/">jaunāko pārbaudīto „Greenshot” versiju</a>.</p>
|
|
||||||
|
|
||||||
<a class="button" href="/downloads/">Lejupielādes</a>
|
|
||||||
|
|
||||||
<h2>„Greenshot” ir brīvi lietojama atvērtā koda programmatūra</h2>
|
|
||||||
<p>„Greenshot” programmatūra ir pieejama ar <a href="http://en.wikipedia.org/wiki/GNU_General_Public_License" target="_blank">GPL</a> licenci. Tas nozīmē, ka to var brīvi lietot jebkurš gan personīgām, gan darba vajadzībām..</p>
|
|
||||||
<p>Ja „Greenshot” Tev ļoti palīdz darbā un ļauj ietaupīt laiku un naudu, novērtē to <a href="/support/">atbalstot tās izstrādi</a>..</p>
|
|
||||||
|
|
||||||
</div>
|
|
|
@ -1,22 +0,0 @@
|
||||||
<div class="two-col left-box">
|
|
||||||
|
|
||||||
<h2>Vad är Greenshot????</h2>
|
|
||||||
<p>Greenshot är ett litet skärmdumpsverktyg för Windows med följande huvudfunktioner:</p>
|
|
||||||
<p class="ul">
|
|
||||||
<span class="li">Skapa snabbt skärmdumpar av valda ytor, fönster eller fullskärm; du kan till och med ta skärmdumpar på hela (skrollande) webbsidor från Internet Explorer.</span> <span class="li">Du kan enkelt kommentera, framhäva eller censurera delar av skärmdumpen.</span> <span class="li">Exportera skärmdumpen på olika sätt: spara till fil, skicka till skrivare, kopiera till urklippet, bifoga i e-post, skicka till Office-program eller ladda upp till fotosidor som Flickr, Picasa m.m.</span> <span class="li">...och många fler möjligheter som förenklar sättet att skapa och ändra skärmdumpar varje dag.</li>
|
|
||||||
</p>
|
|
||||||
<p>Genom att vara lätt att förstå och konfigurera, är Greenshot ett effektivt verktyg för projektledare, mjukvaruutvecklare, tekniska skribenter, testare och alla andra som skapar skärmdumpar.</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="two-col right-box">
|
|
||||||
|
|
||||||
<h2>Vill du se mer?</h2>
|
|
||||||
<p>Självklart finns det mer Greenshot kan göra för dig. Ta en titt på några <a title="Skärmdumpar av Greenshot i praktiken" href="/screenshots/">skärmdumpar</a> av Greenshot i praktiken eller testa den <a title="Ladda ner den senaste stabila versionen av Greenshot" href="/downloads/">senaste versionen</a>.</p>
|
|
||||||
|
|
||||||
<a class="button" href="/downloads/">Ladda ner</a>
|
|
||||||
|
|
||||||
<h2>Greenshot är gratis och med öppen källkod</h2>
|
|
||||||
<p>Greenshot publiceras under <a href="http://sv.wikipedia.org/wiki/GNU_General_Public_License" target="_blank">GPL</a>, d.v.s. att denna mjukvara kan laddas ner och användas kostnadsfritt, även kommersiellt.</p>
|
|
||||||
<p>Om du tycker att Greenshot sparar dig en massa tid och pengar, är du välkommen att <a href="/support/">stödja utvecklingen</a> av detta skärmdumpprogram.</p>
|
|
||||||
|
|
||||||
</div>
|
|
73
Greenshot/Sounds.Designer.cs
generated
73
Greenshot/Sounds.Designer.cs
generated
|
@ -1,73 +0,0 @@
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// Dieser Code wurde von einem Tool generiert.
|
|
||||||
// Laufzeitversion:4.0.30319.34014
|
|
||||||
//
|
|
||||||
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
|
||||||
// der Code erneut generiert wird.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
namespace Greenshot {
|
|
||||||
using System;
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
|
||||||
/// </summary>
|
|
||||||
// Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
|
|
||||||
// -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
|
||||||
// Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
|
||||||
// mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
|
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
|
||||||
internal class Sounds {
|
|
||||||
|
|
||||||
private static global::System.Resources.ResourceManager resourceMan;
|
|
||||||
|
|
||||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
|
||||||
|
|
||||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
|
||||||
internal Sounds() {
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
|
||||||
/// </summary>
|
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
|
||||||
get {
|
|
||||||
if (object.ReferenceEquals(resourceMan, null)) {
|
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Greenshot.Sounds", typeof(Sounds).Assembly);
|
|
||||||
resourceMan = temp;
|
|
||||||
}
|
|
||||||
return resourceMan;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
|
||||||
/// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
|
||||||
/// </summary>
|
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
||||||
internal static global::System.Globalization.CultureInfo Culture {
|
|
||||||
get {
|
|
||||||
return resourceCulture;
|
|
||||||
}
|
|
||||||
set {
|
|
||||||
resourceCulture = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Sucht eine lokalisierte Ressource vom Typ System.Byte[].
|
|
||||||
/// </summary>
|
|
||||||
internal static byte[] camera {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("camera", resourceCulture);
|
|
||||||
return ((byte[])(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Binary file not shown.
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
This file is automatically generated by Visual Studio .Net. It is
|
|
||||||
used to store generic object data source configuration information.
|
|
||||||
Renaming the file extension or editing the content of this file may
|
|
||||||
cause the file to be unrecognizable by the program.
|
|
||||||
-->
|
|
||||||
<GenericObjectDataSource DisplayName="RemoteAttachment" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
|
||||||
<TypeInfo>GreenshotConfluencePlugin.confluence.RemoteAttachment, Web References.confluence.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
|
||||||
</GenericObjectDataSource>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
This file is automatically generated by Visual Studio .Net. It is
|
|
||||||
used to store generic object data source configuration information.
|
|
||||||
Renaming the file extension or editing the content of this file may
|
|
||||||
cause the file to be unrecognizable by the program.
|
|
||||||
-->
|
|
||||||
<GenericObjectDataSource DisplayName="RemotePage" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
|
||||||
<TypeInfo>GreenshotConfluencePlugin.confluence.RemotePage, Web References.confluence.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
|
||||||
</GenericObjectDataSource>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
This file is automatically generated by Visual Studio .Net. It is
|
|
||||||
used to store generic object data source configuration information.
|
|
||||||
Renaming the file extension or editing the content of this file may
|
|
||||||
cause the file to be unrecognizable by the program.
|
|
||||||
-->
|
|
||||||
<GenericObjectDataSource DisplayName="RemotePageSummary" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
|
||||||
<TypeInfo>GreenshotConfluencePlugin.confluence.RemotePageSummary, Web References.confluence.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
|
||||||
</GenericObjectDataSource>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
This file is automatically generated by Visual Studio .Net. It is
|
|
||||||
used to store generic object data source configuration information.
|
|
||||||
Renaming the file extension or editing the content of this file may
|
|
||||||
cause the file to be unrecognizable by the program.
|
|
||||||
-->
|
|
||||||
<GenericObjectDataSource DisplayName="RemoteSearchResult" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
|
||||||
<TypeInfo>GreenshotConfluencePlugin.confluence.RemoteSearchResult, Web References.confluence.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
|
||||||
</GenericObjectDataSource>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
This file is automatically generated by Visual Studio .Net. It is
|
|
||||||
used to store generic object data source configuration information.
|
|
||||||
Renaming the file extension or editing the content of this file may
|
|
||||||
cause the file to be unrecognizable by the program.
|
|
||||||
-->
|
|
||||||
<GenericObjectDataSource DisplayName="RemoteSpace" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
|
||||||
<TypeInfo>GreenshotConfluencePlugin.confluence.RemoteSpace, Web References.confluence.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
|
||||||
</GenericObjectDataSource>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
This file is automatically generated by Visual Studio .Net. It is
|
|
||||||
used to store generic object data source configuration information.
|
|
||||||
Renaming the file extension or editing the content of this file may
|
|
||||||
cause the file to be unrecognizable by the program.
|
|
||||||
-->
|
|
||||||
<GenericObjectDataSource DisplayName="RemoteSpaceSummary" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
|
||||||
<TypeInfo>GreenshotConfluencePlugin.confluence.RemoteSpaceSummary, Web References.confluence.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
|
||||||
</GenericObjectDataSource>
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="..\CommonProject.properties" />
|
<Import Project="..\CommonProject.properties" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ProjectGuid>{80D8DEB9-94E3-4876-8CCA-2DF1ED5F2C50}</ProjectGuid>
|
<ProjectGuid>{80D8DEB9-94E3-4876-8CCA-2DF1ED5F2C50}</ProjectGuid>
|
||||||
|
@ -17,8 +17,7 @@
|
||||||
<FileUpgradeFlags>
|
<FileUpgradeFlags>
|
||||||
</FileUpgradeFlags>
|
</FileUpgradeFlags>
|
||||||
<OldToolsVersion>3.5</OldToolsVersion>
|
<OldToolsVersion>3.5</OldToolsVersion>
|
||||||
<UpgradeBackupLocation>
|
<UpgradeBackupLocation />
|
||||||
</UpgradeBackupLocation>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="..\CommonProject.properties" />
|
<Import Project="..\CommonProject.properties" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ProjectGuid>{5B924697-4DCD-4F98-85F1-105CB84B7341}</ProjectGuid>
|
<ProjectGuid>{5B924697-4DCD-4F98-85F1-105CB84B7341}</ProjectGuid>
|
||||||
|
@ -14,11 +14,6 @@
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||||
<TargetFrameworkProfile />
|
<TargetFrameworkProfile />
|
||||||
<FileUpgradeFlags>
|
|
||||||
</FileUpgradeFlags>
|
|
||||||
<UpgradeBackupLocation>
|
|
||||||
</UpgradeBackupLocation>
|
|
||||||
<OldToolsVersion>3.5</OldToolsVersion>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue