Created
February 19, 2013 05:26
-
-
Save kiwanami/4983327 to your computer and use it in GitHub Desktop.
direx-ctable.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; direx-ctable.el --- direx table extension | |
;; Copyright (C) 2013 SAKURAI Masashi | |
;; Author: SAKURAI Masashi <m.sakurai at kiwanami.net> | |
;; Keywords: dired, ctable | |
;; 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 3 of the License, or | |
;; (at your option) 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, see <http://www.gnu.org/licenses/>. | |
;;; Commentary: | |
;; collaboration between direx and ctable. | |
;; ref: direx-el | |
;; https://github.com/m2ym/direx-el | |
;;; Code: | |
(require 'ctable) | |
(require 'direx) | |
(defun dxt:collect-entries (direx-buf) | |
"[internal] " | |
(with-current-buffer direx-buf | |
(goto-char (point-min)) | |
(loop with data-list = nil | |
with goaheadp = t | |
for item = (direx:item-at-point) | |
while goaheadp do | |
(when (and item (direx:item-visible-p item)) | |
(push item data-list)) | |
(setq goaheadp (zerop (forward-line))) | |
finally return (nreverse data-list)))) | |
(defun dxt:item-render (item) | |
"[internal] " | |
(concat | |
(direx:item-render-indent-part item) | |
(direx:item-render-icon-part item) | |
(direx:item-render-name-part item))) | |
(defun dxt:make-model-data (buf) | |
"[internal] " | |
(loop for i in (dxt:collect-entries buf) | |
for itree = (direx:item-tree i) | |
for attr = (file-attributes (direx:file-full-name itree)) | |
collect | |
(list | |
(dxt:item-render i) | |
(if (direx:item-leaf-p i) | |
(nth 7 attr) "") | |
(format-time-string "%Y/%m/%d %H:%M:%S" (nth 5 attr)) | |
i))) | |
(defun dxt:make-model (buf) | |
"[internal] " | |
(make-ctbl:model | |
:column-model | |
(list | |
(make-ctbl:cmodel | |
:title "File" :min-width 10 :align 'left) | |
(make-ctbl:cmodel | |
:title "Size" :min-width 6 :align 'right) | |
(make-ctbl:cmodel | |
:title "Last Modified" :align 'left)) | |
:data | |
(dxt:make-model-data buf))) | |
(defun dxt:node-action (direx-buf cp row) | |
"[internal] action handler" | |
(let ((item (nth 3 row))) | |
(cond | |
((direx:item-leaf-p item) | |
(direx:find-item item)) | |
(t | |
(with-current-buffer direx-buf | |
(direx:item-toggle item)) | |
(setf (ctbl:component-model cp) | |
(dxt:make-model direx-buf)) | |
(ctbl:cp-update cp))))) | |
(defun dxt:open (dirname) | |
(interactive "DDirex (directory): ") | |
(lexical-let* | |
((dxbuf (direx:ensure-buffer-for-root | |
(direx:make-directory dirname))) | |
(cp | |
(ctbl:create-table-component-buffer | |
:width nil :height nil | |
:model | |
(dxt:make-model dxbuf)))) | |
(ctbl:cp-add-click-hook | |
cp (lambda () | |
(dxt:node-action | |
dxbuf cp (ctbl:cp-get-selected-data-row cp)))) | |
(switch-to-buffer (ctbl:cp-get-buffer cp)))) | |
(defun dxt:open-here () | |
(interactive) | |
(dxt:open default-directory)) | |
;; (progn (eval-current-buffer) (dxt:open-here)) | |
(provide 'direx-ctable) | |
;;; direx-ctable.el ends here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment