-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecb-buffertab.el
114 lines (81 loc) · 3.89 KB
/
ecb-buffertab.el
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
;;; ecb-buffertab.el ---
;; $Id: ecb-buffertab.el,v 1.7 2002/12/29 10:15:12 burtonator Exp $
;; Copyright (C) 2000-2003 Free Software Foundation, Inc.
;; Copyright (C) 2000-2003 Kevin A. Burton (burton@openprivacy.org)
;; Author: Kevin A. Burton (burton@openprivacy.org)
;; Maintainer: Kevin A. Burton (burton@openprivacy.org)
;; Location: http://relativity.yi.org
;; Keywords:
;; Version: 1.0.0
;; This file is [not yet] part of GNU Emacs.
;; This program is free software; you can redistribute it and/or modify it under
;; the terms of the GNU General Public License as published by the Free Software
;; Foundation; either version 2 of the License, or any later version.
;;
;; This program is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
;; details.
;;
;; You should have received a copy of the GNU General Public License along with
;; this program; if not, write to the Free Software Foundation, Inc., 59 Temple
;; Place - Suite 330, Boston, MA 02111-1307, USA.
;;; Commentary:
;; NOTE: If you enjoy this software, please consider a donation to the EFF
;; (http://www.eff.org)
;;; Code:
;;; TODO: make sure we don't do this TOO many times.
;;
;; - we need to define a property with 'local-map set correctly.
;;
;; - write a function that generates a popup menu
;;
;; - the popup menu should allow the user to check a buffer view to set it as
;; the default when opening new files.
;;
;; - is this possible? I think it might but I would need to set it up
;; correctly.
(eval-when-compile
(require 'silentcomp))
(require 'ecb-compilation)
(with-no-warnings (defface ecb-buffertab-primary-face '((t (:bold t :foreground "black")))
"Face used to highlight the annotation lines to the left of the annotate buffer."))
(with-no-warnings (defface ecb-buffertab-secondary-face '((t (:bold nil :foreground "black")))
"Face used to highlight the annotation lines to the left of the annotate buffer."))
(with-no-warnings (defface ecb-buffertab-secondary-mouse-face '((t (:bold nil :foreground "black" :italic t)))
"Face used to highlight the annotation lines to the left of the annotate buffer."))
(with-no-warnings (defcustom ecb-buffertab-map (let ((map (make-sparse-keymap)))
(define-key map [header-line down-mouse-2] 'ecb-buffertab-popup-menu)
map)
"Key map used for buffertab navigation"))
(defun ecb-buffertab-popup-menu()
"Popup a menu for selecting an ECB buffer."
(interactive)
(let((menu (ecb-buffertab-make-menu "Compilation Buffers")))
(popup-menu menu)))
(defun ecb-buffertab-make-menu(name)
"Make a menu for use on the buffertab."
(let((menu (list 'keymap name)))
(dolist(entry (ecb-compilation-get-buffers))
(add-to-list 'menu (cons (list (car entry) (car entry))
'switch-to-buffer)) t)
(pp menu)
menu))
(defun ecb-buffertab-setup-header()
""
(interactive)
(with-no-warnings(let((ecb-prefix " ECB: " ))
(save-excursion
(set-buffer (get-buffer ecb-speedbar-buffer-name))
;;FIXME: figure out what modeline tab to use
(setq header-line-format (concat ecb-prefix "/ " (buffer-name)" "))
(add-text-properties 0 (length ecb-prefix)
(list 'face 'ecb-buffertab-primary-face)
header-line-format)
(add-text-properties (1+ (length ecb-prefix)) (length header-line-format)
(list 'face 'ecb-buffertab-secondary-face
'mouse-face 'ecb-buffertab-secondary-mouse-face
'local-map 'ecb-buffertab-map)
header-line-format)))))
(silentcomp-provide 'ecb-buffertab)
;;; ecb-buffertab.el ends here