summaryrefslogtreecommitdiffstats
path: root/comm/calendar/base/content/preferences/categories.inc.xhtml
blob: d6f37be9df39c0f80526d016d11bb59db507c420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, you can obtain one at http://mozilla.org/MPL/2.0/.
  <html:div data-category="paneCalendar">
    <html:fieldset data-category="paneCalendar">
      <separator class="thin"/>
      <hbox>
        <richlistbox id="categorieslist"
                     flex="1"
                     seltype="multiple"
                     onselect="gCategoriesPane.updateButtons()"
                     ondblclick="gCategoriesPane.listOnDblClick(event)"/>
        <vbox id="categoriesButtons">
          <hbox>
            <button is="highlightable-button" id="newCButton"
                    data-l10n-id="new-tag-button"
                    oncommand="gCategoriesPane.addCategory()"
                    search-l10n-ids="category-name-label,category-color-label.label"/>
          </hbox>
          <hbox>
            <button is="highlightable-button" id="editCButton"
                    data-l10n-id="edit-tag-button"
                    oncommand="gCategoriesPane.editCategory()"
                    search-l10n-ids="category-name-label,category-color-label.label"/>
          </hbox>
          <button is="highlightable-button" id="deleteCButton"
                  data-l10n-id="delete-tag-button"
                  oncommand="gCategoriesPane.deleteCategory()"/>
        </vbox>
      </hbox>
    </html:fieldset>
  </html:div>