Skip to content

Commit 3e57acd

Browse files
committed
v2.4.0
1 parent 9fcf21e commit 3e57acd

34 files changed

+153
-801
lines changed

.vs/QuickLibrary/v16/.suo

11 KB
Binary file not shown.
0 Bytes
Binary file not shown.
-32 KB
Binary file not shown.
-3.96 MB
Binary file not shown.

QuickLibrary/DropShadow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace QuickLibrary
77
{
8-
public class DropShadow
8+
internal class DropShadow
99
{
1010
private const int WM_NCHITTEST = 0x84;
1111
private const int WS_MINIMIZEBOX = 0x20000;

QuickLibrary/Dwm.cs

Lines changed: 0 additions & 308 deletions
This file was deleted.

QuickLibrary/OkForm.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55

66
namespace QuickLibrary
77
{
8-
public partial class OkForm : QlibFixedForm
8+
internal partial class OkForm : QlibFixedForm
99
{
1010
public OkForm(
1111
string messageText,
1212
string windowTitle,
1313
bool darkMode = false
1414
)
1515
{
16+
1617
if (darkMode)
1718
{
1819
HandleCreated += new EventHandler(ThemeManager.formHandleCreated);

QuickLibrary/PluginInfo.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ public struct Function
4141
{
4242
public string name;
4343
public MultilangString title;
44-
public string type; // tool, effect
45-
public bool configurable;
46-
public bool inputRequired; // for type = tool
44+
public string type;
45+
public bool inputRequired;
46+
public bool dialog;
47+
public bool hideMainWindow;
4748
}
4849

4950
#endregion
@@ -56,9 +57,9 @@ public struct Function
5657
public MultilangString description;
5758
public string link;
5859
public Author[] authors;
59-
public int apiVer; // 2
60-
public string inputType; // bitmap
61-
public string dllType; // csharp, cpp
60+
public int apiVer;
61+
public string inputType;
62+
public string dllType;
6263
public Function[] functions;
6364

6465
#endregion

QuickLibrary/PluginMan.cs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using System.Collections.Generic;
33
using System.Drawing;
44
using System.IO;
5-
using System.Runtime.InteropServices;
65

76
namespace QuickLibrary
87
{
@@ -12,13 +11,7 @@ public class PluginMan
1211
public static int apiVer = 0;
1312
public static string inputType = null;
1413

15-
public delegate Bitmap RunFunction(
16-
Object input = null,
17-
string path = null,
18-
string[] args = null
19-
);
20-
21-
public delegate string[] ConfFunction(
14+
public delegate string[] RunFunction(
2215
Object input = null,
2316
string path = null,
2417
bool darkMode = false,

0 commit comments

Comments
 (0)