A Qt Widgets-based program for converting temperatures. Provides a user-friendly way to perform temperature conversions between the three most common scales:
- Celsius
- Fahrenheit
- Kelvin
This is my first project using a framework for some programming language and mainly implementing a GUI. It is a project entirely focused on the study of QT and C++ itself.
This project was developed using the following technologies:
Before running the project, make sure you have the following installed:
- Qt Framework (version 5.15 or newer)
- A compatible C++ compiler (e.g., g++, clang++)
Follow these steps to set up and run the application:
1. Clone the repository:
git clone https://github.com/your-username/temperature-converter.git
2. Open the project in Qt Creator:
- Navigate to File > Open File or Project, select the temperatureconverter.pro file, and click Open.
3. Build and run the application:
- Press Ctrl+R or click the Run button in Qt Creator to execute the project.
Contributions are welcome! To contribute:
- Fork the repository.
- Create a branch for your feature (git checkout -b feature/feature-name).
- Commit your changes
git commit -m 'Add new feature'
- Push to the branch
git push origin main
- Open a pull request.