123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- using SmartCoalApplication.Rule;
- namespace SmartCoalApplication
- {
- internal class WorkspaceWidgets
- {
- private AppWorkspace workspace;
- private DocumentStrip documentStrip;
- public DocumentStrip DocumentStrip
- {
- get
- {
- return this.documentStrip;
- }
- set
- {
- this.documentStrip = value;
- }
- }
- private ViewConfigStrip viewConfigStrip;
- public ViewConfigStrip ViewConfigStrip
- {
- get
- {
- return this.viewConfigStrip;
- }
- set
- {
- this.viewConfigStrip = value;
- }
- }
- private CommonActionsStrip commonActionsStrip;
- public CommonActionsStrip CommonActionsStrip
- {
- get
- {
- return this.commonActionsStrip;
- }
- set
- {
- this.commonActionsStrip = value;
- }
- }
- private IStatusBarProgress statusBarProgress;
- public IStatusBarProgress StatusBarProgress
- {
- get
- {
- return this.statusBarProgress;
- }
- set
- {
- this.statusBarProgress = value;
- }
- }
- private RuleListForm ruleListForm;
- public RuleListForm RuleListForm
- {
- get
- {
- return this.ruleListForm;
- }
- set
- {
- this.ruleListForm = value;
- }
- }
- public WorkspaceWidgets(AppWorkspace workspace)
- {
- this.workspace = workspace;
- }
- }
- }
|