9

我想知道是否有任何可用于 (n) 诅咒的树库。

我正在尝试编写一个显示文件夹树的组件,并且很好奇是否有预建的 curses 组件可以做到这一点。

我检查了“核心”诅咒以及 CDK 之类的库 - 我似乎找不到任何东西。

如果不存在,我不反对建立自己的 - 但我似乎找不到任何体面的教程来做这件事,所以在这方面的任何帮助也将不胜感激。

谢谢,艾斯

4

4 回答 4

2

Urwid有一个树小部件 FWIW。

更新:2020-10-01 - 我在 2010 年写了我的答案,当时我为 Urwid 写了一个树小部件,因为我找不到任何东西。 Urwid仍然有树小部件,但这些天,我会查看Python 的 prompt-toolkit替代方案之一

于 2010-04-11T18:45:33.717 回答
2

dialog程序(具有文档库界面)有一个“树”小部件。该程序适用于 (n)curses,与CDK不同,它适用于 UTF-8。

对话框 - 树视图

它还有一个文件(/目录)选择小部件。

对话框 - 文件选择

还有wcd(虽然类似,mc的可重用性是不确定的)。但是,这是 OP 可能想要的一个很好的例子:

从 wcd 页面转换的屏幕截图

关于urwid,这是值得商榷的。在引擎盖下,您实际上可能没有诅咒。对于它的价值,树视图脚本的屏幕截图:

urwid 树视图

在我的 Debian/测试系统上,该脚本不使用 ncurses。它是硬编码的(即使用raw_display)。

于 2017-02-05T11:51:26.290 回答
2

“我正在尝试编写一个显示文件夹树的组件”

CDK 有CDKFSELECT小部件。

它显示可能对您有用的目录和文件列表,或者 CDKFSELECT 的源代码可能用于您自己的自定义编写解决方案。

CDKFSELECT *fSelect = 0;

/*
Height of zero means to extent of xterm
Width of zero means to extent of xterm
*/
int HEIGHT = 0;
int WIDTH = 0;

char *title = new char[strlen("Pick a file to open") + 1];
strcpy(title, "Pick a file to open");

char *prompt = new char[strlen("==> ") + 1];
strcpy(prompt, "==> ");

char *directoryAttribute = new char[strlen("</B>") + 1]; /* bold */
strcpy(directoryAttribute, "</B>");

char *fileAttribute = new char[strlen("</N>") + 1]; /* normal */
strcpy(fileAttribute, "</N>");

char *linkAttribute = new char[strlen("</D>") + 1]; /* dim */
strcpy(linkAttribute, "</D>");

char *sockAttribute = new char[strlen("</D>") + 1]; /* dim */
strcpy(sockAttribute, "</D>");

boolean displayBox = TRUE;
boolean displayShadow = FALSE;

fSelect = newCDKFselect(pCdkScreen,
          TOP, LEFT, HEIGHT, WIDTH,
          title, prompt,
          A_NORMAL, '_', A_REVERSE,
          directoryAttribute, fileAttribute, linkAttribute, sockAttribute,
          displayBox, displayShadow);

char *filename = activateCDKFselect(fSelect, 0);
/*
2014-06-13, using DDD, filename being correctly populated
by CDK
*/

/* do other stuff... */

/*
 free the memory of any dynamically created objects
 that were created with new or malloc, or such
*/
destroyCDKFselect(fSelect);

delete [] title;
delete [] prompt;
delete [] directoryAttribute;
delete [] fileAttribute;
delete [] linkAttribute;
delete [] sockAttribute;
于 2017-02-05T04:12:51.937 回答
1

查看午夜指挥官源代码 ( http://www.midnight-commander.org/ ) 它有一个树形商店小部件。

于 2010-04-22T12:46:46.070 回答