CODE 1: Neuer Inhalt Form1.cs / New content Form1.cs
CODE 2: Neuer Inhalt Form1.designer.cs / New content Form1.designer.cs
--------------------------- CODE 1 ----------------------------
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// See MainForm.cs for details
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Web;
using Microsoft.Win32;
using System.Net;
using System.IO;
using System.Threading;
namespace Easy_Feed_Editor
{
public partial class edit_eintrag : Form
{
feed_objekt aktuelle_datei;
hauptfenster hauptfenst;
author_suggest author_objekt;
category_suggest cat_objekt;
int id;
string html_code;
bool is_new_entry = false;
// Beginn Design-Elemente
TextBox[] t;
Label[] l;
Skybound.Gecko.GeckoWebBrowser geckoWebBrowser1;
public string MimeType (string filename)
{
string mime = "application/octetstream";
string ext = Path.GetExtension(filename).ToLower();
RegistryKey rk = Registry.ClassesRoot.OpenSubKey(ext);
if (rk != null && rk.GetValue("Content Type") != null)
{
mime = rk.GetValue("Content Type").ToString();
}
return mime;
}
public long FileSize(string filename)
{
try
{
string local = Path.GetTempFileName();
WebClient client = new WebClient();
client.DownloadFile(filename, local);
if(MimeType(filename) == "image/gif" || MimeType(filename) == "image/jpeg" || MimeType(filename) == "image/tiff" || MimeType(filename) == "image/png" || MimeType(filename) == "image/bmp")
{
pictureBox1.ImageLocation = local;
}
else
{
pictureBox1.Image = pictureBox1.ErrorImage;
}
FileInfo fInfo = new FileInfo(local);
return fInfo.Length;
}
catch(WebException)
{
config_info conf = new config_info();
error_messages lang = new error_messages(conf.get_int_value("language"));
fehler fehlerfenster = new fehler("EFE-3.0-BE-AS-1",lang.return_text(11));
fehlerfenster.ShowDialog();
return -1;
}
catch(UriFormatException)
{
config_info conf = new config_info();
error_messages lang = new error_messages(conf.get_int_value("language"));
fehler fehlerfenster = new fehler("EFE-3.0-BE-AS-2",lang.return_text(12));
fehlerfenster.ShowDialog();
return -1;
}
catch(Exception)
{
config_info conf = new config_info();
error_messages lang = new error_messages(conf.get_int_value("language"));
fehler fehlerfenster = new fehler("EFE-3.0-BE-AS-3",lang.return_text(13));
fehlerfenster.ShowDialog();
return -1;
}
}
public void add_additional_textboxes(String[] attributes,String[] values)
{
int amount = attributes.Length;
t = new TextBox[amount];
l = new Label[amount];
for(int i = 0;i < t.Length;i = i+1)
{
t[i] = new TextBox();
t[i].Location = new System.Drawing.Point(150, 20+40*i);
t[i].Size = new System.Drawing.Size(568, 20);
t[i].Text = values[i];
l[i] = new Label();
l[i].Location = new System.Drawing.Point(10, 20+40*i);
l[i].Size = new System.Drawing.Size(140, 20);
l[i].Text = attributes[i];
tabPage3.Controls.Add(t[i]);
tabPage3.Controls.Add(l[i]);
tabPage3.Refresh();
}
}
///
/// Preparing to get HtML code
/// Start at least 500ms before calling this get_html()
///
public void prepare_for_getting_html()
{
this.geckoWebBrowser1.Navigate("javascript:tinyMCE.get('elm1').getContent()");
}
///
/// Gets the HTML-code of this control
/// Start prepare_for_getting_html() at least 500ms before calling this method
///
/// html code
public string get_html()
{
return this.geckoWebBrowser1.Document.Body.InnerHtml;
}
void change_html(string html)
{
try
{
this.geckoWebBrowser1.Document.Body.GetElementsByTagName("textarea")[0].InnerHtml = html;
this.geckoWebBrowser1.Navigate("javascript:tinyMCE.get('elm1').show()");
}
catch(Exception)
{
config_info conf = new config_info();
error_messages lang = new error_messages(conf.get_int_value("language"));
fehler f = new fehler("EFE-3.0-BE-INT-1",lang.return_text(17));
f.ShowDialog();
}
}
void init_gecko()
{
this.geckoWebBrowser1.Location = new System.Drawing.Point(10, 3);
this.geckoWebBrowser1.Name = "geckoWebBrowser1";
//TODO:Beta 3: Keine Gecko-Scrollbars mehr
this.geckoWebBrowser1.Size = new System.Drawing.Size(1000, 640);
this.geckoWebBrowser1.TabIndex = 0;
this.geckoWebBrowser1.CreateControl();
this.tabPage6.Controls.Add(this.geckoWebBrowser1);
config_info conf = new config_info();
Form1_language lang = new Form1_language(conf.get_int_value("language"));
string path = String.Concat(Application.StartupPath,"\\editor\\",lang.return_text(9));
this.geckoWebBrowser1.Navigate(this.build_uri(path));
this.geckoWebBrowser1.NoDefaultContextMenu = true;
this.geckoWebBrowser1.DocumentCompleted += new EventHandler(this.geckofinished);
}
public void geckofinished(object sender, EventArgs e)
{
this.timer1.Enabled = true;
}
public edit_eintrag(int nummer,feed_objekt datei,hauptfenster haupt,author_suggest author_hand,category_suggest cat)
{
this.geckoWebBrowser1 = new Skybound.Gecko.GeckoWebBrowser();
//Dies ist nötig, weil sonst beim startmenü start -> fehler
Skybound.Gecko.Xpcom.Initialize(String.Concat(Application.StartupPath,"\\xulrunner"));
//
// The InitializeComponent() call is required for Windows Forms designer support.
//
InitializeComponent();
language_support(false);
// Die Zeit wird eingelesen
this.dateTimePicker1.Value = DateTime.Now;
this.textBox2.Text = DateTime.Now.ToString("hh");
this.textBox3.Text = DateTime.Now.ToString("mm");
//
this.category.MouseDown += new MouseEventHandler(category_down);
this.panel3.MouseDown += new MouseEventHandler(panel3_down);
this.panel3.MouseUp += new MouseEventHandler(panel3_up);
this.pictureBox3.MouseDown += new MouseEventHandler(panel3_down);
this.pictureBox3.MouseUp += new MouseEventHandler(panel3_up);
this.label12.MouseDown += new MouseEventHandler(panel3_down);
this.label12.MouseUp += new MouseEventHandler(panel3_up);
this.panel3.Click += new EventHandler(panel3_Click);
this.pictureBox2.MouseEnter += new EventHandler(this.zeige_info_compl_link);
this.pictureBox2.MouseLeave += new EventHandler(this.entferne_info_compl_link);
html_code = datei.elemente[nummer].get_description();
init_gecko();
cat_objekt = cat;
author_objekt = author_hand;
foreach(string single_author in author_objekt.get_authors())
{
this.author.Items.Add(single_author);
}
hauptfenst = haupt;
id = nummer;
aktuelle_datei = datei;
this.title.Text = aktuelle_datei.elemente[nummer].get_title();
string eintrag_text = aktuelle_datei.elemente[nummer].get_description();
this.comments.Text = aktuelle_datei.elemente[nummer].get_comments();
this.guid.Text = aktuelle_datei.elemente[nummer].get_guid();
this.author.Text = aktuelle_datei.elemente[nummer].get_author();
this.link.Text = aktuelle_datei.elemente[nummer].get_link();
this.enclosure_length.Text = aktuelle_datei.elemente[nummer].get_enclosure_length();
this.enclosure_type.Text = aktuelle_datei.elemente[nummer].get_enclosure_length();
this.enclosure_url.Text = aktuelle_datei.elemente[nummer].get_enclosure_length();
intitialize_category();
config_info config = new config_info();
if(config.get_value("use_additions") == "true")
{
this.add_additional_textboxes(aktuelle_datei.elemente[nummer].get_additional_attributes(),aktuelle_datei.elemente[nummer].get_additional_values());
this.tabPage3.Visible = true;
}
else
{
this.tabControl1.Controls.Remove(tabPage3);
}
if(config.get_value("display_preview_on_start") == "true")
{
if(this.enclosure_url.Text != "")
{
this.pictureBox6.Visible = true;
this.panel1.Visible = true;
this.label11.Visible = true;
this.backgroundWorker2.RunWorkerAsync();
}
}
}
public void set_new_entry_attribute()
{
is_new_entry = true;
language_support(true);
}
void intitialize_category()
{
this.category.Items.Clear();
foreach(string single_cat in cat_objekt.get_categories())
{
this.category.Items.Add(single_cat);
}
if(aktuelle_datei.elemente[id].get_category().Length != 0)
{
foreach(string single_cat in aktuelle_datei.elemente[id].get_category())
{
int cat_id = this.category.Items.IndexOf(single_cat);
this.category.SetItemChecked(cat_id,true);
}
}
}
void save_category()
{
int length = 0;
foreach(int cat_id in this.category.CheckedIndices)
{
length = length+1;
}
string[] categories = new string[length];
int i =0;
foreach(int cat_id in this.category.CheckedIndices)
{
categories[i] = category.GetItemText(category.Items[cat_id]);
i = i+1;
}
aktuelle_datei.elemente[id].change_category(categories);
}
public string build_uri(string input)
{
input = input.Replace(":\\\\",":/");
input = input.Replace("\\","/");
input = input.Replace("#","%23");
return String.Concat("file:///",input);
}
void language_support(bool only_title_for_adding)
{
config_info conf = new config_info();
Form1_language lang = new Form1_language(conf.get_int_value("language"));
if(only_title_for_adding == false)
{
// Zuweisung der Texte der Fensterelemente
// Fenstertitel
this.Text = lang.return_text(0);
this.tabPage1.Text = lang.return_text(1);
this.tabPage2.Text = lang.return_text(2);
this.tabPage3.Text = lang.return_text(30);
this.label1.Text = lang.return_text(3);
this.label2.Text = lang.return_text(4);
this.label7.Text = lang.return_text(5);
this.button2.Text = lang.return_text(6);
this.label4.Text = lang.return_text(7);
this.label16.Text = lang.return_text(8);
this.label11.Text = lang.return_text(10);
this.tabPage6.Text = lang.return_text(11);
this.abbrechen.Text = lang.return_text(12);
this.anwenden.Text = lang.return_text(13);
this.groupBox1.Text = lang.return_text(14);
this.label8.Text = lang.return_text(15);
this.button3.Text = lang.return_text(16);
this.checkBox1.Text = lang.return_text(17);
this.label13.Text = lang.return_text(18);
this.label14.Text = lang.return_text(19);
this.label9.Text = lang.return_text(20);
this.label10.Text = lang.return_text(21);
this.erweitert_verwende.Text = lang.return_text(22);
this.erweitert.Text = lang.return_text(23);
this.label6.Text = lang.return_text(24);
this.label5.Text = lang.return_text(25);
this.datum_akt.Text = lang.return_text(26);
this.radioButton1.Text = lang.return_text(27);
this.radioButton2.Text = lang.return_text(28);
this.renameToolStripMenuItem.Text = lang.return_text(31);
this.deleteToolStripMenuItem.Text = lang.return_text(32);
this.label3.Text = lang.return_text(33);
this.label12.Text = lang.return_text(34);
this.pictureBox3.Text = lang.return_text(34);
}
else
{
// Fenstertitel wenn neuer Eintrag hinzugeüfgt wird
this.Text = lang.return_text(35);
}
}
void TextBox1TextChanged (object sender,EventArgs e)
{
}
void zeige_info_compl_link(object sender, EventArgs e)
{
this.panel2.Visible = true;
}
void entferne_info_compl_link(object sender, EventArgs e)
{
this.panel2.Visible = false;
}
//
// public string str_html(string text)
// {
// text = text.Replace("\r\n","
");
// text = text.Replace("ä","ä");
// text = text.Replace("Ä","Ä");
//
// text = text.Replace("ü","ü");
// text = text.Replace("Ü","Ü");
//
// text = text.Replace("ö","ö");
// text = text.Replace("Ö","Ö");
//
// text = text.Replace("ß","ß");
//
// return text;
// }
// public string html_str(string text)
// {
// text = text.Replace("
","\r\n");
// text = text.Replace("
","\r\n");
//
// text = text.Replace("ä","ä");
// text = text.Replace("Ä","Ä");
//
// text = text.Replace("ü","ü");
// text = text.Replace("Ü","Ü");
//
// text = text.Replace("ö","ö");
// text = text.Replace("Ö","Ö");
//
// text = text.Replace("ß","ß");
//
// return text;
// }
void Erweitert_verwendeCheckedChanged(object sender, EventArgs e)
{
if(this.erweitert_verwende.Checked == true)
{
erweitert.Enabled = true;
}
else
{
erweitert.Enabled = false;
}
}
void AnwendenClick(object sender, EventArgs e)
{
this.prepare_for_getting_html();
// das letzendliche ändern wird in timer3Tick() ausgeführt
this.timer3.Enabled = true;
}
void AbbrechenClick(object sender, EventArgs e)
{
if(this.is_new_entry)
{
aktuelle_datei.delete_eintrag(id);
}
this.Close();
}
void Label7Click(object sender, EventArgs e)
{
}
void Button2Click(object sender, EventArgs e)
{
if(textBox1.Text != "" && textBox1.Text != null)
{
category.Items.Add(textBox1.Text);
cat_objekt.category_add(textBox1.Text);
textBox1.Text = "";
}
}
void Enclosure_urlLeave(object sender, EventArgs e)
{
if(enclosure_url.Text != "" && enclosure_url.Text != aktuelle_datei.elemente[id].get_enclosure_url() && this.checkBox1.Checked == true)
{
this.pictureBox6.Visible = true;
this.panel1.Visible = true;
this.label11.Visible = true;
anwenden.Enabled = false;
abbrechen.Enabled = false;
this.enclosure_url.Enabled = false;
this.backgroundWorker1.RunWorkerAsync();
}
}
void BackgroundWorker1DoWork(object sender, System.ComponentModel.DoWorkEventArgs e)
{
string type;
double length;
type = MimeType(enclosure_url.Text);
length = FileSize(enclosure_url.Text);
this.Invoke((MethodInvoker) delegate()
{
if(length > 0)
{
enclosure_type.Text = type;
enclosure_length.Text = length.ToString();
}
else
{
enclosure_url.Text = "";
enclosure_type.Text = "";
enclosure_length.Text = "";
}
this.pictureBox6.Visible = false;
this.panel1.Visible = false;
label11.Visible = false;
abbrechen.Enabled = true;
anwenden.Enabled = true;
enclosure_url.Enabled = true;
});
}
void CheckBox1CheckedChanged(object sender, EventArgs e)
{
if(checkBox1.Checked == true)
{
enclosure_type.Enabled = false;
enclosure_length.Enabled = false;
}
else
{
enclosure_type.Enabled = true;
enclosure_length.Enabled = true;
}
}
void Timer1Tick(object sender, EventArgs e)
{
this.timer1.Enabled = false;
this.anwenden.Enabled = true;
this.abbrechen.Enabled = true;
this.pictureBox6.Visible =false;
this.panel1.Visible = false;
this.label3.Visible = false;
this.change_html(html_code);
this.groupBox1.Enabled = true;
}
///
/// The compose_xml() function has been disabled as this preview mode is not supported yet.
/// The feature will be avaiable in one of the later versions
///
// public string compose_xml()
// {
//
// string xml = "";
// xml = String.Concat(xml,"");
//
// xml = String.Concat(xml,aktuelle_datei.get_titel(),"",aktuelle_datei.get_link(),"",aktuelle_datei.get_description(),"");
//
// xml = String.Concat(xml,"",aktuelle_datei.get_language(),"",aktuelle_datei.get_copyright(),"");
//
//
//
//
// xml = String.Concat(xml,"- ",this.title.Text,"",this.link.Text,"",this.author.Text,"");
//
// string comm = "";
// if(this.comments.Text != "" && this.comments.Text != null)
// {
// comm = "";
// comm = String.Concat(comm,this.comments.Text ,"");
// }
//
// string PubDate = "";
//
// PubDate = "";
// PubDate = String.Concat(PubDate,DateTime.Now.ToString("R"),"");
//
// foreach(string cat_hand in this.category.SelectedItems)
// {
//
// xml = String.Concat(xml,"",cat_hand,"");
// }
// string enclosure = "";
// if(this.enclosure_url.Text != "")
// {
// enclosure= String.Concat("");
// }
//
// xml = String.Concat(xml,comm,"",this.guid.Text,"",PubDate,enclosure,"
");
//
// xml = String.Concat(xml,"");
//
// return xml;
//
// }
void Button3Click(object sender, EventArgs e)
{
}
void Enclosure_urlTextChanged(object sender, EventArgs e)
{
}
void BackgroundWorker2DoWork(object sender, System.ComponentModel.DoWorkEventArgs e)
{
string local = Path.GetTempFileName();
WebClient client = new WebClient();
client.DownloadFile(aktuelle_datei.elemente[id].get_enclosure_url(), local);
this.Invoke((MethodInvoker) delegate()
{
if(MimeType(aktuelle_datei.elemente[id].get_enclosure_url()) == "image/gif" || MimeType(aktuelle_datei.elemente[id].get_enclosure_url()) == "image/jpeg" || MimeType(aktuelle_datei.elemente[id].get_enclosure_url()) == "image/tiff" || MimeType(aktuelle_datei.elemente[id].get_enclosure_url()) == "image/png" || MimeType(aktuelle_datei.elemente[id].get_enclosure_url()) == "image/bmp")
{
pictureBox1.ImageLocation = local;
}
else
{
pictureBox1.Image = pictureBox1.ErrorImage;
}
pictureBox1.ImageLocation = local;
this.pictureBox6.Visible = false;
this.panel1.Visible = false;
label11.Visible = false;
});
}
void UserControl11Load(object sender, EventArgs e)
{
}
void TextBox2TextChanged(object sender, EventArgs e)
{
}
void Timer2Tick(object sender, EventArgs e)
{
// Dieser Timer sorgt darfür, dass das Bild in der stazusleiste nicht stehenbleibt.
this.pictureBox6.Image = this.pictureBox6.Image;
}
void category_down(object sender,MouseEventArgs e)
{
category.SelectedIndex = category.IndexFromPoint(e.X, e.Y);
}
void panel3_down(object sender,MouseEventArgs e)
{
this.panel3.BorderStyle = BorderStyle.Fixed3D;
}
void panel3_up(object sender,MouseEventArgs e)
{
this.panel3.BorderStyle = BorderStyle.FixedSingle;
}
void panel3_Click(object sender, EventArgs e)
{
import_html();
}
void DeleteToolStripMenuItemClick(object sender, EventArgs e)
{
this.save_category();
cat_objekt.remove_category(this.category.SelectedItem.ToString());
aktuelle_datei.remove_eintrag_category(this.category.SelectedItem.ToString());
intitialize_category();
}
void RenameToolStripMenuItemClick(object sender, EventArgs e)
{
this.save_category();
kategorie_umbenennen kat = new kategorie_umbenennen(cat_objekt,aktuelle_datei,this.category.SelectedItem.ToString());
kat.ShowDialog();
intitialize_category();
}
void Timer3Tick(object sender, EventArgs e)
{
this.timer3.Enabled = false;
if(datum_akt.Checked == true)
{
DateTime DT;
if(radioButton1.Checked == true)
{
DT = DateTime.Now;
}
else
{
DT = new DateTime(dateTimePicker1.Value.Year,dateTimePicker1.Value.Month,dateTimePicker1.Value.Day,Convert.ToInt16(this.textBox2.Text),Convert.ToInt16(this.textBox3.Text),0);
}
aktuelle_datei.elemente[id].change_pubDate(DT);
}
this.author_objekt.author_add(this.author.Text);
save_category();
aktuelle_datei.elemente[id].change_enclosure_url(this.enclosure_url.Text);
aktuelle_datei.elemente[id].change_enclosure_type(this.enclosure_type.Text);
aktuelle_datei.elemente[id].change_enclosure_length(this.enclosure_length.Text);
aktuelle_datei.elemente[id].change_titel(this.title.Text);
aktuelle_datei.elemente[id].change_comments(this.comments.Text);
aktuelle_datei.elemente[id].change_author(this.author.Text);
aktuelle_datei.elemente[id].change_guid(this.guid.Text);
aktuelle_datei.elemente[id].change_link(this.link.Text);
config_info config = new config_info();
if(config.get_value("use_additions") == "true")
{
String[] values = new string[t.Length];
int i=0;
foreach(TextBox text in t)
{
values[i] = text.Text;
i = i+1;
}
aktuelle_datei.elemente[id].change_additional_values(values);
}
aktuelle_datei.elemente[id].change_description(this.get_html());
this.Close();
hauptfenst.eintrags_liste_aktualisieren();
hauptfenst.anders_gemacht(true);
}
void PictureBox3Click(object sender, EventArgs e)
{
import_html();
}
void import_html()
{
//TODO:Beta 3:Umlaute
openFileDialog1.ShowDialog();
if(openFileDialog1.FileName.ToString() != "")
{
string file = openFileDialog1.FileName.ToString();
try
{
string file_content = HttpUtility.HtmlEncode(File.ReadAllText(file));
change_html(file_content);
}
catch(Exception)
{
config_info conf = new config_info();
error_messages lang = new error_messages(conf.get_int_value("language"));
hauptfenst.fehler("EFE-3.0-BE-INT-2",lang.return_text(25),false);
}
}
}
void Label12Click(object sender, EventArgs e)
{
import_html();
}
void Panel3Paint(object sender, PaintEventArgs e)
{
}
void RadioButton1CheckedChanged(object sender, EventArgs e)
{
if(radioButton1.Checked == true)
{
this.dateTimePicker1.Enabled = false;
this.textBox2.Enabled = false;
this.textBox3.Enabled = false;
}
else
{
this.dateTimePicker1.Enabled = true;
this.textBox2.Enabled = true;
this.textBox3.Enabled = true;
}
}
void Edit_eintragLoad(object sender, EventArgs e)
{
}
}
}
--------------------------- CODE 2 ----------------------------
namespace Easy_Feed_Editor
{
partial class edit_eintrag
{
///
/// Designer variable used to keep track of non-visual components.
///
private System.ComponentModel.IContainer components = null;
///
/// Disposes resources used by the form.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
///
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(edit_eintrag));
this.label1 = new System.Windows.Forms.Label();
this.title = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.link = new System.Windows.Forms.TextBox();
this.anwenden = new System.Windows.Forms.Button();
this.abbrechen = new System.Windows.Forms.Button();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.panel2 = new System.Windows.Forms.Panel();
this.label15 = new System.Windows.Forms.Label();
this.pictureBox4 = new System.Windows.Forms.PictureBox();
this.label16 = new System.Windows.Forms.Label();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.author = new System.Windows.Forms.ComboBox();
this.button2 = new System.Windows.Forms.Button();
this.label7 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.category = new System.Windows.Forms.CheckedListBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label14 = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label13 = new System.Windows.Forms.Label();
this.button3 = new System.Windows.Forms.Button();
this.enclosure_type = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.enclosure_length = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.enclosure_url = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.tabPage6 = new System.Windows.Forms.TabPage();
this.panel3 = new System.Windows.Forms.Panel();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.label12 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.erweitert_verwende = new System.Windows.Forms.CheckBox();
this.erweitert = new System.Windows.Forms.GroupBox();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.label17 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.textBox3 = new System.Windows.Forms.TextBox();
this.comments = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.datum_akt = new System.Windows.Forms.CheckBox();
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
this.guid = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
this.helpProvider1 = new System.Windows.Forms.HelpProvider();
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.backgroundWorker2 = new System.ComponentModel.BackgroundWorker();
this.label11 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.label3 = new System.Windows.Forms.Label();
this.pictureBox6 = new System.Windows.Forms.PictureBox();
this.timer2 = new System.Windows.Forms.Timer(this.components);
this.timer3 = new System.Windows.Forms.Timer(this.components);
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.tabPage6.SuspendLayout();
this.panel3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
this.tabPage2.SuspendLayout();
this.erweitert.SuspendLayout();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(9, 16);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 23);
this.label1.TabIndex = 0;
this.label1.Text = "Titel";
//
// title
//
this.helpProvider1.SetHelpNavigator(this.title, System.Windows.Forms.HelpNavigator.Index);
this.title.Location = new System.Drawing.Point(160, 13);
this.title.Name = "title";
this.helpProvider1.SetShowHelp(this.title, true);
this.title.Size = new System.Drawing.Size(568, 20);
this.title.TabIndex = 1;
//
// label2
//
this.label2.Location = new System.Drawing.Point(9, 39);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(100, 23);
this.label2.TabIndex = 3;
this.label2.Text = "Autor";
//
// label4
//
this.label4.Location = new System.Drawing.Point(8, 237);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(144, 23);
this.label4.TabIndex = 6;
this.label4.Text = "Link zum vollständigen Inhalt";
//
// link
//
this.helpProvider1.SetHelpNavigator(this.link, System.Windows.Forms.HelpNavigator.Index);
this.link.Location = new System.Drawing.Point(160, 234);
this.link.Name = "link";
this.helpProvider1.SetShowHelp(this.link, true);
this.link.Size = new System.Drawing.Size(568, 20);
this.link.TabIndex = 7;
//
// anwenden
//
this.anwenden.Enabled = false;
this.anwenden.Location = new System.Drawing.Point(946, 708);
this.anwenden.Name = "anwenden";
this.anwenden.Size = new System.Drawing.Size(75, 23);
this.anwenden.TabIndex = 11;
this.anwenden.Text = "OK";
this.anwenden.UseVisualStyleBackColor = true;
this.anwenden.Click += new System.EventHandler(this.AnwendenClick);
//
// abbrechen
//
this.abbrechen.Enabled = false;
this.abbrechen.Location = new System.Drawing.Point(2, 708);
this.abbrechen.Name = "abbrechen";
this.abbrechen.Size = new System.Drawing.Size(75, 23);
this.abbrechen.TabIndex = 12;
this.abbrechen.Text = "Abbrechen";
this.abbrechen.UseVisualStyleBackColor = true;
this.abbrechen.Click += new System.EventHandler(this.AbbrechenClick);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage6);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Location = new System.Drawing.Point(1, 1);
this.tabControl1.Name = "tabControl1";
this.tabControl1.Padding = new System.Drawing.Point(6, 5);
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(1020, 701);
this.tabControl1.TabIndex = 13;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.groupBox2);
this.tabPage1.Controls.Add(this.groupBox1);
this.helpProvider1.SetHelpNavigator(this.tabPage1, System.Windows.Forms.HelpNavigator.Index);
this.tabPage1.Location = new System.Drawing.Point(4, 26);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.helpProvider1.SetShowHelp(this.tabPage1, true);
this.tabPage1.Size = new System.Drawing.Size(1012, 671);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Allgemeine Optionen";
this.tabPage1.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.panel2);
this.groupBox2.Controls.Add(this.title);
this.groupBox2.Controls.Add(this.pictureBox2);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Controls.Add(this.link);
this.groupBox2.Controls.Add(this.author);
this.groupBox2.Controls.Add(this.label4);
this.groupBox2.Controls.Add(this.button2);
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Controls.Add(this.textBox1);
this.groupBox2.Controls.Add(this.category);
this.groupBox2.Location = new System.Drawing.Point(7, 3);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(999, 279);
this.groupBox2.TabIndex = 25;
this.groupBox2.TabStop = false;
//
// panel2
//
this.panel2.BackColor = System.Drawing.Color.LightGray;
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel2.Controls.Add(this.label15);
this.panel2.Controls.Add(this.pictureBox4);
this.panel2.Controls.Add(this.label16);
this.panel2.Location = new System.Drawing.Point(708, 134);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(265, 94);
this.panel2.TabIndex = 23;
this.panel2.Visible = false;
//
// label15
//
this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label15.Location = new System.Drawing.Point(36, 4);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(177, 23);
this.label15.TabIndex = 17;
this.label15.Text = "Information";
//
// pictureBox4
//
this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
this.pictureBox4.Location = new System.Drawing.Point(3, 3);
this.pictureBox4.Name = "pictureBox4";
this.pictureBox4.Size = new System.Drawing.Size(27, 24);
this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox4.TabIndex = 16;
this.pictureBox4.TabStop = false;
//
// label16
//
this.label16.Location = new System.Drawing.Point(4, 34);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(256, 44);
this.label16.TabIndex = 18;
this.label16.Text = "In dieses Feld kannst du den Link zum vollständigen Inhalt (z.B: in einem Blog) h" +
"inzufügen, wenn ein solcher existiert.";
//
// pictureBox2
//
this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
this.pictureBox2.Location = new System.Drawing.Point(732, 234);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(22, 20);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox2.TabIndex = 22;
this.pictureBox2.TabStop = false;
//
// author
//
this.author.FormattingEnabled = true;
this.helpProvider1.SetHelpNavigator(this.author, System.Windows.Forms.HelpNavigator.Index);
this.author.Location = new System.Drawing.Point(161, 39);
this.author.Name = "author";
this.helpProvider1.SetShowHelp(this.author, true);
this.author.Size = new System.Drawing.Size(568, 21);
this.author.TabIndex = 13;
//
// button2
//
this.button2.Location = new System.Drawing.Point(385, 196);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 18;
this.button2.Text = "Hinzufügen";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.Button2Click);
//
// label7
//
this.label7.Location = new System.Drawing.Point(9, 62);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(100, 23);
this.label7.TabIndex = 14;
this.label7.Text = "Kategorien";
this.label7.Click += new System.EventHandler(this.Label7Click);
//
// textBox1
//
this.helpProvider1.SetHelpNavigator(this.textBox1, System.Windows.Forms.HelpNavigator.Index);
this.textBox1.Location = new System.Drawing.Point(161, 198);
this.textBox1.Name = "textBox1";
this.helpProvider1.SetShowHelp(this.textBox1, true);
this.textBox1.Size = new System.Drawing.Size(218, 20);
this.textBox1.TabIndex = 16;
//
// category
//
this.category.CheckOnClick = true;
this.category.ContextMenuStrip = this.contextMenuStrip1;
this.category.FormattingEnabled = true;
this.helpProvider1.SetHelpNavigator(this.category, System.Windows.Forms.HelpNavigator.Index);
this.category.Location = new System.Drawing.Point(161, 68);
this.category.Name = "category";
this.helpProvider1.SetShowHelp(this.category, true);
this.category.Size = new System.Drawing.Size(568, 124);
this.category.TabIndex = 15;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.renameToolStripMenuItem,
this.deleteToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(115, 48);
//
// renameToolStripMenuItem
//
this.renameToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("renameToolStripMenuItem.Image")));
this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
this.renameToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
this.renameToolStripMenuItem.Text = "rename";
this.renameToolStripMenuItem.Click += new System.EventHandler(this.RenameToolStripMenuItemClick);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("deleteToolStripMenuItem.Image")));
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
this.deleteToolStripMenuItem.Text = "delete";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.DeleteToolStripMenuItemClick);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label14);
this.groupBox1.Controls.Add(this.pictureBox1);
this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.button3);
this.groupBox1.Controls.Add(this.enclosure_type);
this.groupBox1.Controls.Add(this.label10);
this.groupBox1.Controls.Add(this.enclosure_length);
this.groupBox1.Controls.Add(this.label9);
this.groupBox1.Controls.Add(this.checkBox1);
this.groupBox1.Controls.Add(this.enclosure_url);
this.groupBox1.Controls.Add(this.label8);
this.groupBox1.Enabled = false;
this.groupBox1.Location = new System.Drawing.Point(7, 288);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(999, 362);
this.groupBox1.TabIndex = 24;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Medienanhang";
//
// label14
//
this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label14.ForeColor = System.Drawing.Color.Gray;
this.label14.Location = new System.Drawing.Point(578, 92);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(409, 21);
this.label14.TabIndex = 10;
this.label14.Text = "Anzeige nur bei Betätigen des Buttons Validieren oder falls die automatische Anze" +
"ige \r\nbeim Öffnen eines Beitragsfensters im Einstellungsmenü aktiviert wurde.";
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.Color.GhostWhite;
this.pictureBox1.ErrorImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.ErrorImage")));
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(462, 117);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(525, 233);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 9;
this.pictureBox1.TabStop = false;
//
// label13
//
this.label13.Location = new System.Drawing.Point(462, 92);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(146, 17);
this.label13.TabIndex = 8;
this.label13.Text = "Vorschau (bei Bildern) ";
//
// button3
//
this.button3.Location = new System.Drawing.Point(780, 28);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(75, 23);
this.button3.TabIndex = 7;
this.button3.Text = "Validieren";
this.button3.UseVisualStyleBackColor = true;
//
// enclosure_type
//
this.enclosure_type.Enabled = false;
this.enclosure_type.Location = new System.Drawing.Point(162, 146);
this.enclosure_type.Name = "enclosure_type";
this.enclosure_type.Size = new System.Drawing.Size(253, 20);
this.enclosure_type.TabIndex = 6;
//
// label10
//
this.label10.Location = new System.Drawing.Point(9, 149);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(146, 23);
this.label10.TabIndex = 5;
this.label10.Text = "MIME-Type der Datei";
//
// enclosure_length
//
this.enclosure_length.Enabled = false;
this.enclosure_length.Location = new System.Drawing.Point(161, 120);
this.enclosure_length.Name = "enclosure_length";
this.enclosure_length.Size = new System.Drawing.Size(254, 20);
this.enclosure_length.TabIndex = 4;
//
// label9
//
this.label9.Location = new System.Drawing.Point(9, 123);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(146, 23);
this.label9.TabIndex = 3;
this.label9.Text = "Größe der Datei in Bytes";
//
// checkBox1
//
this.checkBox1.Checked = true;
this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox1.Location = new System.Drawing.Point(8, 92);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(850, 24);
this.checkBox1.TabIndex = 2;
this.checkBox1.Text = "Typ und Größe der Datei automatisch erkennen";
this.checkBox1.UseVisualStyleBackColor = true;
//
// enclosure_url
//
this.enclosure_url.Location = new System.Drawing.Point(160, 30);
this.enclosure_url.Name = "enclosure_url";
this.enclosure_url.Size = new System.Drawing.Size(614, 20);
this.enclosure_url.TabIndex = 1;
//
// label8
//
this.label8.Location = new System.Drawing.Point(6, 33);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(147, 23);
this.label8.TabIndex = 0;
this.label8.Text = "Internetadresse der Datei";
//
// tabPage6
//
this.tabPage6.Controls.Add(this.panel3);
this.tabPage6.Location = new System.Drawing.Point(4, 26);
this.tabPage6.Name = "tabPage6";
this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
this.tabPage6.Size = new System.Drawing.Size(1012, 671);
this.tabPage6.TabIndex = 3;
this.tabPage6.Text = "tabPage6";
this.tabPage6.UseVisualStyleBackColor = true;
//
// panel3
//
this.panel3.BackColor = System.Drawing.SystemColors.Control;
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel3.Controls.Add(this.pictureBox3);
this.panel3.Controls.Add(this.label12);
this.panel3.Location = new System.Drawing.Point(394, 644);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(293, 27);
this.panel3.TabIndex = 2;
this.panel3.Paint += new System.Windows.Forms.PaintEventHandler(this.Panel3Paint);
//
// pictureBox3
//
this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
this.pictureBox3.Location = new System.Drawing.Point(3, 0);
this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.Size = new System.Drawing.Size(24, 24);
this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBox3.TabIndex = 0;
this.pictureBox3.TabStop = false;
this.pictureBox3.Click += new System.EventHandler(this.PictureBox3Click);
//
// label12
//
this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label12.Location = new System.Drawing.Point(33, 3);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(252, 20);
this.label12.TabIndex = 1;
this.label12.Text = "label12";
this.label12.Click += new System.EventHandler(this.Label12Click);
//
// tabPage2
//
this.tabPage2.Controls.Add(this.erweitert_verwende);
this.tabPage2.Controls.Add(this.erweitert);
this.tabPage2.Location = new System.Drawing.Point(4, 26);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(1012, 671);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Weitere Einstellungen";
this.tabPage2.UseVisualStyleBackColor = true;
//
// erweitert_verwende
//
this.erweitert_verwende.Location = new System.Drawing.Point(6, 6);
this.erweitert_verwende.Name = "erweitert_verwende";
this.erweitert_verwende.Size = new System.Drawing.Size(856, 24);
this.erweitert_verwende.TabIndex = 11;
this.erweitert_verwende.Text = "Erweiterte Einstellungen bearbeiten";
this.erweitert_verwende.UseVisualStyleBackColor = true;
this.erweitert_verwende.CheckedChanged += new System.EventHandler(this.Erweitert_verwendeCheckedChanged);
//
// erweitert
//
this.erweitert.Controls.Add(this.radioButton2);
this.erweitert.Controls.Add(this.radioButton1);
this.erweitert.Controls.Add(this.label17);
this.erweitert.Controls.Add(this.label5);
this.erweitert.Controls.Add(this.textBox3);
this.erweitert.Controls.Add(this.comments);
this.erweitert.Controls.Add(this.textBox2);
this.erweitert.Controls.Add(this.datum_akt);
this.erweitert.Controls.Add(this.dateTimePicker1);
this.erweitert.Controls.Add(this.guid);
this.erweitert.Controls.Add(this.label6);
this.erweitert.Enabled = false;
this.erweitert.Location = new System.Drawing.Point(5, 36);
this.erweitert.Name = "erweitert";
this.erweitert.Size = new System.Drawing.Size(998, 196);
this.erweitert.TabIndex = 10;
this.erweitert.TabStop = false;
this.erweitert.Text = "Erweiterte Einstellungen";
//
// radioButton2
//
this.radioButton2.Location = new System.Drawing.Point(45, 140);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(292, 24);
this.radioButton2.TabIndex = 18;
this.radioButton2.Text = "radioButton2";
this.radioButton2.UseVisualStyleBackColor = true;
//
// radioButton1
//
this.radioButton1.Checked = true;
this.radioButton1.Location = new System.Drawing.Point(45, 110);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(292, 24);
this.radioButton1.TabIndex = 17;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "radioButton1";
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.RadioButton1CheckedChanged);
//
// label17
//
this.label17.Location = new System.Drawing.Point(327, 170);
this.label17.Margin = new System.Windows.Forms.Padding(0);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(8, 17);
this.label17.TabIndex = 16;
this.label17.Text = ":";
//
// label5
//
this.label5.Location = new System.Drawing.Point(6, 49);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(208, 17);
this.label5.TabIndex = 12;
this.label5.Text = "Adresse der zugehörigen Kommentare";
//
// textBox3
//
this.textBox3.Location = new System.Drawing.Point(335, 170);
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(35, 20);
this.textBox3.TabIndex = 14;
//
// comments
//
this.comments.Location = new System.Drawing.Point(233, 46);
this.comments.Name = "comments";
this.comments.Size = new System.Drawing.Size(744, 20);
this.comments.TabIndex = 11;
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(294, 170);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(35, 20);
this.textBox2.TabIndex = 13;
//
// datum_akt
//
this.datum_akt.Checked = true;
this.datum_akt.CheckState = System.Windows.Forms.CheckState.Checked;
this.datum_akt.Location = new System.Drawing.Point(14, 88);
this.datum_akt.Name = "datum_akt";
this.datum_akt.Size = new System.Drawing.Size(208, 24);
this.datum_akt.TabIndex = 10;
this.datum_akt.Text = "datum_akt";
this.datum_akt.UseVisualStyleBackColor = true;
//
// dateTimePicker1
//
this.dateTimePicker1.Location = new System.Drawing.Point(88, 170);
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(200, 20);
this.dateTimePicker1.TabIndex = 12;
//
// guid
//
this.guid.Location = new System.Drawing.Point(233, 13);
this.guid.Name = "guid";
this.guid.Size = new System.Drawing.Size(744, 20);
this.guid.TabIndex = 9;
//
// label6
//
this.label6.Location = new System.Drawing.Point(7, 16);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(100, 17);
this.label6.TabIndex = 0;
this.label6.Text = "GUID";
//
// tabPage3
//
this.tabPage3.AutoScroll = true;
this.tabPage3.Location = new System.Drawing.Point(4, 26);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
this.tabPage3.Size = new System.Drawing.Size(1012, 671);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "tabPage3";
this.tabPage3.UseVisualStyleBackColor = true;
//
// backgroundWorker1
//
this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.BackgroundWorker1DoWork);
//
// helpProvider1
//
this.helpProvider1.HelpNamespace = "C:\\Users\\Michael\\Documents\\SharpDevelop Projects\\Easy Feed Editor\\help\\easy-feed-" +
"editor-hilfe_tmphhp\\easy-feed-editor-hilfe.chm";
//
// timer1
//
this.timer1.Interval = 2000;
this.timer1.Tick += new System.EventHandler(this.Timer1Tick);
//
// backgroundWorker2
//
this.backgroundWorker2.DoWork += new System.ComponentModel.DoWorkEventHandler(this.BackgroundWorker2DoWork);
//
// label11
//
this.label11.Location = new System.Drawing.Point(32, 2);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(718, 17);
this.label11.TabIndex = 16;
this.label11.Text = "Informationen zur ausgewählten Mediendatei werden abgerufen. Dieser Vorgang kann " +
"einige Minuten dauern und benötigt Zugriffsrechte aufs Internet.";
this.label11.Visible = false;
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.pictureBox6);
this.panel1.Controls.Add(this.label11);
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 737);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1023, 20);
this.panel1.TabIndex = 17;
//
// label3
//
this.label3.Location = new System.Drawing.Point(32, 2);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(718, 17);
this.label3.TabIndex = 17;
this.label3.Text = "label3";
//
// pictureBox6
//
this.pictureBox6.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox6.Image")));
this.pictureBox6.Location = new System.Drawing.Point(1, 1);
this.pictureBox6.Name = "pictureBox6";
this.pictureBox6.Size = new System.Drawing.Size(17, 17);
this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox6.TabIndex = 0;
this.pictureBox6.TabStop = false;
//
// timer2
//
this.timer2.Enabled = true;
this.timer2.Interval = 1000;
this.timer2.Tick += new System.EventHandler(this.Timer2Tick);
//
// timer3
//
this.timer3.Interval = 500;
this.timer3.Tick += new System.EventHandler(this.Timer3Tick);
//
// openFileDialog1
//
this.openFileDialog1.Filter = "HTML|*.html;*.htm";
//
// edit_eintrag
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(1023, 757);
this.Controls.Add(this.panel1);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.anwenden);
this.Controls.Add(this.abbrechen);
this.helpProvider1.SetHelpKeyword(this, "");
this.helpProvider1.SetHelpNavigator(this, System.Windows.Forms.HelpNavigator.TableOfContents);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "edit_eintrag";
this.helpProvider1.SetShowHelp(this, true);
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = "Einen Eintrag bearbeiten";
this.Load += new System.EventHandler(this.Edit_eintragLoad);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.tabPage6.ResumeLayout(false);
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
this.tabPage2.ResumeLayout(false);
this.erweitert.ResumeLayout(false);
this.erweitert.PerformLayout();
this.panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
this.ResumeLayout(false);
}
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.TextBox textBox3;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.DateTimePicker dateTimePicker1;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.PictureBox pictureBox3;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Timer timer3;
private System.Windows.Forms.TabPage tabPage6;
private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem renameToolStripMenuItem;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.Timer timer2;
private System.Windows.Forms.PictureBox pictureBox6;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label16;
private System.Windows.Forms.PictureBox pictureBox4;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Label label14;
public System.ComponentModel.BackgroundWorker backgroundWorker2;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.ColorDialog colorDialog1;
private System.Windows.Forms.HelpProvider helpProvider1;
private System.Windows.Forms.Button button3;
public System.ComponentModel.BackgroundWorker backgroundWorker1;
private System.Windows.Forms.Label label11;
public System.Windows.Forms.TextBox enclosure_type;
private System.Windows.Forms.Label label9;
public System.Windows.Forms.TextBox enclosure_length;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.Label label8;
public System.Windows.Forms.TextBox enclosure_url;
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.CheckedListBox category;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.TextBox comments;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.CheckBox erweitert_verwende;
private System.Windows.Forms.GroupBox erweitert;
private System.Windows.Forms.CheckBox datum_akt;
private System.Windows.Forms.TextBox guid;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.Button abbrechen;
private System.Windows.Forms.Button anwenden;
private System.Windows.Forms.TextBox link;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox author;
private System.Windows.Forms.TextBox title;
private System.Windows.Forms.Label label1;
}
}