diff --git a/src/musredit/main.cpp b/src/musredit/main.cpp index 0de8fa8a..daa8938d 100644 --- a/src/musredit/main.cpp +++ b/src/musredit/main.cpp @@ -37,17 +37,25 @@ using namespace std; #include "PTextEdit.h" #include "PFitOutputHandler.h" +/** + *
musredit is a simple editor based interface to the musrfit programs. It is based on Qt 4.6
+ * of Nokia (http://qt.nokia.com
).
+ *
+ *
musredit is open source LGPL and GPL (for detail license informations see http://qt.nokia.com/products/licensing
).
+ *
+ *
The source code can be downloaded from This structure is used in conjunction to http://savannah.psi.ch/viewcvs/trunk/analysis/musrfit/src/musredit/?root=nemu%2Flem
.
+ */
int main( int argc, char ** argv )
{
Q_INIT_RESOURCE(musredit);
if (argc == 2) {
if (!strcmp(argv[1], "--help") || !strcmp(argv[1], "-h")) {
- cout << endl << "usage: musrgui [msr2data
. It stores the necessary
+ * parameters to handle msr2data
. For a detailed description of the meaning of these
+ * parameters see msr2data --help
and the online documentation.
+ */
typedef struct {
int firstRun;
int lastRun;
@@ -54,6 +60,10 @@ typedef struct {
bool fitOnly;
} PMsr2DataParam;
+//-------------------------------------------------------------------------------------------------
+/**
+ * This structure is used to handle find (and replace) within musredit
properly.
+ */
typedef struct {
QString findText;
QString replaceText;
diff --git a/src/musredit/musredit.qrc b/src/musredit/musredit.qrc
index 6229aa6f..37841ef7 100644
--- a/src/musredit/musredit.qrc
+++ b/src/musredit/musredit.qrc
@@ -23,7 +23,6 @@