Skip to content

Commit 09dda77

Browse files
committed
Added UI themes
- Added support for well known Visual Studio Themes. - Rafactored namespaces
1 parent 578eb04 commit 09dda77

File tree

415 files changed

+8118
-3813
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

415 files changed

+8118
-3813
lines changed
File renamed without changes.

src/GuiLibrary/Controls/ColorDropDown.cs renamed to src/Couchcoding.Logbert.Gui/Controls/ColorDropDown.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
using System.Drawing;
3333
using System.Windows.Forms;
3434

35-
namespace Com.Couchcoding.GuiLibrary.Controls
35+
namespace Couchcoding.Logbert.Gui.Controls
3636
{
3737
/// <summary>
3838
/// Implements a <see cref="ComboBox"/> <see cref="Control"/> to select a <see cref="Color"/>.

src/GuiLibrary/Controls/CustomToolStripSystemRenderer.cs renamed to src/Couchcoding.Logbert.Gui/Controls/CustomToolStripSystemRenderer.cs

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

3131
using System.Windows.Forms;
3232

33-
namespace Com.Couchcoding.GuiLibrary.Controls
33+
namespace Couchcoding.Logbert.Gui.Controls
3434
{
3535
/// <summary>
3636
/// Implements a custom <see cref="ToolStripSystemRenderer"/> control.

src/GuiLibrary/Controls/DataGridViewEx.cs renamed to src/Couchcoding.Logbert.Gui/Controls/DataGridViewEx.cs

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

3131
using System.Windows.Forms;
3232

33-
namespace Com.Couchcoding.GuiLibrary.Controls
33+
namespace Couchcoding.Logbert.Gui.Controls
3434
{
3535
/// <summary>
3636
/// Implements a double buffered <see cref="DataGridView"/> <see cref="Control"/>.

src/GuiLibrary/Controls/GroupBoxEx.cs renamed to src/Couchcoding.Logbert.Gui/Controls/GroupBoxEx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
using System.Drawing.Drawing2D;
3434
using System.Windows.Forms;
3535

36-
namespace Com.Couchcoding.GuiLibrary.Controls
36+
namespace Couchcoding.Logbert.Gui.Controls
3737
{
3838
/// <summary>
3939
/// Implements a custom drawn <see cref="GroupBox"/> <see cref="Control"/>.

src/GuiLibrary/Controls/InfoPanel.cs renamed to src/Couchcoding.Logbert.Gui/Controls/InfoPanel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
using System.Drawing;
3333
using System.Windows.Forms;
3434

35-
namespace Com.Couchcoding.GuiLibrary.Controls
35+
namespace Couchcoding.Logbert.Gui.Controls
3636
{
3737
/// <summary>
3838
/// Implements the <see cref="InfoPanel"/> <see cref="Control"/>.

src/GuiLibrary/Controls/LinkLabelEx.cs renamed to src/Couchcoding.Logbert.Gui/Controls/LinkLabelEx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
using System.Runtime.InteropServices;
3333
using System.Windows.Forms;
3434

35-
namespace Com.Couchcoding.GuiLibrary.Controls
35+
namespace Couchcoding.Logbert.Gui.Controls
3636
{
3737
/// <summary>
3838
/// Implements a <see cref="LinkLabel"/> with a correct hand <see cref="Cursor"/>.

src/GuiLibrary/Controls/ListBoxEx.cs renamed to src/Couchcoding.Logbert.Gui/Controls/ListBoxEx.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
#endregion
3030

31-
using Com.Couchcoding.GuiLibrary.Helper;
31+
using Couchcoding.Logbert.Gui.Helper;
3232
using System;
3333
using System.ComponentModel;
3434
using System.Drawing;
@@ -37,7 +37,7 @@
3737
using System.Windows.Forms;
3838
using System.Windows.Forms.VisualStyles;
3939

40-
namespace Com.Couchcoding.GuiLibrary.Controls
40+
namespace Couchcoding.Logbert.Gui.Controls
4141
{
4242
/// <summary>
4343
/// Implements a flicker free custom drawn <see cref="ListBox"/> <see cref="Control"/>.
@@ -56,7 +56,7 @@ public class ListBoxEx : ListBox
5656
/// <summary>
5757
/// Implements a <see cref="ListBox"/> item <see cref="Seperator"/>
5858
/// </summary>
59-
private class Seperator
59+
protected class Seperator
6060
{
6161
#region Publie Methods
6262

@@ -75,7 +75,7 @@ public override string ToString()
7575
/// <summary>
7676
/// Defines all known <see cref="ListView"/> states.
7777
/// </summary>
78-
private enum ListViewState
78+
protected enum ListViewState
7979
{
8080
Normal = 1,
8181
Hot = 2,
@@ -92,12 +92,12 @@ private enum ListViewState
9292
/// <summary>
9393
/// Holds the last hovered item index.
9494
/// </summary>
95-
private int mMouseIndex = -1;
95+
protected int mMouseIndex = -1;
9696

9797
/// <summary>
9898
/// The height of a <see cref="Seperator"/> item.
9999
/// </summary>
100-
private int mSeperatorHeight = 6;
100+
protected int mSeperatorHeight = 6;
101101

102102
/// <summary>
103103
/// The string format to use for the text drawing.

src/GuiLibrary/Controls/ListViewEx.cs renamed to src/Couchcoding.Logbert.Gui/Controls/ListViewEx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
using System.Runtime.InteropServices;
3333
using System.Windows.Forms;
3434

35-
namespace Com.Couchcoding.GuiLibrary.Controls
35+
namespace Couchcoding.Logbert.Gui.Controls
3636
{
3737
/// <summary>
3838
/// Implements a <see cref="ListView"/> <see cref="Control"/> that is flicker free.

src/GuiLibrary/Controls/MenuStripEx.cs renamed to src/Couchcoding.Logbert.Gui/Controls/MenuStripEx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
using System.Runtime.InteropServices;
3333
using System.Windows.Forms;
3434

35-
namespace Com.Couchcoding.GuiLibrary.Controls
35+
namespace Couchcoding.Logbert.Gui.Controls
3636
{
3737
/// <summary>
3838
/// Implements an enhanced <see cref="MenuStrip"/> control with enabled click through.

0 commit comments

Comments
 (0)