Last change
on this file since 844 was
794,
checked in by maronga, 13 years ago
|
last commit documented
|
-
Property svn:keywords set to
Id
|
File size:
875 bytes
|
Rev | Line | |
---|
[793] | 1 | //----------------------------------------------------------------------------// |
---|
| 2 | // Current revisions: |
---|
| 3 | // ----------------- |
---|
| 4 | // |
---|
| 5 | // Former revisions: |
---|
| 6 | // ----------------- |
---|
| 7 | // $Id: main.cpp 794 2011-12-12 15:19:22Z gryschka $ |
---|
| 8 | // |
---|
[794] | 9 | // 793 2011-12-12 15:15:24Z maronga |
---|
| 10 | // Initial revision |
---|
| 11 | // |
---|
[793] | 12 | // Description: |
---|
| 13 | // ------------ |
---|
| 14 | // Graphical user-interface (GUI) for the mrun script. All routines are placed |
---|
| 15 | // in mainwindow.cpp. There are three windows: mainwindow; and two childs: |
---|
| 16 | // about window and a help window (files ending with .ui). The initial code was |
---|
| 17 | // written using Qt Creator 2.3.0. |
---|
| 18 | //----------------------------------------------------------------------------// |
---|
| 19 | |
---|
| 20 | #include <QtGui/QApplication> |
---|
| 21 | #include "mainwindow.h" |
---|
| 22 | #include <QProcess> |
---|
| 23 | |
---|
| 24 | int main(int argc, char *argv[]) |
---|
| 25 | { |
---|
| 26 | |
---|
| 27 | QApplication app(argc, argv); |
---|
| 28 | // app.setWindowIcon(QIcon("./mrungui.png")); |
---|
| 29 | |
---|
| 30 | MainWindow w; |
---|
| 31 | w.show(); |
---|
| 32 | |
---|
| 33 | return app.exec(); |
---|
| 34 | } |
---|
| 35 | |
---|
| 36 | |
---|
Note: See
TracBrowser
for help on using the repository browser.