aboutsummaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorache <ache@ache.one>2017-07-17 00:24:08 +0200
committerache <ache@ache.one>2017-07-17 00:24:08 +0200
commit242be95344b62ee1f64c205d8046b9e96b5241e6 (patch)
tree9a94f939cedc005d018f5d15f639c9ac427d3b77 /main.h
parentNew files (diff)
New main
Diffstat (limited to 'main.h')
-rw-r--r--main.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/main.h b/main.h
index 9f272ec..7131a12 100644
--- a/main.h
+++ b/main.h
@@ -16,6 +16,7 @@
#include <string.h>
#include <ctype.h>
#include <ncurses.h>
+#include <getopt.h>
#include <taglib/tag_c.h>
@@ -74,6 +75,36 @@ void fail_exit(const char *msg);
_a > _b ? _a : _b; })
+#define VERSION_METAG "Alpha"
+#define HELP_STRING_METAG "Utilisation : metag [OPTION]...\n" \
+ "Editeur de tag mp3" \
+ "Options :\n" \
+ "\t\t--help -h Affiche l'aide simple\n" \
+ "\t\t--version -v Affiche la version\n" \
+ "\t\t--dir -d Change le répertoire de travail\n"\
+ "\n" \
+ "Basic control :\n" \
+ " 'e%' - edit % where % can be :\n" \
+ " t for title | a for artist | b for album | g for genre" \
+ " y for year | y for comment | n for track number" \
+ "" \
+ " 'q' to exit" \
+ "" \
+ " 's' select by regex" \
+ "" \
+ " 'x' extract information from the title by regex" \
+ "" \
+ " ' ' toggle selection of the current item" \
+ "" \
+ " 'k' selection up" \
+ " 'j' selection down" \
+ ""
+
+
+
+
+
+
#endif