Some changes
This commit is contained in:
27
README.md
Normal file
27
README.md
Normal file
@@ -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 (
|
||||||
@@ -26,17 +26,14 @@ MainFrame::MainFrame(wxWindow* parent, int id, const wxString& title, const wxPo
|
|||||||
|
|
||||||
set_properties();
|
set_properties();
|
||||||
do_layout();
|
do_layout();
|
||||||
// end wxGlade
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void MainFrame::set_properties()
|
void MainFrame::set_properties()
|
||||||
{
|
{
|
||||||
// begin wxGlade: MainFrame::set_properties
|
|
||||||
SetTitle(_("Генератор кроссвордов"));
|
SetTitle(_("Генератор кроссвордов"));
|
||||||
SetSize(wxSize(700, 500));
|
SetSize(wxSize(700, 500));
|
||||||
SetMinSize(wxSize(600,340));
|
SetMinSize(wxSize(600,340));
|
||||||
// end wxGlade
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user