From 0c814072fc2c495e5e46fc2333dd18a4af30377f Mon Sep 17 00:00:00 2001 From: Aleksey Lobanov Date: Sat, 30 May 2015 19:00:13 +0300 Subject: [PATCH] Some changes --- README.md | 27 +++++++++++++++++++++++++++ wxCrossGen/main.cpp | 3 --- 2 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..812bde5 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# CrossGen # + +Very simple tool for generating crosswords. *Almost* course work. + +### Features ### + +1. Supports many of languages if dictionary contains lines like +``` + WORD - DESCRIPTION +``` +2. Supports any grid that have format like +``` + ++++ + +--+ + +--+ + ++++ +``` + +### Dependecies ### +Only wxWidgets. + +### To-Do list ### + +* [ ] Progress indication +* [ ] Customiztion +* [ ] Refactoring +* [ ] Optimizations of generating ( \ No newline at end of file diff --git a/wxCrossGen/main.cpp b/wxCrossGen/main.cpp index 5964d8c..d1fea7b 100644 --- a/wxCrossGen/main.cpp +++ b/wxCrossGen/main.cpp @@ -26,17 +26,14 @@ MainFrame::MainFrame(wxWindow* parent, int id, const wxString& title, const wxPo set_properties(); do_layout(); - // end wxGlade } void MainFrame::set_properties() { - // begin wxGlade: MainFrame::set_properties SetTitle(_("Генератор кроссвордов")); SetSize(wxSize(700, 500)); SetMinSize(wxSize(600,340)); - // end wxGlade }