Changeset 1091 for trunk/eraser6
- Timestamp:
- 6/2/2009 7:48:19 AM (4 years ago)
- Location:
- trunk/eraser6/Eraser
- Files:
-
- 4 edited
-
BasePanel.Designer.cs (modified) (2 diffs)
-
BasePanel.cs (modified) (1 diff)
-
SchedulerPanel.Designer.cs (modified) (3 diffs)
-
SettingsPanel.Designer.cs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser6/Eraser/BasePanel.Designer.cs
r904 r1091 51 51 { 52 52 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BasePanel)); 53 this. titleLabel = new System.Windows.Forms.Label();54 this. content = new System.Windows.Forms.Panel();55 this. titleIcon = new System.Windows.Forms.PictureBox();56 ((System.ComponentModel.ISupportInitialize)(this. titleIcon)).BeginInit();53 this.TitleLabel = new System.Windows.Forms.Label(); 54 this.Content = new System.Windows.Forms.Panel(); 55 this.TitleIcon = new System.Windows.Forms.PictureBox(); 56 ((System.ComponentModel.ISupportInitialize)(this.TitleIcon)).BeginInit(); 57 57 this.SuspendLayout(); 58 58 // 59 59 // titleLabel 60 60 // 61 resources.ApplyResources(this. titleLabel, "titleLabel");62 this. titleLabel.Name = "titleLabel";61 resources.ApplyResources(this.TitleLabel, "titleLabel"); 62 this.TitleLabel.Name = "titleLabel"; 63 63 // 64 64 // content 65 65 // 66 resources.ApplyResources(this. content, "content");67 this. content.Name = "content";66 resources.ApplyResources(this.Content, "content"); 67 this.Content.Name = "content"; 68 68 // 69 69 // titleIcon 70 70 // 71 resources.ApplyResources(this. titleIcon, "titleIcon");72 this. titleIcon.Name = "titleIcon";73 this. titleIcon.TabStop = false;71 resources.ApplyResources(this.TitleIcon, "titleIcon"); 72 this.TitleIcon.Name = "titleIcon"; 73 this.TitleIcon.TabStop = false; 74 74 // 75 75 // BasePanel 76 76 // 77 77 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 78 this.Controls.Add(this. content);79 this.Controls.Add(this. titleIcon);80 this.Controls.Add(this. titleLabel);78 this.Controls.Add(this.Content); 79 this.Controls.Add(this.TitleIcon); 80 this.Controls.Add(this.TitleLabel); 81 81 this.Name = "BasePanel"; 82 82 resources.ApplyResources(this, "$this"); 83 ((System.ComponentModel.ISupportInitialize)(this. titleIcon)).EndInit();83 ((System.ComponentModel.ISupportInitialize)(this.TitleIcon)).EndInit(); 84 84 this.ResumeLayout(false); 85 85 this.PerformLayout(); … … 89 89 #endregion 90 90 91 protected System.Windows.Forms.Label titleLabel; 92 protected System.Windows.Forms.PictureBox titleIcon; 93 protected System.Windows.Forms.Panel content; 91 private System.Windows.Forms.Label titleLabel; 92 private System.Windows.Forms.PictureBox titleIcon; 93 private System.Windows.Forms.Panel content; 94 94 95 } 95 96 } -
trunk/eraser6/Eraser/BasePanel.cs
r1028 r1091 37 37 titleLabel.Font = new Font(SystemFonts.MessageBoxFont.Name, 18f); 38 38 } 39 40 /// <summary> 41 /// The content panel displaying controls for the current panel 42 /// </summary> 43 protected Panel Content 44 { 45 get { return content; } 46 set { content = value; } 47 } 48 49 /// <summary> 50 /// The title of the current panel 51 /// </summary> 52 protected Label TitleLabel 53 { 54 get { return titleLabel; } 55 set { titleLabel = value; } 56 } 57 58 /// <summary> 59 /// The icon representing the content of the current panel 60 /// </summary> 61 protected PictureBox TitleIcon 62 { 63 get { return titleIcon; } 64 set { titleIcon = value; } 65 } 39 66 } 40 67 } -
trunk/eraser6/Eraser/SchedulerPanel.Designer.cs
r1044 r1091 67 67 this.schedulerDefaultMenu = new System.Windows.Forms.ContextMenuStrip(this.components); 68 68 this.newTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 69 ((System.ComponentModel.ISupportInitialize)(this. titleIcon)).BeginInit();70 this. content.SuspendLayout();69 ((System.ComponentModel.ISupportInitialize)(this.TitleIcon)).BeginInit(); 70 this.Content.SuspendLayout(); 71 71 this.schedulerMenu.SuspendLayout(); 72 72 this.schedulerDefaultMenu.SuspendLayout(); … … 75 75 // titleLabel 76 76 // 77 resources.ApplyResources(this. titleLabel, "titleLabel");77 resources.ApplyResources(this.TitleLabel, "titleLabel"); 78 78 // 79 79 // titleIcon 80 80 // 81 this. titleIcon.Image = global::Eraser.Properties.Resources.ToolbarSchedule;81 this.TitleIcon.Image = global::Eraser.Properties.Resources.ToolbarSchedule; 82 82 // 83 83 // content 84 84 // 85 this. content.Controls.Add(this.schedulerProgress);86 this. content.Controls.Add(this.scheduler);85 this.Content.Controls.Add(this.schedulerProgress); 86 this.Content.Controls.Add(this.scheduler); 87 87 // 88 88 // scheduler … … 202 202 this.DoubleBuffered = true; 203 203 this.Name = "SchedulerPanel"; 204 this.Controls.SetChildIndex(this. titleLabel, 0);205 this.Controls.SetChildIndex(this. titleIcon, 0);206 this.Controls.SetChildIndex(this. content, 0);207 ((System.ComponentModel.ISupportInitialize)(this. titleIcon)).EndInit();208 this. content.ResumeLayout(false);204 this.Controls.SetChildIndex(this.TitleLabel, 0); 205 this.Controls.SetChildIndex(this.TitleIcon, 0); 206 this.Controls.SetChildIndex(this.Content, 0); 207 ((System.ComponentModel.ISupportInitialize)(this.TitleIcon)).EndInit(); 208 this.Content.ResumeLayout(false); 209 209 this.schedulerMenu.ResumeLayout(false); 210 210 this.schedulerDefaultMenu.ResumeLayout(false); -
trunk/eraser6/Eraser/SettingsPanel.Designer.cs
r904 r1091 89 89 this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); 90 90 this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog(); 91 ((System.ComponentModel.ISupportInitialize)(this. titleIcon)).BeginInit();92 this. content.SuspendLayout();91 ((System.ComponentModel.ISupportInitialize)(this.TitleIcon)).BeginInit(); 92 this.Content.SuspendLayout(); 93 93 this.pluginsMenu.SuspendLayout(); 94 94 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); … … 97 97 // titleLbl 98 98 // 99 this.errorProvider.SetIconAlignment( this.titleLabel, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("titleLbl.IconAlignment"))));100 resources.ApplyResources( this.titleLabel, "titleLbl");99 this.errorProvider.SetIconAlignment(base.TitleLabel, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("titleLbl.IconAlignment")))); 100 resources.ApplyResources(base.TitleLabel, "titleLbl"); 101 101 // 102 102 // titleIcon 103 103 // 104 this.errorProvider.SetIconAlignment(this. titleIcon, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("titleIcon.IconAlignment"))));105 this. titleIcon.Image = global::Eraser.Properties.Resources.ToolbarSettings;104 this.errorProvider.SetIconAlignment(this.TitleIcon, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("titleIcon.IconAlignment")))); 105 this.TitleIcon.Image = global::Eraser.Properties.Resources.ToolbarSettings; 106 106 // 107 107 // content 108 108 // 109 this. content.Controls.Add(this.schedulerClearCompleted);110 this. content.Controls.Add(this.plausibleDeniabilityFilesAddFolder);111 this. content.Controls.Add(this.plausibleDeniabilityFilesRemove);112 this. content.Controls.Add(this.plausibleDeniabilityFilesAddFile);113 this. content.Controls.Add(this.plausibleDeniabilityFiles);114 this. content.Controls.Add(this.uiLanguage);115 this. content.Controls.Add(this.uiLanguageLbl);116 this. content.Controls.Add(this.plausibleDeniability);117 this. content.Controls.Add(this.erasePRNG);118 this. content.Controls.Add(this.erasePRNGLbl);119 this. content.Controls.Add(this.schedulerMissedIgnore);120 this. content.Controls.Add(this.schedulerMissedImmediate);121 this. content.Controls.Add(this.schedulerMissed);122 this. content.Controls.Add(this.scheduler);123 this. content.Controls.Add(this.pluginsManager);124 this. content.Controls.Add(this.plugins);125 this. content.Controls.Add(this.eraseUnusedMethod);126 this. content.Controls.Add(this.eraseFilesMethod);127 this. content.Controls.Add(this.eraseUnusedMethodLbl);128 this. content.Controls.Add(this.eraseFilesMethodLbl);129 this. content.Controls.Add(this.erase);130 this. content.Controls.Add(this.lockedConfirm);131 this. content.Controls.Add(this.lockedAllow);132 this. content.Controls.Add(this.uiContextMenu);133 this. content.Controls.Add(this.ui);134 this.errorProvider.SetIconAlignment(this. content, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("content.IconAlignment"))));135 resources.ApplyResources(this. content, "content");109 this.Content.Controls.Add(this.schedulerClearCompleted); 110 this.Content.Controls.Add(this.plausibleDeniabilityFilesAddFolder); 111 this.Content.Controls.Add(this.plausibleDeniabilityFilesRemove); 112 this.Content.Controls.Add(this.plausibleDeniabilityFilesAddFile); 113 this.Content.Controls.Add(this.plausibleDeniabilityFiles); 114 this.Content.Controls.Add(this.uiLanguage); 115 this.Content.Controls.Add(this.uiLanguageLbl); 116 this.Content.Controls.Add(this.plausibleDeniability); 117 this.Content.Controls.Add(this.erasePRNG); 118 this.Content.Controls.Add(this.erasePRNGLbl); 119 this.Content.Controls.Add(this.schedulerMissedIgnore); 120 this.Content.Controls.Add(this.schedulerMissedImmediate); 121 this.Content.Controls.Add(this.schedulerMissed); 122 this.Content.Controls.Add(this.scheduler); 123 this.Content.Controls.Add(this.pluginsManager); 124 this.Content.Controls.Add(this.plugins); 125 this.Content.Controls.Add(this.eraseUnusedMethod); 126 this.Content.Controls.Add(this.eraseFilesMethod); 127 this.Content.Controls.Add(this.eraseUnusedMethodLbl); 128 this.Content.Controls.Add(this.eraseFilesMethodLbl); 129 this.Content.Controls.Add(this.erase); 130 this.Content.Controls.Add(this.lockedConfirm); 131 this.Content.Controls.Add(this.lockedAllow); 132 this.Content.Controls.Add(this.uiContextMenu); 133 this.Content.Controls.Add(this.ui); 134 this.errorProvider.SetIconAlignment(this.Content, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("content.IconAlignment")))); 135 resources.ApplyResources(this.Content, "content"); 136 136 // 137 137 // ui … … 391 391 resources.ApplyResources(this, "$this"); 392 392 this.Controls.SetChildIndex(this.saveSettings, 0); 393 this.Controls.SetChildIndex(this. titleLabel, 0);394 this.Controls.SetChildIndex(this. titleIcon, 0);395 this.Controls.SetChildIndex(this. content, 0);396 ((System.ComponentModel.ISupportInitialize)(this. titleIcon)).EndInit();397 this. content.ResumeLayout(false);398 this. content.PerformLayout();393 this.Controls.SetChildIndex(this.TitleLabel, 0); 394 this.Controls.SetChildIndex(this.TitleIcon, 0); 395 this.Controls.SetChildIndex(this.Content, 0); 396 ((System.ComponentModel.ISupportInitialize)(this.TitleIcon)).EndInit(); 397 this.Content.ResumeLayout(false); 398 this.Content.PerformLayout(); 399 399 this.pluginsMenu.ResumeLayout(false); 400 400 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
Note: See TracChangeset
for help on using the changeset viewer.
