-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1460e6
commit b7eee0e
Showing
1 changed file
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,17 @@ | ||
"# wxSimpleTodo" | ||
# Simple To Do App Made with wxWidgets | ||
## Intro | ||
My First attempt at wxWidgets. Really seems like a nice library to work with! | ||
|
||
The App is simple. You can type in the thing you want to do and click add to add it to the list and then use Edit, Remove and Remove All buttons to those tasks. The app looks for a notes.txt file in the user's documents folder and creates if it's not available. All to-do items will be saved in this file when you exit the app. And all items will be retrieved from it at launch. | ||
|
||
![Simple To-Do in Action](https://i.imgur.com/6UNNQ5m.png) | ||
|
||
|
||
## Compiling | ||
This project was made with Visual Studio 2022. | ||
To compile this project you need the [wxWidgets](https://www.wxwidgets.org/) library. | ||
All the code is inside App.cpp. Although this is not good practice I tend to put everything in one file if the app is too small. (this one is just 150 lines of code) | ||
This Project is configured with static linking. | ||
My Visual Studio installation is messed up and even VS doesn't know where the C++ library is. So I had to change the include directories manually. So please check them in project properties if you get any error when compiling. | ||
|
||
If you have wxWidgets configured already, just copy everything from App.cpp and compile your project. |