-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatic discovery of parameters in query (#118)
* Replaced tabs by spaces in product.wxs * Changed query parameters form to buildin DockContent * Fixed show query parameters * Extracted custom DockPanel configuration from main form * Extracted tabs factory from Main form * Added automatic update of parameters list when query changes * Added restore of parameters recently used * Added option to disable automatic query parameters discovery * Added detection of renamed parameter * Add restore of parameters when switching active tabs.
- Loading branch information
Showing
19 changed files
with
990 additions
and
723 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,12 @@ | ||
using System; | ||
using SwqlStudio.Metadata; | ||
using SolarWinds.InformationService.Contract2; | ||
using SwqlStudio.Subscriptions; | ||
|
||
namespace SwqlStudio | ||
{ | ||
public interface IApplicationService | ||
{ | ||
SubscriptionManager SubscriptionManager{ get; } | ||
PropertyBag QueryParameters { get; set; } | ||
|
||
void AddTextToEditor(string text, ConnectionInfo info); | ||
|
||
void OpenActivityMonitor(string title, ConnectionInfo connectionInfo); | ||
|
||
void OpenInvokeTab(string title, ConnectionInfo connectionInfo, Verb verb); | ||
|
||
void OpenCrudTab(CrudOperation operation, ConnectionInfo connectionInfo, Entity entity); | ||
SubscriptionManager SubscriptionManager { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using SwqlStudio.Metadata; | ||
|
||
namespace SwqlStudio | ||
{ | ||
internal interface ITabsFactory | ||
{ | ||
void AddTextToEditor(string text, ConnectionInfo info); | ||
|
||
void OpenActivityMonitor(string title, ConnectionInfo connectionInfo); | ||
|
||
void OpenInvokeTab(string title, ConnectionInfo connectionInfo, Verb verb); | ||
|
||
void OpenCrudTab(CrudOperation operation, ConnectionInfo connectionInfo, Entity entity); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.