我想知道是否有任何可用于 (n) 诅咒的树库。
我正在尝试编写一个显示文件夹树的组件,并且很好奇是否有预建的 curses 组件可以做到这一点。
我检查了“核心”诅咒以及 CDK 之类的库 - 我似乎找不到任何东西。
如果不存在,我不反对建立自己的 - 但我似乎找不到任何体面的教程来做这件事,所以在这方面的任何帮助也将不胜感激。
谢谢,艾斯
Urwid有一个树小部件 FWIW。
更新:2020-10-01 - 我在 2010 年写了我的答案,当时我为 Urwid 写了一个树小部件,因为我找不到任何东西。 Urwid仍然有树小部件,但这些天,我会查看Python 的 prompt-toolkit或替代方案之一。
“我正在尝试编写一个显示文件夹树的组件”
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;
查看午夜指挥官源代码 ( http://www.midnight-commander.org/ ) 它有一个树形商店小部件。