mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-09 07:13:02 -08:00
127 lines
3.9 KiB
C#
127 lines
3.9 KiB
C#
/*
|
|
* Greenshot - a free and open source screenshot tool
|
|
* Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom
|
|
*
|
|
* For more information see: http://getgreenshot.org/
|
|
* The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
using GreenshotPlugin.IniFile;
|
|
|
|
namespace GreenshotExternalCommandPlugin {
|
|
/// <summary>
|
|
/// Description of SettingsForm.
|
|
/// </summary>
|
|
public partial class SettingsForm : ExternalCommandForm {
|
|
private static readonly ExternalCommandConfiguration ExternalCommandConfig = IniConfig.GetIniSection<ExternalCommandConfiguration>();
|
|
|
|
public SettingsForm() {
|
|
//
|
|
// The InitializeComponent() call is required for Windows Forms designer support.
|
|
//
|
|
InitializeComponent();
|
|
AcceptButton = buttonOk;
|
|
CancelButton = buttonCancel;
|
|
UpdateView();
|
|
}
|
|
|
|
private void ButtonOkClick(object sender, EventArgs e) {
|
|
IniConfig.Save();
|
|
}
|
|
|
|
private void ButtonAddClick(object sender, EventArgs e) {
|
|
var form = new SettingsFormDetail(null);
|
|
form.ShowDialog();
|
|
|
|
UpdateView();
|
|
}
|
|
|
|
private void ButtonDeleteClick(object sender, EventArgs e) {
|
|
foreach(ListViewItem item in listView1.SelectedItems) {
|
|
string commando = item.Tag as string;
|
|
|
|
ExternalCommandConfig.Delete(commando);
|
|
}
|
|
UpdateView();
|
|
}
|
|
|
|
private void UpdateView() {
|
|
listView1.Items.Clear();
|
|
if(ExternalCommandConfig.Commands != null) {
|
|
listView1.ListViewItemSorter = new ListviewComparer();
|
|
ImageList imageList = new ImageList();
|
|
listView1.SmallImageList = imageList;
|
|
int imageNr = 0;
|
|
foreach(string commando in ExternalCommandConfig.Commands) {
|
|
ListViewItem item;
|
|
Image iconForExe = IconCache.IconForCommand(commando);
|
|
if(iconForExe != null) {
|
|
imageList.Images.Add(iconForExe);
|
|
item = new ListViewItem(commando, imageNr++);
|
|
} else {
|
|
item = new ListViewItem(commando);
|
|
}
|
|
item.Tag = commando;
|
|
listView1.Items.Add(item);
|
|
}
|
|
}
|
|
// Fix for bug #1484, getting an ArgumentOutOfRangeException as there is nothing selected but the edit button was still active.
|
|
button_edit.Enabled = listView1.SelectedItems.Count > 0;
|
|
}
|
|
|
|
private void ListView1ItemSelectionChanged(object sender, EventArgs e) {
|
|
button_edit.Enabled = listView1.SelectedItems.Count > 0;
|
|
}
|
|
|
|
private void ButtonEditClick(object sender, EventArgs e) {
|
|
ListView1DoubleClick(sender, e);
|
|
}
|
|
|
|
private void ListView1DoubleClick(object sender, EventArgs e) {
|
|
// Safety check for bug #1484
|
|
bool selectionActive = listView1.SelectedItems.Count > 0;
|
|
if(!selectionActive) {
|
|
button_edit.Enabled = false;
|
|
return;
|
|
}
|
|
string commando = listView1.SelectedItems[0].Tag as string;
|
|
|
|
var form = new SettingsFormDetail(commando);
|
|
form.ShowDialog();
|
|
|
|
UpdateView();
|
|
}
|
|
}
|
|
|
|
public class ListviewComparer : System.Collections.IComparer {
|
|
public int Compare(object x, object y) {
|
|
if(!(x is ListViewItem)) {
|
|
return (0);
|
|
}
|
|
if(!(y is ListViewItem)) {
|
|
return (0);
|
|
}
|
|
|
|
var l1 = (ListViewItem)x;
|
|
var l2 = (ListViewItem)y;
|
|
return string.Compare(l1.Text, l2.Text, StringComparison.Ordinal);
|
|
}
|
|
}
|
|
}
|