如何通过按[javascript] [Gjs]从St.ScrollView中删除演员并添加其他演员

时间:2018-11-29 12:01:50

标签: javascript gnome-shell-extensions gjs

我有以下代码:在St.ScrollView中,我添加了St.BoxLayout。将St.Scrollview添加到menu.box.Now中,现在我想创建一个St.Button,以从St.ScrollView中删除St.BoxLayout并在其中添加另一个St.BoxLayout。我试图使函数“单击”与按钮连接,然后执行以下操作:

    this.buttonnotifications.connect('clicked', this.displayNotifications);

    displayNotifications: function() {

      this.scrollbox.remove(this.vbox);
      this.menu.box.remove(this.scrollbox);
      this.scrollbox.add_actor(this.vbox1);
      this.menu.box.add(this.scrollbox);

},

但是它不起作用。下面是代码片段:

      this.buttonbox = new St.BoxLayout();
      this.buttontoday = new St.Button({ label: 'Today', width: 140, x_align: 1, style_class: 'selectbutton'});
      this.buttonnotifications = new St.Button({ label: 'Notifications', width: 140,  x_align: 1, style_class: 'selectbutton'});

      this.buttonbox.add_actor(this.buttontoday);
      this.buttonbox.add_actor(this.buttonnotifications);
      this.menu.box.add(this.buttonbox);

      this.scrollbox = new St.ScrollView({
                          height: 700,
                          width: 330,
                          hscrollbar_policy: 2,
                          vscrollbar_policy: 2,
                          enable_mouse_scrolling: true
                        });

      this.vbox = new St.BoxLayout({
                          //height: 1400,
                          //width: 330,
                          vertical: true,
                        //y_expand: true,
                          style_class: "datemenu-displays-box",
                          style: "border:10px;"
                        });

     this.vbox1 = new St.BoxLayout({
                          //height: 1400,
                          //width: 330,
                          vertical: true,
                        //y_expand: true,
                          style_class: "datemenu-displays-box",
                          style: "border:10px;"
                        });

      this.vbox.add_actor(this._date.actor);
      this.vbox.add_actor(this._calendar.actor);
      this.vbox1.add_actor(this._eventsSection.actor, {
                                               //x_fill: true
                                                 });
      this.vbox.add_actor(this._mediaSection.actor);
      this.vbox.add_actor(this._clocksSection.actor);
      this.vbox.add_actor(this._weatherSection.actor, {
                                                  //x_fill: true
                                                 });
      this.vbox1.add_actor(this._messageList.actor);

      this.scrollbox.add_actor(this.vbox);
      this.menu.box.add(this.scrollbox);     

换句话说,我想删除vbox并按按钮通知添加vbox1。   任何帮助将不胜感激。   提前致谢。

1 个答案:

答案 0 :(得分:1)

我设法通过添加以下代码解决了这个问题:

this.buttonnotifications.connect('clicked', this.displayNotifications.bind(this));

与以前的代码的区别是

 .bind(this)

方法。