aboutsummaryrefslogtreecommitdiff
path: root/V3/Widgets/IBasicWidgetFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Widgets/IBasicWidgetFactory.cs')
-rw-r--r--V3/Widgets/IBasicWidgetFactory.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/V3/Widgets/IBasicWidgetFactory.cs b/V3/Widgets/IBasicWidgetFactory.cs
new file mode 100644
index 0000000..dd0a28d
--- /dev/null
+++ b/V3/Widgets/IBasicWidgetFactory.cs
@@ -0,0 +1,38 @@
+namespace V3.Widgets
+{
+ /// <summary>
+ /// A widget factory that is automatically implemented by Ninject.
+ /// </summary>
+ public interface IBasicWidgetFactory
+ {
+ /// <summary>
+ /// Creates a new button widget.
+ /// </summary>
+ /// <returns>a new button widget</returns>
+ Button CreateButton();
+
+ /// <summary>
+ /// Creates a new empty widget.
+ /// </summary>
+ /// <returns>a new empty widget</returns>
+ EmptyWidget CreateEmptyWidget();
+
+ /// <summary>
+ /// Creates a new select button widget.
+ /// </summary>
+ /// <returns>a new select button widget</returns>
+ SelectButton CreateSelectButton();
+
+ /// <summary>
+ /// Creates a new label widget.
+ /// </summary>
+ /// <returns>a new label widget</returns>
+ Label CreateLabel();
+
+ /// <summary>
+ /// Creates a new Achievement Box.
+ /// </summary>
+ /// <returns>a new achievement box widget.</returns>
+ AchievementBox CreateAchievementBox();
+ }
+}