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