Skip to content

Commit a790ed9

Browse files
committed
Update README.md
Small improvements.
1 parent c8f4aa3 commit a790ed9

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
Library is based on Qt 5 and C++17. It uses Zlib and QuaZip projects.
1818

1919
# Building
20-
Clone and use Cmake directly or via QtCreator. Cmake **should**:
20+
Clone and use CMake directly or via Qt Creator. CMake **should**:
2121
+ configure everything automatically,
2222
+ compile library and create binaries.
2323

24-
**TIP**: remember to set properly `CMAKE_PREFIX_PATH` env variable. It should have Qt installation path to let Cmake command `find_package` command.
24+
**TIP**: remember to set properly `CMAKE_PREFIX_PATH` env variable. It should have Qt installation path to let CMake command `find_package` command.
2525

26-
As a result of compilation dynamic lib should be created along with headers dir.
26+
As a result of compilation, dynamic lib should be created along with headers dir.
2727

2828
Check my other project called Volbx to familiarize yourself how to use it via CMake.
2929

@@ -35,13 +35,13 @@ Check my other project called Volbx to familiarize yourself how to use it via CM
3535
| CMake | 3.25.0 | 3.25.0 |
3636
| Git | 2.38.1 | 2.34.1 |
3737
| Qt | 5.15.2 | 5.15.2 |
38-
| QtCreator | 9.0.0 |9.0.0 |
38+
| Qt Creator | 9.0.0 |9.0.0 |
3939
| Zlib | 1.2.13 | 1.2.13 |
4040
| QuaZip | 0.9 | 0.9 |
4141

4242
# Usage
43-
Easiest way is to check examples subproject where you can find how to create and interact with each class included in this library.
44-
Alternatively tests subproject can be checked. Usage also can be found in my other project called Volbx where classes from this library are used for exporting and importing data.
43+
The easiest way is to check examples subproject, where you can find how to create and interact with each class included in this library.
44+
Alternatively, tests subproject can be checked. Usage also can be found in my other project called Volbx where classes from this library are used for exporting and importing data.
4545

4646
# Classes
4747
## Classes used for importing data
@@ -97,9 +97,9 @@ exportXlsx.exportView(tableWidget, exportedZip);
9797
### ExportDsv
9898
Class for exporting data to DSV (Delimiter Separated Values) files. Delimiter is set in constructor and can be any char (comma, tab, semicolon, ...). CSV or TSV files can be created using this class.
9999
Three additional method can be used to customize output:
100-
+ `setDateFormat(Qt::DateFormat)` - for setting output date format to Qt defined one,
101-
+ `setDateFormat(QString)` - for setting output date format to one given as string (for example "dd/MM/yy"),
102-
+ `setNumbersLocale(QLocale)`- for setting locale used for output numbers in case different than default one is needed.
100+
+ `setDateFormat(Qt::DateFormat)` - for setting output date format to a given one,
101+
+ `setDateFormat(QString)` - for setting output date format to one given as string (for example, "dd/MM/yy"),
102+
+ `setNumbersLocale(QLocale)`- for setting locale used for output numbers in case different from default one is needed.
103103
104104
Basic usage:
105105
```cpp
@@ -119,4 +119,4 @@ QTableWidget tableWidget;
119119
ExportXlsx exportXlsx;
120120
exportXlsx.exportView(tableWidget, outFile);
121121
```
122-
Xlsx files are created using template file `template.xlsx` included into project via resource collection file `resources.qrc`.
122+
XLSX files are created using template file `template.xlsx` included into project via resource collection file `resources.qrc`.

0 commit comments

Comments
 (0)