Files
haiku-beta6/src/apps/bin/draggers.cpp
T
François Revol 1b19c97c63 new tool: draggers: shows/sets draggers state (shown/hidden) ; typo in sysinfo
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8589 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-08-16 09:44:39 +00:00

37 lines
812 B
C++

/*
* draggers - show/hide draggers from CLI
* (c) 2004, François Revol - [email protected]
*/
#include <stdio.h>
#include <string.h>
#include <Application.h>
#include <Dragger.h>
int main(int argc, char **argv)
{
int i;
BApplication app("application/x-vnd.OBOS-draggers");
if (argc < 2) {
printf("%s\n", BDragger::AreDraggersDrawn()?"shown":"hidden");
return 0;
}
for (i = 1; i < argc; i++) {
if (!strncmp(argv[i], "-h", 2)) {
printf("draggers [show|hide]\n");
printf("Shows/sets draggers state\n");
return 0;
}
if (!strcmp(argv[i], "1")
|| !strncmp(argv[i], "en", 2)
|| !strncmp(argv[i], "sh", 2))
BDragger::ShowAllDraggers();
else if (!strcmp(argv[i], "0")
|| !strncmp(argv[i], "di", 2)
|| !strncmp(argv[i], "hi", 2))
BDragger::HideAllDraggers();
}
return 0;
}