X-Git-Url: https://harishankar.org/repos/?p=wordblah.git;a=blobdiff_plain;f=constantstrings.h;h=050c8907fdb7d60e4ab2e74fa486cca77d75412b;hp=eb4270f26d0ac277bc424f5d81116ec2d28f5a59;hb=57adeb73762dac7590dcac1b2d1e462d50e8565d;hpb=a9394973f79c66abefe200c4a0033cc9e3361e26 diff --git a/constantstrings.h b/constantstrings.h index eb4270f..050c890 100644 --- a/constantstrings.h +++ b/constantstrings.h @@ -14,6 +14,7 @@ #define PUZZLE_MENU_TITLE "Edit Puzzle" #define MAIN_MENU_TITLE "Main Menu" #define INPUT_GRID_SIZE "Number of rows/columns: " +#define INPUT_EXPORT_ANSWERS "Export as solution (y/N): " #define INPUT_CHOICE "Your Choice: " #define EXCEED_MAX_GRID_SIZE "Exceeds max puzzle size" #define ERROR_WRITING_FILE "Error writing file" @@ -24,6 +25,11 @@ #define INPUT_CONFIRM_EXIT "Are you sure you wish to exit? \ Unsaved changes will be lost [y/N]" +#define USAGE_LINE_1 "Usage: %s [ [new ]]\n" +#define USAGE_LINE_2 " - puzzle file name\n" +#define USAGE_LINE_3 "new - create new puzzle with grid \ +columns (warning: existing file name may be overwritten)\n" + char *MAIN_MENU[] = {"1. New puzzle", "2. Open existing puzzle", @@ -39,6 +45,7 @@ char *PUZZLE_EDIT_MENU[] = "7. Set Clue - Across Word", "8. Set Clue - Down Word", "9. Save puzzle", - "10.Return to main menu" }; + "10.Export puzzle as PNG image", + "11.Return to main menu" }; #endif