diff options
author | Chris Robinson <[email protected]> | 2013-06-23 22:47:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-06-23 22:47:51 -0700 |
commit | 144059b062bd357cdec27416010872f37ef69cba (patch) | |
tree | d88c0c5ef43975e5c9b61712dba5dacd25ebcab4 /utils/alsoft-config/main.cpp | |
parent | 4017e4a96a41ce2e781bcd99695c7f9dfc503c5f (diff) |
Add a configuration UI application
Not complete, but it's a decent start. Some problems:
* Only some otions are handled (backend-specific options in particular aren't
handled).
* Does not warn when quitting with unsaved changes.
* Some options are missing tooltips.
Diffstat (limited to 'utils/alsoft-config/main.cpp')
-rw-r--r-- | utils/alsoft-config/main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/utils/alsoft-config/main.cpp b/utils/alsoft-config/main.cpp new file mode 100644 index 00000000..9e2d83c8 --- /dev/null +++ b/utils/alsoft-config/main.cpp @@ -0,0 +1,11 @@ +#include "mainwindow.h" +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} |