0

我有一个工具栏控制器,它能够通过查询文档属性或应用程序框架来更新工具栏状态(启用/禁用、按下/未按下)。我有一些代表视图当前状态的按钮。

从应用程序设计的角度来看,我喜欢工具栏控制器能够在给定文档的任何时间更新按钮状态。我也更喜欢工具栏控制器和按钮处理程序没有内部状态。

我看到的选项 - 寻找其他建议:

  • 创建一种机制来访问文档的所有视图,访问者可以捕获视图的状态,然后用于启用/禁用/按下/按下按钮。
  • 在视图和工具栏处理程序之间创建一些连接,允许工具栏按钮直接询问视图。
  • 其他??
4

1 回答 1

0

您可以尝试为视图设置一个事件循环并使用函数调用调度更新状态

像这样:

class ViewEventArgs{
   public:
    int eventNumber;
};
class ViewEvent{
    public:
   virtual void onViewChange(ViewEventChangeArgs args) = 0;
};

class ViewController{
    public:
   virtual void doPressed() = 0;
   virtual void doChecked() = 0;
   //other interface methods
};

class ToolbarView : public ViewEvent{
   public:
   //Your EVENT-LOOP kernel will fire these events depending upon the state change in the view
   void onViewChange(ViewEventChangeArgs args)
   {
       switch(args.eventNumber){
    case PRESSED:
       getToolbarController()->doPressed();//the method dispatch
       break;
    case CHECKED:
       getToolbarController()->doChecked();
       }      
   }
    //other parts of the view
};

class ToolbarController: public ViewController{
    public:
       void doPressed() { /*pressed*/ }
       void doChecked() { /*checked*/ }
           //implementations
};
于 2012-10-01T20:45:04.553 回答