如何以编程方式将列添加到Thunderbird中的所有邮件列表视图

时间:2011-04-21 23:13:07

标签: javascript xul thunderbird thunderbird-addon

我创建了一个扩展,在主消息列表中添加了一个新列,基本上遵循New Column Howto。现在我想将列直接放在主题列之前,这似乎可以通过不保持序数字段并添加insertbefore属性来实现。但是,我仍然需要从列选择器中手动选择列以使其可见,我还需要为每个文件夹执行此操作。有没有办法将其自动插入主题列之前的所有消息视图?我的目标是在安装扩展程序时,该列会自动显示在所有可能的消息视图中。

我的XUL叠加层目前看起来像这样:

<overlay id="colovl"
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script type="application/x-javascript" src="chrome://myext/content/column_overlay.js"/>
  <tree id="threadTree">
    <treecols id="threadCols">
    <splitter class="tree-splitter" />
    <treecol id="MyCol" insertbefore="subjectCol" fixed="true" 
           flex="2" hidden="false"
           class="treecol-image"
           label="MyCol" tooltiptext="Click to sort by MyCol" />
    </treecols>
  </tree>
</overlay>

1 个答案:

答案 0 :(得分:1)

Thunderbird 3.1有一个用户公开的操作,可将当前的文件夹列布局应用于其他文件夹及其子文件夹。作为用户,您可以通过文件夹配置菜单的“将列应用于...”操作来使用此操作。

这意味着你想做的事情是可行的。

此操作的实现包含在threadPaneColumnPicker.xml中。浏览源代码我会说有趣的部分从第167行开始。我复制了部分代码:

let destFolder = event.originalTarget._folder;
let parent = event.originalTarget.parentNode;
while (parent != noChildrenPopup && parent != yesChildrenPopup) {
   parent = parent.parentNode;
}

// Get the current folder's column state.
let propName = gFolderDisplay.PERSISTED_COLUMN_PROPERTY_NAME;
let dbFolderInfo =
  gFolderDisplay.displayedFolder.msgDatabase.dBFolderInfo;
let columnStateString = dbFolderInfo.getCharProperty(propName);
// Now propagate appropriately...
if (useChildren) {
  // Generate an observer notification when we have finished configuring
  // all folders.  This is currently done for the benefit of our mozmill
  // tests.
  function observerCallback() {
    let obsService =
       Components.classes["@mozilla.org/observer-service;1"]
                 .getService(Components.interfaces.nsIObserverService);
    obsService.notifyObservers(gFolderDisplay.displayedFolder,
                               "msg-folder-columns-propagated", "");
  }
  MailUtils.setStringPropertyOnFolderAndDescendents(propName,
                                                    columnStateString,
                                                    destFolder,
                                                    observerCallback);
}

我不确定您是否可以按原样重复使用代码,但它应该为您提供一个起点的灵感。