Added a startup wizard.

This commit is contained in:
Jim Evins
2016-03-27 17:06:53 -04:00
parent 9a92c2a064
commit 5b21e8a23f
10 changed files with 326 additions and 28 deletions
+4 -2
View File
@@ -21,8 +21,8 @@
#include <QApplication>
#include "File.h"
#include "libglabels/Db.h"
#include "StartupWizard.h"
int main( int argc, char **argv )
@@ -43,7 +43,9 @@ int main( int argc, char **argv )
#endif
/////////////////////////////////
File::newLabel();
/// @TODO open file(s) from command line if present, otherwise start wizard
StartupWizard startupWizard;
startupWizard.show();
return app.exec();
}