WorkspaceWidgets.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. using SmartCoalApplication.Rule;
  2. namespace SmartCoalApplication
  3. {
  4. internal class WorkspaceWidgets
  5. {
  6. private AppWorkspace workspace;
  7. private DocumentStrip documentStrip;
  8. public DocumentStrip DocumentStrip
  9. {
  10. get
  11. {
  12. return this.documentStrip;
  13. }
  14. set
  15. {
  16. this.documentStrip = value;
  17. }
  18. }
  19. private ViewConfigStrip viewConfigStrip;
  20. public ViewConfigStrip ViewConfigStrip
  21. {
  22. get
  23. {
  24. return this.viewConfigStrip;
  25. }
  26. set
  27. {
  28. this.viewConfigStrip = value;
  29. }
  30. }
  31. private CommonActionsStrip commonActionsStrip;
  32. public CommonActionsStrip CommonActionsStrip
  33. {
  34. get
  35. {
  36. return this.commonActionsStrip;
  37. }
  38. set
  39. {
  40. this.commonActionsStrip = value;
  41. }
  42. }
  43. private IStatusBarProgress statusBarProgress;
  44. public IStatusBarProgress StatusBarProgress
  45. {
  46. get
  47. {
  48. return this.statusBarProgress;
  49. }
  50. set
  51. {
  52. this.statusBarProgress = value;
  53. }
  54. }
  55. private RuleListForm ruleListForm;
  56. public RuleListForm RuleListForm
  57. {
  58. get
  59. {
  60. return this.ruleListForm;
  61. }
  62. set
  63. {
  64. this.ruleListForm = value;
  65. }
  66. }
  67. public WorkspaceWidgets(AppWorkspace workspace)
  68. {
  69. this.workspace = workspace;
  70. }
  71. }
  72. }