Notes v1 is a simple desktop application developed using PyQt5. It provides a graphical user interface for note-taking or similar purposes. The project is currently in an early development stage and focuses on basic window setup and menu interaction.
- Loads a user interface designed in Qt Designer (
Main_Window.ui). - Sets a window title "Notes v1".
- Implements a basic "Exit" menu action to close the application gracefully.
- Python 3.x
- PyQt5
You can install PyQt5 via pip if not already installed:
pip install PyQt5- Make sure the
Main_Window.uifile is located in the same directory as the script. - Run the Python script:
python <script_name>.py- The main window will appear. Use the "Exit" menu item to close the application.
- The
MyWindowclass inherits fromQMainWindow. - The UI is loaded from a
.uifile created using Qt Designer withuic.loadUi. - The window title is set programmatically.
- The
actionExitmenu item is connected to theexit_applicationmethod to terminate the app. - The application event loop is started with
app.exec_().
- Implement save/load features.
- Enhance UI with more widgets and actions.
- Add ability to add Emojis, Images and AI generated images.
Will be released under MIT License once development completes.
For questions or feedback, contact Mukund or open an issue in the repository.