Last change
on this file since 426 was 324, checked in by Sanahuja Guillaume, 5 years ago |
removing opencv dependency
|
File size:
819 bytes
|
Rev | Line | |
---|
[324] | 1 | #include <QApplication>
|
---|
| 2 | #include <QCleanlooksStyle>
|
---|
| 3 | #include <QLocale>
|
---|
| 4 |
|
---|
| 5 | #include <stdio.h>
|
---|
| 6 | #include "unexported/compile_info.h"
|
---|
| 7 | #include "file_ui.h"
|
---|
| 8 | #include <QFileDialog>
|
---|
| 9 |
|
---|
| 10 | int main(int argc, char *argv[]) {
|
---|
| 11 | compile_info("Dbt2Csv");
|
---|
| 12 |
|
---|
| 13 | QLocale::setDefault(QLocale::C);
|
---|
| 14 | QApplication app(argc, argv);
|
---|
| 15 | app.setStyle(new QCleanlooksStyle);
|
---|
| 16 |
|
---|
| 17 | file_ui *files = new file_ui();
|
---|
| 18 | files->connect(files, SIGNAL(finished()), &app, SLOT(quit()));
|
---|
| 19 |
|
---|
| 20 | QString path = QFileDialog::getExistingDirectory(new QWidget(),
|
---|
| 21 | "Select a directory", 0, 0);
|
---|
| 22 | QDir directory(path);
|
---|
| 23 | QStringList list_files = directory.entryList();
|
---|
| 24 |
|
---|
| 25 | for (int i = 0; i < list_files.size(); i++) {
|
---|
| 26 | files->addFile(directory.path() + "/" + list_files.at(i));
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 | files->endOfFiles();
|
---|
| 30 |
|
---|
| 31 | app.exec();
|
---|
| 32 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.