mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
Mainly code cleanup, added a lot of comments. Also making sure the element which was selected while being removed is re-selected again when undo is used. Not really happy with the solution as the the container should handle this somehow itself without work-around, for now it should be enough.
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2311 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
3d62f9c279
commit
46e9ea0e59
10 changed files with 246 additions and 60 deletions
|
@ -811,8 +811,8 @@ namespace Greenshot {
|
|||
this.undoToolStripMenuItem.Enabled = canUndo;
|
||||
string undoAction = "";
|
||||
if (canUndo) {
|
||||
if (surface.UndoActionKey != LangKey.none) {
|
||||
undoAction = Language.GetString(surface.UndoActionKey);
|
||||
if (surface.UndoActionLanguageKey != LangKey.none) {
|
||||
undoAction = Language.GetString(surface.UndoActionLanguageKey);
|
||||
}
|
||||
}
|
||||
string undoText = Language.GetFormattedString(LangKey.editor_undo, undoAction);
|
||||
|
@ -824,8 +824,8 @@ namespace Greenshot {
|
|||
this.redoToolStripMenuItem.Enabled = canRedo;
|
||||
string redoAction = "";
|
||||
if (canRedo) {
|
||||
if (surface.RedoActionKey != LangKey.none) {
|
||||
redoAction = Language.GetString(surface.RedoActionKey);
|
||||
if (surface.RedoActionLanguageKey != LangKey.none) {
|
||||
redoAction = Language.GetString(surface.RedoActionLanguageKey);
|
||||
}
|
||||
}
|
||||
string redoText = Language.GetFormattedString(LangKey.editor_redo, redoAction);
|
||||
|
@ -839,7 +839,7 @@ namespace Greenshot {
|
|||
return;
|
||||
}
|
||||
// check dependencies for the Surface
|
||||
bool hasItems = surface.HasSelectedElements();
|
||||
bool hasItems = surface.HasSelectedElements;
|
||||
bool actionAllowedForSelection = hasItems && !controlsDisabledDueToConfirmable;
|
||||
|
||||
// buttons
|
||||
|
@ -918,7 +918,7 @@ namespace Greenshot {
|
|||
/// </summary>
|
||||
private void refreshFieldControls() {
|
||||
propertiesToolStrip.SuspendLayout();
|
||||
if(surface.HasSelectedElements() || surface.DrawingMode != DrawingModes.None) {
|
||||
if(surface.HasSelectedElements || surface.DrawingMode != DrawingModes.None) {
|
||||
FieldAggregator props = surface.FieldAggregator;
|
||||
btnFillColor.Visible = props.HasFieldValue(FieldType.FILL_COLOR);
|
||||
btnLineColor.Visible = props.HasFieldValue(FieldType.LINE_COLOR);
|
||||
|
@ -983,7 +983,7 @@ namespace Greenshot {
|
|||
updateUndoRedoSurfaceDependencies();
|
||||
|
||||
// en/disablearrage controls depending on hierarchy of selected elements
|
||||
bool actionAllowedForSelection = surface.HasSelectedElements() && !controlsDisabledDueToConfirmable;
|
||||
bool actionAllowedForSelection = surface.HasSelectedElements && !controlsDisabledDueToConfirmable;
|
||||
bool push = actionAllowedForSelection && surface.CanPushSelectionDown();
|
||||
bool pull = actionAllowedForSelection && surface.CanPullSelectionUp();
|
||||
this.arrangeToolStripMenuItem.Enabled = (push || pull);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue