Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 800 → Rev 801

/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Classes/cSettings.cpp
0,0 → 1,110
/***************************************************************************
* Copyright (C) 2008 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <QSettings>
#include <QDir>
 
#include "cSettings.h"
 
cSettings::cSettings()
{
Settings_ID = 1;
 
read_Settings();
}
 
void cSettings::read_DebugLabels(int ID)
{
QBitArray Def_View;
Def_View.fill(true,MAX_DebugData);
 
QString Hardware = HardwareType[ID];
 
QSettings Setting("QMK", "Debug-Labels");
 
Setting.beginGroup("Debug-Labels-" + Hardware);
 
DebugData.Version = Setting.value(("Version"), "0").toString();
for (int a=0; a<MAX_DebugData; a++)
{
DebugData.Label[a] = Setting.value(("Label_" + QString("%1").arg(a)), "-" + DEF_DebugNames[a]).toString();
}
DebugData.Show_Plotter = Setting.value("Show_Plotter", QBitArray(Def_View)).value<QBitArray>();
 
Setting.endGroup();
}
 
void cSettings::write_DebugLabels(int ID)
{
QString Hardware = HardwareType[ID];
 
QSettings Setting("QMK", "Debug-Labels");
 
Setting.beginGroup("Debug-Labels-" + Hardware);
 
Setting.setValue("Version", DebugData.Version);
for (int a=0; a<MAX_DebugData; a++)
{
Setting.setValue("Label_" + QString("%1").arg(a), DebugData.Label[a]);
}
Setting.setValue("Show_Plotter", QBitArray(DebugData.Show_Plotter));
 
Setting.endGroup();
}
 
void cSettings::read_Settings()
{
QSettings Setting("QMK", QA_NAME);
 
Setting.beginGroup("Global");
Settings_ID = Setting.value("Settings ID", Settings_ID).toInt();
Setting.endGroup();
 
Setting.beginGroup("DATA");
// DATA.Debug_Intervall = Setting.value("Debug-Intervall", 500).toInt();
DATA.Plotter_Count = Setting.value("Plotter-Count", 100).toInt();
Setting.endGroup();
 
Setting.beginGroup("GUI");
GUI.isMax = Setting.value("IsMax",false).toBool();
GUI.Size = Setting.value("Size", QSize(700, 300)).toSize();
GUI.Point = Setting.value("Point",QPoint(1,1)).toPoint();
Setting.endGroup();
}
 
void cSettings::write_Settings()
{
QSettings Setting("QMK", QA_NAME);
 
Setting.beginGroup("Global");
Setting.setValue("Settings ID", Settings_ID);
Setting.endGroup();
 
Setting.beginGroup("DATA");
Setting.setValue("Plotter-Count", DATA.Plotter_Count);
// Setting.setValue("Debug-Intervall", DATA.Debug_Intervall);
Setting.endGroup();
 
Setting.beginGroup("GUI");
Setting.setValue("IsMax", GUI.isMax);
Setting.setValue("Size", GUI.Size);
Setting.setValue("Point", GUI.Point);
Setting.endGroup();
}
 
 
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Classes/cSettings.h
0,0 → 1,68
/***************************************************************************
* Copyright (C) 2008 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef CSETTINGS_H
#define CSETTINGS_H
 
#include <QBitArray>
#include <QSize>
#include <QPoint>
 
#include "../../Global/Kopter.h"
#include "../Defines.h"
 
struct set_DebugData
{
QString Version;
QString Label[MAX_DebugData];
QBitArray Show_Plotter;
};
 
struct set_GUI
{
bool isMax;
QSize Size;
QPoint Point;
};
 
struct set_DATA
{
int Plotter_Count;
};
 
class cSettings
{
public:
cSettings();
 
int Settings_ID;
 
set_GUI GUI;
set_DebugData DebugData;
set_DATA DATA;
 
void read_DebugLabels(int ID);
void write_DebugLabels(int ID);
 
void read_Settings();
void write_Settings();
 
 
};
 
#endif // CSETTINGS_H
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Defines.h
0,0 → 1,54
/***************************************************************************
* Copyright (C) 2009 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef DEFINES_H
#define DEFINES_H
 
#include <QString>
#include "../Global/Global.h"
#include "../Global/Kopter.h"
 
static const QString QA_NAME = "QMK-Scope";
static const QString QA_VERSION_NR = "1.3.0";
 
#ifdef _BETA_
static const QString QA_VERSION = QA_VERSION_NR + " (BETA)";
#else
static const QString QA_VERSION = QA_VERSION_NR;
#endif
 
static const QString QA_DATE = "24.08.2010";
static const QString QA_YEAR = "2008-2010";
 
static const QString QA_ABOUT =
"<HTML>"
"<p><b><font size=8>" + QA_NAME + "</font></b></p>"
"<br />"
"Version " + QA_VERSION + " - " + QA_DATE + " on " + QA_OS + ""
"<br /><br /><b>kompatibel zu " + QA_HWVERSION + "</b>"
"<br /><br />"
"(C) " + QA_YEAR + " by " + QA_AUTHOR + " - "
"<a href=\"mailto:" + QA_EMAIL + "\">" + QA_EMAIL + "</a> <br /><br />"
"Groundstation-Programm f&uuml;r den Mikrokopter<br /><br />"
"QMK-Scope - Datenplotter und Debugdaten-Anzeige.<br /><br /> "
"Dieses Programm wird unter den Bedingungen der GPL v2 ver&ouml;ffentlicht."
"</HTML>";
 
static const QString DataFields = "VAD";
 
#endif // DEFINES_H
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Dialogs/dlg_LCD.cpp
0,0 → 1,32
/***************************************************************************
* Copyright (C) 2009 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "dlg_LCD.h"
 
dlg_LCD::dlg_LCD(QWidget *parent) : QDialog(parent)
{
setupUi(this);
}
 
void dlg_LCD::show_Data(int *Data)
{
le_LCD0->setText(ToolBox::Data2QString(Data,2,22));
le_LCD1->setText(ToolBox::Data2QString(Data,22,42));
le_LCD2->setText(ToolBox::Data2QString(Data,42,62));
le_LCD3->setText(ToolBox::Data2QString(Data,62,82));
}
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Dialogs/dlg_LCD.h
0,0 → 1,36
/***************************************************************************
* Copyright (C) 2009 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef DLG_LCD_H
#define DLG_LCD_H
 
#include <QObject>
 
#include "ui_dlg_LCD.h"
#include "../Classes/ToolBox.h"
 
class dlg_LCD : public QDialog, public Ui::dlg_LCD_UI
{
Q_OBJECT
 
public:
dlg_LCD(QWidget *parent = 0);
void show_Data(int *Data);
};
 
#endif // DLG_LCD_H
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Dialogs/dlg_LCD.ui
0,0 → 1,208
<ui version="4.0" >
<class>dlg_LCD_UI</class>
<widget class="QDialog" name="dlg_LCD_UI" >
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>250</width>
<height>205</height>
</rect>
</property>
<property name="windowTitle" >
<string>LCD-Display</string>
</property>
<layout class="QGridLayout" name="gridLayout" >
<item row="0" column="0" >
<layout class="QGridLayout" name="gridLayout_41" >
<item row="0" column="0" colspan="3" >
<widget class="QLineEdit" name="le_LCD0" >
<property name="sizePolicy" >
<sizepolicy vsizetype="Minimum" hsizetype="Minimum" >
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize" >
<size>
<width>240</width>
<height>0</height>
</size>
</property>
<property name="font" >
<font>
<family>Courier 10 Pitch</family>
<pointsize>12</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text" >
<string/>
</property>
<property name="maxLength" >
<number>22</number>
</property>
<property name="alignment" >
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly" >
<bool>true</bool>
</property>
</widget>
</item>
<item row="1" column="0" colspan="3" >
<widget class="QLineEdit" name="le_LCD1" >
<property name="minimumSize" >
<size>
<width>240</width>
<height>0</height>
</size>
</property>
<property name="font" >
<font>
<family>Courier 10 Pitch</family>
<pointsize>12</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text" >
<string/>
</property>
<property name="maxLength" >
<number>22</number>
</property>
<property name="alignment" >
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly" >
<bool>false</bool>
</property>
</widget>
</item>
<item row="2" column="0" colspan="3" >
<widget class="QLineEdit" name="le_LCD2" >
<property name="minimumSize" >
<size>
<width>240</width>
<height>0</height>
</size>
</property>
<property name="font" >
<font>
<family>Courier 10 Pitch</family>
<pointsize>12</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text" >
<string/>
</property>
<property name="maxLength" >
<number>22</number>
</property>
<property name="alignment" >
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly" >
<bool>false</bool>
</property>
</widget>
</item>
<item row="3" column="0" colspan="3" >
<widget class="QLineEdit" name="le_LCD3" >
<property name="minimumSize" >
<size>
<width>240</width>
<height>0</height>
</size>
</property>
<property name="font" >
<font>
<family>Courier 10 Pitch</family>
<pointsize>12</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text" >
<string/>
</property>
<property name="maxLength" >
<number>22</number>
</property>
<property name="alignment" >
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly" >
<bool>true</bool>
</property>
</widget>
</item>
<item row="4" column="0" >
<widget class="QCheckBox" name="cb_LCD" >
<property name="text" >
<string>Auto-Refresh </string>
</property>
<property name="checked" >
<bool>true</bool>
</property>
</widget>
</item>
<item row="4" column="1" >
<widget class="QPushButton" name="pb_LCDdown" >
<property name="text" >
<string/>
</property>
<property name="icon" >
<iconset resource="../MKTool.qrc" >
<normaloff>:/Arrows/Images/Arrows/Left-1.png</normaloff>:/Arrows/Images/Arrows/Left-1.png</iconset>
</property>
</widget>
</item>
<item row="4" column="2" >
<widget class="QPushButton" name="pb_LCDup" >
<property name="text" >
<string/>
</property>
<property name="icon" >
<iconset resource="../MKTool.qrc" >
<normaloff>:/Arrows/Images/Arrows/Right-1.png</normaloff>:/Arrows/Images/Arrows/Right-1.png</iconset>
</property>
</widget>
</item>
</layout>
</item>
<item row="1" column="0" >
<widget class="QPushButton" name="pushButton" >
<property name="text" >
<string>Schließen</string>
</property>
</widget>
</item>
</layout>
</widget>
<resources>
<include location="../MKTool.qrc" />
</resources>
<connections>
<connection>
<sender>pushButton</sender>
<signal>clicked()</signal>
<receiver>dlg_LCD_UI</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel" >
<x>124</x>
<y>187</y>
</hint>
<hint type="destinationlabel" >
<x>124</x>
<y>102</y>
</hint>
</hints>
</connection>
</connections>
</ui>
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Dialogs/dlg_Main.cpp
0,0 → 1,298
/***************************************************************************
* Copyright (C) 2009 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
 
#include <QMessageBox>
#include <QCryptographicHash>
 
#include "dlg_Main.h"
 
// Konstruktor Main-Form
dlg_Main::dlg_Main()
{
setupUi(this);
 
 
o_Settings = new cSettings();
 
o_Settings->read_DebugLabels(0);
 
wg_Connection->set_Client(ID_SCOPE, QA_NAME + " " + QA_VERSION, DataFields);
 
init_GUI();
init_Connections();
init_Plotter();
}
 
// Grafische Oberfläche initialisieren
void dlg_Main::init_GUI()
{
setWindowTitle(QA_NAME + " " + QA_VERSION);
 
resize(o_Settings->GUI.Size);
move(o_Settings->GUI.Point);
 
if (o_Settings->GUI.isMax)
{
showMaximized();
}
 
wg_Connection->set_SelectVisible(true);
wg_Connection->set_ButtonVisible(true);
 
btn_Start->setCheckable(true);
 
for(int z = 0; z < MAX_DebugData; z++)
{
wg_Index[z] = new wgt_Index();
verticalLayout->addWidget(wg_Index[z]);
 
wg_Index[z]->set_Name(o_Settings->DebugData.Label[z]);
wg_Index[z]->set_StyleSheet("color: " + QColor(DEF_DebugColors[z]).name() + ";");
 
connect(wg_Index[z], SIGNAL(sig_Clicked()), this, SLOT(slot_btn_ChoseOK()));
}
}
 
// Signale mit Slots verbinden
void dlg_Main::init_Connections()
{
connect(ac_Connect, SIGNAL(triggered()), wg_Connection, SLOT(slot_btn_Connect()));
 
connect(ac_ReadLabels, SIGNAL(triggered()), this, SLOT(slot_ac_ReadLabels()));
 
connect(Plotter_Scroll, SIGNAL(valueChanged(int)), this, SLOT(slot_Plotter_Scroll(int)));
 
connect(btn_Start, SIGNAL(clicked()), this, SLOT(slot_Plotter_Start()));
// connect(btn_ChoseOK, SIGNAL(clicked()), this, SLOT(slot_btn_ChoseOK()));
 
// About QMK-Kernel & About-QT Dialog einfügen
connect(ac_About, SIGNAL(triggered()), this, SLOT(slot_ac_About()));
menu_Help->addAction(trUtf8("Über &Qt"), qApp, SLOT(aboutQt()));
 
connect(wg_Connection, SIGNAL(sig_Status(int)), this, SLOT(slot_ConnectionStatus(int)));
connect(wg_Connection, SIGNAL(sig_MK_Version(s_Hardware)), this, SLOT(slot_MK_Version(s_Hardware)));
connect(wg_Connection, SIGNAL(sig_MK_Debug(s_MK_Debug)), this, SLOT(slot_MK_Debug(s_MK_Debug)));
connect(wg_Connection, SIGNAL(sig_MK_DebugLabels(s_MK_DebugLabels)), this, SLOT(slot_MK_DebugLabels(s_MK_DebugLabels)));
}
 
void dlg_Main::init_Plotter()
{
NextPlot = 0;
 
qwt_Plotter->setCanvasBackground(QColor(QRgb(0x00000000)));
 
// qwt_Plotter->insertLegend(new QwtLegend(), QwtPlot::RightLegend);
 
QwtPlotGrid *Grid = new QwtPlotGrid();
Grid->setMajPen(QPen(Qt::gray, 0, Qt::DotLine));
 
Grid->attach(qwt_Plotter);
 
qwt_Plotter->setAxisScale(QwtPlot::xBottom,0,o_Settings->DATA.Plotter_Count,0);
 
for (int a = 0; a < MAX_DebugData; a++)
{
Plot[a] = new QwtPlotCurve(o_Settings->DebugData.Label[a]);
Plot[a]->setPen(QPen(QColor(DEF_DebugColors[a])));
Plot[a]->setRenderHint(QwtPlotItem::RenderAntialiased);
 
if (o_Settings->DebugData.Show_Plotter[a])
Plot[a]->attach(qwt_Plotter);
}
qwt_Plotter->replot();
 
 
}
 
void dlg_Main::update_Plotter()
{
pl_ID[NextPlot] = NextPlot;
 
for (int a = 0; a < MAX_DebugData; a++)
{
pl_Data[a][NextPlot] = Debug_Data[a];
Plot[a]->setData(pl_ID,pl_Data[a],NextPlot);
}
 
NextPlot++;
 
if ((NextPlot > o_Settings->DATA.Plotter_Count))
{
Plotter_Scroll->setMaximum(NextPlot - o_Settings->DATA.Plotter_Count);
}
 
if ((Plotter_Scroll->value() == NextPlot - (o_Settings->DATA.Plotter_Count + 1)))
{
qwt_Plotter->setAxisScale(QwtPlot::xBottom,NextPlot - o_Settings->DATA.Plotter_Count,NextPlot,0);
Plotter_Scroll->setValue(NextPlot - o_Settings->DATA.Plotter_Count);
}
 
qwt_Plotter->replot();
}
 
void dlg_Main::config_Plotter()
{
qwt_Plotter->setAxisScale(QwtPlot::xBottom,0,o_Settings->DATA.Plotter_Count,0);
 
for (int a = 0; a < MAX_DebugData; a++)
{
Plot[a]->detach();
Plot[a]->setPen(QPen(QColor(DEF_DebugColors[a])));
 
if (o_Settings->DebugData.Show_Plotter[a])
{
// Plot[a]->setTitle(o_Settings->DebugData.Label[a]);
Plot[a]->attach(qwt_Plotter);
}
}
qwt_Plotter->replot();
}
 
void dlg_Main::slot_Plotter_Scroll(int Position)
{
qwt_Plotter->setAxisScale(QwtPlot::xBottom,Position,Position + o_Settings->DATA.Plotter_Count,0);
qwt_Plotter->replot();
}
 
///////////
// Slots //
///////////
 
// About-Dialog
void dlg_Main::slot_ac_About()
{
QMessageBox::about(this, trUtf8(("Über ")) + QA_NAME, QA_ABOUT);
}
 
void dlg_Main::slot_ConnectionStatus(int li_Status)
{
if (li_Status)
{
ac_Connect->setChecked(true);
ac_Connect->setText(tr("Trennen"));
}
else
{
ac_Connect->setChecked(false);
ac_Connect->setText(tr("Verbinden"));
}
}
 
void dlg_Main::slot_MK_Version(s_Hardware ls_Version)
{
gs_Version = ls_Version;
setWindowTitle(QA_NAME + " " + QA_VERSION + " - " + ls_Version.Hardware + " " + ls_Version.Version);
 
o_Settings->read_DebugLabels(gs_Version.ID);
 
if (o_Settings->DebugData.Version != gs_Version.Version)
{
qDebug(QString("Debug-Labels unterschiedlich. Neue anforden. " + o_Settings->DebugData.Version + " <> " + gs_Version.Version).toLatin1().data());
usleep(50000);
 
slot_ac_ReadLabels();
}
else
{
for(int z = 0; z < MAX_DebugData; z++)
{
wg_Index[z]->set_Name(o_Settings->DebugData.Label[z]);
wg_Index[z]->set_Checked(o_Settings->DebugData.Show_Plotter[z]);
 
}
config_Plotter();
}
}
 
void dlg_Main::slot_MK_Debug(s_MK_Debug ls_Debug)
{
gs_Debug = ls_Debug;
 
for (int z = 0; z < MAX_DebugData; z++)
{
Debug_Data[z] = ls_Debug.Analog[z];
 
wg_Index[z]->set_Wert(QString("%1").arg(Debug_Data[z]));
}
if (btn_Start->isChecked())
{
update_Plotter();
}
}
 
void dlg_Main::slot_MK_DebugLabels(s_MK_DebugLabels MK_DebugLabels)
{
if (MK_DebugLabels.Position < 32)
{
o_Settings->DebugData.Label[MK_DebugLabels.Position] = MK_DebugLabels.Text;
if (o_Settings->DebugData.Label[MK_DebugLabels.Position] == "")
{
o_Settings->DebugData.Label[MK_DebugLabels.Position] = "Debug-" + QString("%1").arg(MK_DebugLabels.Position);
}
// cb_Debug[MK_DebugLabels.Position]->setText("" + o_Settings->DebugData.Label[MK_DebugLabels.Position]);
wg_Index[MK_DebugLabels.Position]->set_Name("" + o_Settings->DebugData.Label[MK_DebugLabels.Position]);
// wg_Index[z]->set_Checked(o_Settings->DebugData.Show_Plotter[z]);
 
 
}
if (MK_DebugLabels.Position == 31)
{
o_Settings->DebugData.Version = gs_Version.Version;
o_Settings->write_DebugLabels(gs_Version.ID);
config_Plotter();
}
}
 
void dlg_Main::slot_Plotter_Start()
{
if (btn_Start->isChecked())
{
btn_Start->setText(tr("Plotter stoppen"));
}
else
{
btn_Start->setText(tr("Plotter starten"));
}
}
 
void dlg_Main::slot_btn_ChoseOK()
{
for(int z = 0; z < MAX_DebugData; z++)
{
o_Settings->DebugData.Show_Plotter[z] = wg_Index[z]->get_Checked();
}
config_Plotter();
o_Settings->write_DebugLabels(gs_Version.ID);
}
 
void dlg_Main::slot_ac_ReadLabels()
{
c_Data[0] = 0;
wg_Connection->send_Data(HandlerMK::make_Frame('a', ADDRESS_ALL, c_Data, 1).toLatin1().data(), DATA_READ_LABEL);
}
 
// Programm Ende
dlg_Main::~dlg_Main()
{
o_Settings->GUI.isMax = isMaximized();
o_Settings->GUI.Size = size();
o_Settings->GUI.Point = pos();
 
o_Settings->write_Settings();
}
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Dialogs/dlg_Main.h
0,0 → 1,106
/***************************************************************************
* Copyright (C) 2009 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef DLG_MAIN_H
#define DLG_MAIN_H
 
#include <QtGui/QMainWindow>
#include <QtGui/QLineEdit>
#include <QtGui/QCheckBox>
#include <QtGui/QLabel>
#include <QtGui/QFont>
 
#include <QTcpServer>
#include <QTcpSocket>
 
#include <qwt_plot_curve.h>
#include <qwt_plot_grid.h>
#include <qwt_legend.h>
#include <qwt_plot.h>
 
#include "ui_dlg_Main.h"
 
#include "wgt_Index.h"
 
#include "../Defines.h"
#include "../TypeDefs.h"
 
#include "../Classes/cSettings.h"
 
 
class dlg_Main : public QMainWindow, public Ui::dlg_Main_UI
{
Q_OBJECT
 
public:
dlg_Main();
~dlg_Main();
 
private:
// Settings-Object
cSettings *o_Settings;
 
wgt_Index *wg_Index[MAX_DebugData];
 
// Info über die Hardware
s_Hardware gs_Version;
 
// Datenspeicher zum Senden.
char c_Data[150];
 
s_MK_Debug gs_Debug;
 
int Debug_Data[MAX_DebugData];
 
// Plots für die Analogwerte
QwtPlotCurve *Plot[MAX_DebugData];
 
// Datenspeicher für die Plots
double pl_Data[MAX_DebugData][50000];
double pl_ID[50000];
int NextPlot;
 
// Programm-Initialisirungen
void init_GUI();
void init_Connections();
void init_Plotter();
 
void update_Plotter();
void config_Plotter();
 
private slots:
void slot_ac_About();
 
void slot_ConnectionStatus(int li_Status);
void slot_MK_Version(s_Hardware ls_Version);
void slot_MK_Debug(s_MK_Debug ls_Debug);
void slot_MK_DebugLabels(s_MK_DebugLabels MK_DebugLabels);
 
// void slot_ac_Plotter();
// void slot_ac_Debug();
// void slot_ac_Chose();
 
void slot_ac_ReadLabels();
 
void slot_btn_ChoseOK();
 
void slot_Plotter_Start();
void slot_Plotter_Scroll(int Position);
};
 
#endif // DLG_MAIN_H
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Dialogs/dlg_Main.ui
0,0 → 1,274
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>dlg_Main_UI</class>
<widget class="QMainWindow" name="dlg_Main_UI">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>794</width>
<height>366</height>
</rect>
</property>
<property name="windowTitle">
<string>QMK-Scope</string>
</property>
<property name="windowIcon">
<iconset resource="../QMK-Scope.qrc">
<normaloff>:/Icon/Global/Images/Icons/QMK-Scope.png</normaloff>:/Icon/Global/Images/Icons/QMK-Scope.png</iconset>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QGridLayout" name="gridLayout">
<item row="2" column="0">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QScrollBar" name="Plotter_Scroll">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="btn_Start">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Plotter starten</string>
</property>
<property name="icon">
<iconset resource="../QMK-Scope.qrc">
<normaloff>:/Actions/Global/Images/Actions/Plotter-NO.png</normaloff>
<normalon>:/Actions/Global/Images/Actions/Plotter-OK.png</normalon>:/Actions/Global/Images/Actions/Plotter-NO.png</iconset>
</property>
<property name="iconSize">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</widget>
</item>
</layout>
</item>
<item row="0" column="0">
<widget class="wgt_Connection" name="wg_Connection" native="true"/>
</item>
<item row="1" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QFrame" name="frame_2">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QGridLayout" name="gridLayout_4">
<item row="0" column="0">
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::MinimumExpanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>582</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="1" column="0">
<widget class="QwtPlot" name="qwt_Plotter"/>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QFrame" name="frame">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QGridLayout" name="frame_Index">
<item row="0" column="0">
<widget class="QScrollArea" name="scrollArea">
<property name="minimumSize">
<size>
<width>170</width>
<height>0</height>
</size>
</property>
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>170</width>
<height>274</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: #000000;
</string>
</property>
<layout class="QGridLayout" name="gridLayout_6">
<property name="margin">
<number>0</number>
</property>
<property name="spacing">
<number>0</number>
</property>
<item row="0" column="0">
<layout class="QVBoxLayout" name="verticalLayout"/>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</item>
</layout>
<zorder>wg_Connection</zorder>
<zorder></zorder>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>794</width>
<height>19</height>
</rect>
</property>
<widget class="QMenu" name="menu_Program">
<property name="title">
<string>Programm</string>
</property>
<addaction name="ac_Quit"/>
<addaction name="ac_Connect"/>
</widget>
<widget class="QMenu" name="menu_Preferences">
<property name="title">
<string>Einstellungen</string>
</property>
<addaction name="ac_ReadLabels"/>
</widget>
<widget class="QMenu" name="menu_Help">
<property name="title">
<string>Hilfe</string>
</property>
<addaction name="ac_About"/>
</widget>
<addaction name="menu_Program"/>
<addaction name="menu_Preferences"/>
<addaction name="menu_Help"/>
</widget>
<action name="ac_Quit">
<property name="icon">
<iconset resource="../QMK-Scope.qrc">
<normaloff>:/Actions/Global/Images/Actions/Exit.png</normaloff>:/Actions/Global/Images/Actions/Exit.png</iconset>
</property>
<property name="text">
<string>Beenden</string>
</property>
</action>
<action name="ac_About">
<property name="icon">
<iconset resource="../QMK-Scope.qrc">
<normaloff>:/Icon/Global/Images/Icons/QMK-Scope.png</normaloff>:/Icon/Global/Images/Icons/QMK-Scope.png</iconset>
</property>
<property name="text">
<string>Über QMK-Scope</string>
</property>
</action>
<action name="ac_Connect">
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<property name="icon">
<iconset resource="../QMK-Scope.qrc">
<normaloff>:/Actions/Global/Images/Actions/Connection-NO.png</normaloff>
<normalon>:/Actions/Global/Images/Actions/Connection-OK.png</normalon>:/Actions/Global/Images/Actions/Connection-NO.png</iconset>
</property>
<property name="text">
<string>Verbinden</string>
</property>
</action>
<action name="ac_ReadLabels">
<property name="text">
<string>Analoglabels auslesen</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<customwidgets>
<customwidget>
<class>QwtPlot</class>
<extends>QFrame</extends>
<header>qwt_plot.h</header>
</customwidget>
<customwidget>
<class>wgt_Connection</class>
<extends>QWidget</extends>
<header>wgt_Connection.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources>
<include location="../QMK-Scope.qrc"/>
</resources>
<connections>
<connection>
<sender>ac_Quit</sender>
<signal>triggered()</signal>
<receiver>dlg_Main_UI</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>182</x>
<y>88</y>
</hint>
</hints>
</connection>
</connections>
</ui>
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Dialogs/wgt_Index.cpp
0,0 → 1,59
/***************************************************************************
* Copyright (C) 2010 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
 
#include "wgt_Index.h"
 
wgt_Index::wgt_Index(QWidget *parent) : QWidget(parent)
{
setupUi(this);
 
connect(cb_Box, SIGNAL(clicked()), this, SLOT(slot_Clicked()));
}
 
void wgt_Index::set_Name(QString s_Name)
{
lb_Name->setText(s_Name);
}
 
void wgt_Index::set_StyleSheet(QString s_StyleSheet)
{
lb_Name->setStyleSheet(s_StyleSheet);
lb_Wert->setStyleSheet(s_StyleSheet);
// cb_Box->setStyleSheet("");
}
 
void wgt_Index::set_Checked(bool b_Check)
{
cb_Box->setChecked(b_Check);
}
 
void wgt_Index::set_Wert(QString s_Wert)
{
lb_Wert->setText(s_Wert);
}
 
bool wgt_Index::get_Checked()
{
return cb_Box->isChecked();
}
 
void wgt_Index::slot_Clicked()
{
emit(sig_Clicked());
}
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Dialogs/wgt_Index.h
0,0 → 1,49
/***************************************************************************
* Copyright (C) 2009 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef WGT_INDEX_H
#define WGT_INDEX_H
 
#include <QWidget>
 
#include "ui_wgt_Index.h"
 
class wgt_Index : public QWidget, public Ui::wgt_Index_ui
{
Q_OBJECT
 
public:
wgt_Index(QWidget *parent = 0);
 
void set_StyleSheet(QString s_StyleSheet);
void set_Name(QString s_Name);
void set_Checked(bool b_Check);
void set_Wert(QString s_Wert);
 
bool get_Checked();
 
private slots:
void slot_Clicked();
 
signals:
void sig_Clicked();
 
 
};
 
#endif // WGT_INDEX_H
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Dialogs/wgt_Index.ui
0,0 → 1,63
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>wgt_Index_ui</class>
<widget class="QWidget" name="wgt_Index_ui">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>142</width>
<height>23</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<property name="topMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<property name="spacing">
<number>0</number>
</property>
<item row="0" column="0">
<widget class="QCheckBox" name="cb_Box">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string/>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QLabel" name="lb_Wert">
<property name="text">
<string>0</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLabel" name="lb_Name">
<property name="text">
<string>TextLabel</string>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Makefile
0,0 → 1,492
#############################################################################
# Makefile for building: ../Binary/QMK-Scope
# Generated by qmake (2.01a) (Qt 4.7.0) on: Di. Aug 24 16:42:10 2010
# Project: QMK-Scope.pro
# Template: app
# Command: /usr/bin/qmake -spec /usr/share/qt4/mkspecs/linux-g++-64 -o Makefile QMK-Scope.pro
#############################################################################
 
####### Compiler, tools and options
 
CC = gcc
CXX = g++
DEFINES = -D_TTY_POSIX_ -D_BETA_ -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED
CFLAGS = -m64 -pipe -O2 -fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -Wall -W -D_REENTRANT $(DEFINES)
CXXFLAGS = -m64 -pipe -O2 -fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -Wall -W -D_REENTRANT $(DEFINES)
INCPATH = -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/QtCore -I/usr/include/QtNetwork -I/usr/include/QtGui -I/usr/include -I../Global/Widget_Connection -I../Global/Class_SerialPort -I$(HOME)/include -I/usr/include/qwt -I../Binary/.build/QMK-Scope -I../Binary/.build/QMK-Scope
LINK = g++
LFLAGS = -m64 -Wl,-O1
LIBS = $(SUBLIBS) -L/usr/lib64 -lqwt -lQtGui -L/usr/lib64 -L/usr/X11R6/lib64 -lQtNetwork -lQtCore -lpthread
AR = ar cqs
RANLIB =
QMAKE = /usr/bin/qmake
TAR = tar -cf
COMPRESS = gzip -9f
COPY = cp -f
SED = sed
COPY_FILE = $(COPY)
COPY_DIR = $(COPY) -r
STRIP = strip
INSTALL_FILE = install -m 644 -p
INSTALL_DIR = $(COPY_DIR)
INSTALL_PROGRAM = install -m 755 -p
DEL_FILE = rm -f
SYMLINK = ln -f -s
DEL_DIR = rmdir
MOVE = mv -f
CHK_DIR_EXISTS= test -d
MKDIR = mkdir -p
 
####### Output directory
 
OBJECTS_DIR = ../Binary/.build/QMK-Scope/
 
####### Files
 
SOURCES = ../Global/Class_SerialPort/qextserialbase.cpp \
../Global/Class_SerialPort/qextserialport.cpp \
../Global/Class_SerialPort/ManageSerialPort.cpp \
../Global/Class_SerialPort/posix_qextserialport.cpp \
../Global/Widget_Connection/wgt_Connection.cpp \
../Global/Class_HandlerMK/HandlerMK.cpp \
../Global/Class_HandlerIP/HandlerIP.cpp \
../Global/Class_Input/Input.cpp \
../Global/Class_Input/Input_TCP.cpp \
../Global/Class_Input/Input_TTY.cpp \
main.cpp \
Dialogs/dlg_Main.cpp \
Classes/cSettings.cpp \
Dialogs/wgt_Index.cpp ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp \
../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp \
../Binary/.build/QMK-Scope/moc_Input.cpp \
../Binary/.build/QMK-Scope/moc_Input_TCP.cpp \
../Binary/.build/QMK-Scope/moc_Input_TTY.cpp \
../Binary/.build/QMK-Scope/moc_dlg_Main.cpp \
../Binary/.build/QMK-Scope/moc_wgt_Index.cpp \
../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
OBJECTS = ../Binary/.build/QMK-Scope/qextserialbase.o \
../Binary/.build/QMK-Scope/qextserialport.o \
../Binary/.build/QMK-Scope/ManageSerialPort.o \
../Binary/.build/QMK-Scope/posix_qextserialport.o \
../Binary/.build/QMK-Scope/wgt_Connection.o \
../Binary/.build/QMK-Scope/HandlerMK.o \
../Binary/.build/QMK-Scope/HandlerIP.o \
../Binary/.build/QMK-Scope/Input.o \
../Binary/.build/QMK-Scope/Input_TCP.o \
../Binary/.build/QMK-Scope/Input_TTY.o \
../Binary/.build/QMK-Scope/main.o \
../Binary/.build/QMK-Scope/dlg_Main.o \
../Binary/.build/QMK-Scope/cSettings.o \
../Binary/.build/QMK-Scope/wgt_Index.o \
../Binary/.build/QMK-Scope/moc_ManageSerialPort.o \
../Binary/.build/QMK-Scope/moc_wgt_Connection.o \
../Binary/.build/QMK-Scope/moc_Input.o \
../Binary/.build/QMK-Scope/moc_Input_TCP.o \
../Binary/.build/QMK-Scope/moc_Input_TTY.o \
../Binary/.build/QMK-Scope/moc_dlg_Main.o \
../Binary/.build/QMK-Scope/moc_wgt_Index.o \
../Binary/.build/QMK-Scope/qrc_QMK-Scope.o
DIST = /usr/share/qt4/mkspecs/common/g++.conf \
/usr/share/qt4/mkspecs/common/unix.conf \
/usr/share/qt4/mkspecs/common/linux.conf \
/usr/share/qt4/mkspecs/qconfig.pri \
/usr/share/qt4/mkspecs/modules/qt_webkit_version.pri \
/usr/share/qt4/mkspecs/features/qt_functions.prf \
/usr/share/qt4/mkspecs/features/qt_config.prf \
/usr/share/qt4/mkspecs/features/exclusive_builds.prf \
/usr/share/qt4/mkspecs/features/default_pre.prf \
../Global/Class_SerialPort.pri \
../Global/Widget_Connection.pri \
/usr/share/qt4/mkspecs/features/release.prf \
/usr/share/qt4/mkspecs/features/default_post.prf \
/usr/share/qt4/mkspecs/features/warn_on.prf \
/usr/share/qt4/mkspecs/features/qt.prf \
/usr/share/qt4/mkspecs/features/unix/thread.prf \
/usr/share/qt4/mkspecs/features/moc.prf \
/usr/share/qt4/mkspecs/features/resources.prf \
/usr/share/qt4/mkspecs/features/uic.prf \
/usr/share/qt4/mkspecs/features/yacc.prf \
/usr/share/qt4/mkspecs/features/lex.prf \
QMK-Scope.pro
QMAKE_TARGET = QMK-Scope
DESTDIR = ../Binary/
TARGET = ../Binary/QMK-Scope
 
first: all
####### Implicit rules
 
.SUFFIXES: .o .c .cpp .cc .cxx .C
 
.cpp.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.cc.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.cxx.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.C.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.c.o:
$(CC) -c $(CFLAGS) $(INCPATH) -o "$@" "$<"
 
####### Build rules
 
all: Makefile $(TARGET)
 
$(TARGET): ../Binary/.build/QMK-Scope/ui_wgt_Connection.h ../Binary/.build/QMK-Scope/ui_dlg_Main.h ../Binary/.build/QMK-Scope/ui_wgt_Index.h $(OBJECTS)
@$(CHK_DIR_EXISTS) ../Binary/ || $(MKDIR) ../Binary/
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
 
Makefile: QMK-Scope.pro /usr/share/qt4/mkspecs/linux-g++-64/qmake.conf /usr/share/qt4/mkspecs/common/g++.conf \
/usr/share/qt4/mkspecs/common/unix.conf \
/usr/share/qt4/mkspecs/common/linux.conf \
/usr/share/qt4/mkspecs/qconfig.pri \
/usr/share/qt4/mkspecs/modules/qt_webkit_version.pri \
/usr/share/qt4/mkspecs/features/qt_functions.prf \
/usr/share/qt4/mkspecs/features/qt_config.prf \
/usr/share/qt4/mkspecs/features/exclusive_builds.prf \
/usr/share/qt4/mkspecs/features/default_pre.prf \
../Global/Class_SerialPort.pri \
../Global/Widget_Connection.pri \
/usr/share/qt4/mkspecs/features/release.prf \
/usr/share/qt4/mkspecs/features/default_post.prf \
/usr/share/qt4/mkspecs/features/warn_on.prf \
/usr/share/qt4/mkspecs/features/qt.prf \
/usr/share/qt4/mkspecs/features/unix/thread.prf \
/usr/share/qt4/mkspecs/features/moc.prf \
/usr/share/qt4/mkspecs/features/resources.prf \
/usr/share/qt4/mkspecs/features/uic.prf \
/usr/share/qt4/mkspecs/features/yacc.prf \
/usr/share/qt4/mkspecs/features/lex.prf \
/usr/lib64/libQtGui.prl \
/usr/lib64/libQtCore.prl \
/usr/lib64/libQtNetwork.prl
$(QMAKE) -spec /usr/share/qt4/mkspecs/linux-g++-64 -o Makefile QMK-Scope.pro
/usr/share/qt4/mkspecs/common/g++.conf:
/usr/share/qt4/mkspecs/common/unix.conf:
/usr/share/qt4/mkspecs/common/linux.conf:
/usr/share/qt4/mkspecs/qconfig.pri:
/usr/share/qt4/mkspecs/modules/qt_webkit_version.pri:
/usr/share/qt4/mkspecs/features/qt_functions.prf:
/usr/share/qt4/mkspecs/features/qt_config.prf:
/usr/share/qt4/mkspecs/features/exclusive_builds.prf:
/usr/share/qt4/mkspecs/features/default_pre.prf:
../Global/Class_SerialPort.pri:
../Global/Widget_Connection.pri:
/usr/share/qt4/mkspecs/features/release.prf:
/usr/share/qt4/mkspecs/features/default_post.prf:
/usr/share/qt4/mkspecs/features/warn_on.prf:
/usr/share/qt4/mkspecs/features/qt.prf:
/usr/share/qt4/mkspecs/features/unix/thread.prf:
/usr/share/qt4/mkspecs/features/moc.prf:
/usr/share/qt4/mkspecs/features/resources.prf:
/usr/share/qt4/mkspecs/features/uic.prf:
/usr/share/qt4/mkspecs/features/yacc.prf:
/usr/share/qt4/mkspecs/features/lex.prf:
/usr/lib64/libQtGui.prl:
/usr/lib64/libQtCore.prl:
/usr/lib64/libQtNetwork.prl:
qmake: FORCE
@$(QMAKE) -spec /usr/share/qt4/mkspecs/linux-g++-64 -o Makefile QMK-Scope.pro
 
dist:
@$(CHK_DIR_EXISTS) ../Binary/.build/QMK-Scope/QMK-Scope1.0.0 || $(MKDIR) ../Binary/.build/QMK-Scope/QMK-Scope1.0.0
$(COPY_FILE) --parents $(SOURCES) $(DIST) ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents ../Global/Class_SerialPort/qextserialbase.h ../Global/Class_SerialPort/qextserialport.h ../Global/Class_SerialPort/ManageSerialPort.h ../Global/Class_SerialPort/posix_qextserialport.h ../Global/Widget_Connection/wgt_Connection.h ../Global/Kopter.h ../Global/MK_Datatypes.h ../Global/Class_HandlerMK/HandlerMK.h ../Global/Class_HandlerIP/HandlerIP.h ../Global/Class_Input/Input.h ../Global/Class_Input/Input_TCP.h ../Global/Class_Input/Input_TTY.h Defines.h ../Global/Global.h Dialogs/dlg_Main.h Classes/cSettings.h TypeDefs.h Dialogs/wgt_Index.h ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents QMK-Scope.qrc ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents ../Global/Class_SerialPort/qextserialbase.cpp ../Global/Class_SerialPort/qextserialport.cpp ../Global/Class_SerialPort/ManageSerialPort.cpp ../Global/Class_SerialPort/posix_qextserialport.cpp ../Global/Widget_Connection/wgt_Connection.cpp ../Global/Class_HandlerMK/HandlerMK.cpp ../Global/Class_HandlerIP/HandlerIP.cpp ../Global/Class_Input/Input.cpp ../Global/Class_Input/Input_TCP.cpp ../Global/Class_Input/Input_TTY.cpp main.cpp Dialogs/dlg_Main.cpp Classes/cSettings.cpp Dialogs/wgt_Index.cpp ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents ../Global/Widget_Connection/wgt_Connection.ui Dialogs/dlg_Main.ui Dialogs/wgt_Index.ui ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && (cd `dirname ../Binary/.build/QMK-Scope/QMK-Scope1.0.0` && $(TAR) QMK-Scope1.0.0.tar QMK-Scope1.0.0 && $(COMPRESS) QMK-Scope1.0.0.tar) && $(MOVE) `dirname ../Binary/.build/QMK-Scope/QMK-Scope1.0.0`/QMK-Scope1.0.0.tar.gz . && $(DEL_FILE) -r ../Binary/.build/QMK-Scope/QMK-Scope1.0.0
 
 
clean:compiler_clean
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) *~ core *.core
 
 
####### Sub-libraries
 
distclean: clean
-$(DEL_FILE) $(TARGET)
-$(DEL_FILE) Makefile
 
 
check: first
 
mocclean: compiler_moc_header_clean compiler_moc_source_clean
 
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
 
compiler_moc_header_make_all: ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp ../Binary/.build/QMK-Scope/moc_Input.cpp ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp ../Binary/.build/QMK-Scope/moc_wgt_Index.cpp
compiler_moc_header_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp ../Binary/.build/QMK-Scope/moc_Input.cpp ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp ../Binary/.build/QMK-Scope/moc_wgt_Index.cpp
../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp: ../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
../Global/Class_SerialPort/ManageSerialPort.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_SerialPort/ManageSerialPort.h -o ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp
 
../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp: ../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
../Global/Widget_Connection/wgt_Connection.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Widget_Connection/wgt_Connection.h -o ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp
 
../Binary/.build/QMK-Scope/moc_Input.cpp: ../Global/Class_Input/Input.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_Input/Input.h -o ../Binary/.build/QMK-Scope/moc_Input.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TCP.cpp: ../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_Input/Input_TCP.h -o ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TTY.cpp: ../Global/Class_Input/Input.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
../Global/Class_Input/Input_TTY.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_Input/Input_TTY.h -o ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp
 
../Binary/.build/QMK-Scope/moc_dlg_Main.cpp: ../Binary/.build/QMK-Scope/ui_dlg_Main.h \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
Dialogs/wgt_Index.h \
../Binary/.build/QMK-Scope/ui_wgt_Index.h \
Defines.h \
../Global/Global.h \
TypeDefs.h \
Classes/cSettings.h \
Dialogs/dlg_Main.h
/usr/bin/moc $(DEFINES) $(INCPATH) Dialogs/dlg_Main.h -o ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
 
../Binary/.build/QMK-Scope/moc_wgt_Index.cpp: ../Binary/.build/QMK-Scope/ui_wgt_Index.h \
Dialogs/wgt_Index.h
/usr/bin/moc $(DEFINES) $(INCPATH) Dialogs/wgt_Index.h -o ../Binary/.build/QMK-Scope/moc_wgt_Index.cpp
 
compiler_rcc_make_all: ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
compiler_rcc_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp: QMK-Scope.qrc \
../Global/Images/Icons/QMK-Scope.png \
../Global/Images/Actions/Plotter-NO.png \
../Global/Images/Actions/Connection-OK.png \
../Global/Images/Actions/Debug.png \
../Global/Images/Actions/Plotter-OK.png \
../Global/Images/Actions/Preferences-Data.png \
../Global/Images/Actions/Exit.png \
../Global/Images/Actions/Connection-NO.png
/usr/bin/rcc -name QMK-Scope QMK-Scope.qrc -o ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
 
compiler_image_collection_make_all: ../Binary/.build/QMK-Scope/qmake_image_collection.cpp
compiler_image_collection_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/qmake_image_collection.cpp
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all: ../Binary/.build/QMK-Scope/ui_wgt_Connection.h ../Binary/.build/QMK-Scope/ui_dlg_Main.h ../Binary/.build/QMK-Scope/ui_wgt_Index.h
compiler_uic_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/ui_wgt_Connection.h ../Binary/.build/QMK-Scope/ui_dlg_Main.h ../Binary/.build/QMK-Scope/ui_wgt_Index.h
../Binary/.build/QMK-Scope/ui_wgt_Connection.h: ../Global/Widget_Connection/wgt_Connection.ui
/usr/bin/uic ../Global/Widget_Connection/wgt_Connection.ui -o ../Binary/.build/QMK-Scope/ui_wgt_Connection.h
 
../Binary/.build/QMK-Scope/ui_dlg_Main.h: Dialogs/dlg_Main.ui \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
/usr/bin/uic Dialogs/dlg_Main.ui -o ../Binary/.build/QMK-Scope/ui_dlg_Main.h
 
../Binary/.build/QMK-Scope/ui_wgt_Index.h: Dialogs/wgt_Index.ui
/usr/bin/uic Dialogs/wgt_Index.ui -o ../Binary/.build/QMK-Scope/ui_wgt_Index.h
 
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
compiler_yacc_impl_make_all:
compiler_yacc_impl_clean:
compiler_lex_make_all:
compiler_lex_clean:
compiler_clean: compiler_moc_header_clean compiler_rcc_clean compiler_uic_clean
 
####### Compile
 
../Binary/.build/QMK-Scope/qextserialbase.o: ../Global/Class_SerialPort/qextserialbase.cpp ../Global/Class_SerialPort/qextserialbase.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/qextserialbase.o ../Global/Class_SerialPort/qextserialbase.cpp
 
../Binary/.build/QMK-Scope/qextserialport.o: ../Global/Class_SerialPort/qextserialport.cpp ../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/qextserialport.o ../Global/Class_SerialPort/qextserialport.cpp
 
../Binary/.build/QMK-Scope/ManageSerialPort.o: ../Global/Class_SerialPort/ManageSerialPort.cpp ../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/ManageSerialPort.o ../Global/Class_SerialPort/ManageSerialPort.cpp
 
../Binary/.build/QMK-Scope/posix_qextserialport.o: ../Global/Class_SerialPort/posix_qextserialport.cpp ../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/posix_qextserialport.o ../Global/Class_SerialPort/posix_qextserialport.cpp
 
../Binary/.build/QMK-Scope/wgt_Connection.o: ../Global/Widget_Connection/wgt_Connection.cpp ../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/wgt_Connection.o ../Global/Widget_Connection/wgt_Connection.cpp
 
../Binary/.build/QMK-Scope/HandlerMK.o: ../Global/Class_HandlerMK/HandlerMK.cpp ../Global/Class_HandlerMK/HandlerMK.h \
../Global/Kopter.h \
../Global/MK_Datatypes.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/HandlerMK.o ../Global/Class_HandlerMK/HandlerMK.cpp
 
../Binary/.build/QMK-Scope/HandlerIP.o: ../Global/Class_HandlerIP/HandlerIP.cpp ../Global/Class_HandlerIP/HandlerIP.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/HandlerIP.o ../Global/Class_HandlerIP/HandlerIP.cpp
 
../Binary/.build/QMK-Scope/Input.o: ../Global/Class_Input/Input.cpp ../Global/Class_Input/Input.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/Input.o ../Global/Class_Input/Input.cpp
 
../Binary/.build/QMK-Scope/Input_TCP.o: ../Global/Class_Input/Input_TCP.cpp ../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/Input_TCP.o ../Global/Class_Input/Input_TCP.cpp
 
../Binary/.build/QMK-Scope/Input_TTY.o: ../Global/Class_Input/Input_TTY.cpp ../Global/Class_Input/Input_TTY.h \
../Global/Class_Input/Input.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/Input_TTY.o ../Global/Class_Input/Input_TTY.cpp
 
../Binary/.build/QMK-Scope/main.o: main.cpp Dialogs/dlg_Main.h \
../Binary/.build/QMK-Scope/ui_dlg_Main.h \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
Dialogs/wgt_Index.h \
../Binary/.build/QMK-Scope/ui_wgt_Index.h \
Defines.h \
../Global/Global.h \
TypeDefs.h \
Classes/cSettings.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/main.o main.cpp
 
../Binary/.build/QMK-Scope/dlg_Main.o: Dialogs/dlg_Main.cpp Dialogs/dlg_Main.h \
../Binary/.build/QMK-Scope/ui_dlg_Main.h \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
Dialogs/wgt_Index.h \
../Binary/.build/QMK-Scope/ui_wgt_Index.h \
Defines.h \
../Global/Global.h \
TypeDefs.h \
Classes/cSettings.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/dlg_Main.o Dialogs/dlg_Main.cpp
 
../Binary/.build/QMK-Scope/cSettings.o: Classes/cSettings.cpp Classes/cSettings.h \
../Global/Kopter.h \
Defines.h \
../Global/Global.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/cSettings.o Classes/cSettings.cpp
 
../Binary/.build/QMK-Scope/wgt_Index.o: Dialogs/wgt_Index.cpp Dialogs/wgt_Index.h \
../Binary/.build/QMK-Scope/ui_wgt_Index.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/wgt_Index.o Dialogs/wgt_Index.cpp
 
../Binary/.build/QMK-Scope/moc_ManageSerialPort.o: ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_ManageSerialPort.o ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp
 
../Binary/.build/QMK-Scope/moc_wgt_Connection.o: ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_wgt_Connection.o ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp
 
../Binary/.build/QMK-Scope/moc_Input.o: ../Binary/.build/QMK-Scope/moc_Input.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_Input.o ../Binary/.build/QMK-Scope/moc_Input.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TCP.o: ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_Input_TCP.o ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TTY.o: ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_Input_TTY.o ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp
 
../Binary/.build/QMK-Scope/moc_dlg_Main.o: ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_dlg_Main.o ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
 
../Binary/.build/QMK-Scope/moc_wgt_Index.o: ../Binary/.build/QMK-Scope/moc_wgt_Index.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_wgt_Index.o ../Binary/.build/QMK-Scope/moc_wgt_Index.cpp
 
../Binary/.build/QMK-Scope/qrc_QMK-Scope.o: ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/qrc_QMK-Scope.o ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
 
####### Install
 
install: FORCE
 
uninstall: FORCE
 
FORCE:
 
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Makefile.Debug
0,0 → 1,416
#############################################################################
# Makefile for building: ../Binary/QMK-Scope
# Generated by qmake (2.01a) (Qt 4.5.3) on: Fr. Jan 22 11:48:57 2010
# Project: QMK-Scope.pro
# Template: app
#############################################################################
 
####### Compiler, tools and options
 
CC = gcc
CXX = g++
DEFINES = -D_TTY_POSIX_ -D_BETA_ -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED
CFLAGS = -m64 -pipe -g -Wall -W -D_REENTRANT $(DEFINES)
CXXFLAGS = -m64 -pipe -g -Wall -W -D_REENTRANT $(DEFINES)
INCPATH = -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/QtCore -I/usr/include/QtNetwork -I/usr/include/QtGui -I/usr/include -I../Global/Widget_Connection -I../Global/Class_SerialPort -I$(HOME)/include -I/usr/include/qwt -I../Binary/.build/QMK-Scope -I../Binary/.build/QMK-Scope
LINK = g++
LFLAGS = -m64
LIBS = $(SUBLIBS) -L/usr/lib64 -lqwt -lQtGui -L/usr/lib64 -L/usr/X11R6/lib64 -pthread -lpng -lfreetype -lSM -lICE -pthread -pthread -lXrender -lXrandr -lXfixes -lXcursor -lXinerama -lfontconfig -lXext -lX11 -lQtNetwork -pthread -pthread -lQtCore -lz -lm -pthread -lgthread-2.0 -lrt -lglib-2.0 -ldl -lpthread
AR = ar cqs
RANLIB =
QMAKE = /usr/bin/qmake
TAR = tar -cf
COMPRESS = gzip -9f
COPY = cp -f
SED = sed
COPY_FILE = $(COPY)
COPY_DIR = $(COPY) -r
INSTALL_FILE = install -m 644 -p
INSTALL_DIR = $(COPY_DIR)
INSTALL_PROGRAM = install -m 755 -p
DEL_FILE = rm -f
SYMLINK = ln -sf
DEL_DIR = rmdir
MOVE = mv -f
CHK_DIR_EXISTS= test -d
MKDIR = mkdir -p
 
####### Output directory
 
OBJECTS_DIR = ../Binary/.build/QMK-Scope/
 
####### Files
 
SOURCES = ../Global/Class_SerialPort/qextserialbase.cpp \
../Global/Class_SerialPort/qextserialport.cpp \
../Global/Class_SerialPort/ManageSerialPort.cpp \
../Global/Class_SerialPort/posix_qextserialport.cpp \
../Global/Widget_Connection/wgt_Connection.cpp \
../Global/Class_HandlerMK/HandlerMK.cpp \
../Global/Class_HandlerIP/HandlerIP.cpp \
../Global/Class_Input/Input.cpp \
../Global/Class_Input/Input_TCP.cpp \
../Global/Class_Input/Input_TTY.cpp \
main.cpp \
Dialogs/dlg_Main.cpp \
Classes/cSettings.cpp ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp \
../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp \
../Binary/.build/QMK-Scope/moc_Input.cpp \
../Binary/.build/QMK-Scope/moc_Input_TCP.cpp \
../Binary/.build/QMK-Scope/moc_Input_TTY.cpp \
../Binary/.build/QMK-Scope/moc_dlg_Main.cpp \
../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
OBJECTS = ../Binary/.build/QMK-Scope/qextserialbase.o \
../Binary/.build/QMK-Scope/qextserialport.o \
../Binary/.build/QMK-Scope/ManageSerialPort.o \
../Binary/.build/QMK-Scope/posix_qextserialport.o \
../Binary/.build/QMK-Scope/wgt_Connection.o \
../Binary/.build/QMK-Scope/HandlerMK.o \
../Binary/.build/QMK-Scope/HandlerIP.o \
../Binary/.build/QMK-Scope/Input.o \
../Binary/.build/QMK-Scope/Input_TCP.o \
../Binary/.build/QMK-Scope/Input_TTY.o \
../Binary/.build/QMK-Scope/main.o \
../Binary/.build/QMK-Scope/dlg_Main.o \
../Binary/.build/QMK-Scope/cSettings.o \
../Binary/.build/QMK-Scope/moc_ManageSerialPort.o \
../Binary/.build/QMK-Scope/moc_wgt_Connection.o \
../Binary/.build/QMK-Scope/moc_Input.o \
../Binary/.build/QMK-Scope/moc_Input_TCP.o \
../Binary/.build/QMK-Scope/moc_Input_TTY.o \
../Binary/.build/QMK-Scope/moc_dlg_Main.o \
../Binary/.build/QMK-Scope/qrc_QMK-Scope.o
DIST = /usr/share/qt4/mkspecs/common/g++.conf \
/usr/share/qt4/mkspecs/common/unix.conf \
/usr/share/qt4/mkspecs/common/linux.conf \
/usr/share/qt4/mkspecs/qconfig.pri \
/usr/share/qt4/mkspecs/features/qt_functions.prf \
/usr/share/qt4/mkspecs/features/qt_config.prf \
/usr/share/qt4/mkspecs/features/exclusive_builds.prf \
/usr/share/qt4/mkspecs/features/default_pre.prf \
../Global/Class_SerialPort.pri \
../Global/Widget_Connection.pri \
/usr/share/qt4/mkspecs/features/debug.prf \
/usr/share/qt4/mkspecs/features/debug_and_release.prf \
/usr/share/qt4/mkspecs/features/default_post.prf \
/usr/share/qt4/mkspecs/features/build_pass.prf \
/usr/share/qt4/mkspecs/features/warn_on.prf \
/usr/share/qt4/mkspecs/features/qt.prf \
/usr/share/qt4/mkspecs/features/unix/thread.prf \
/usr/share/qt4/mkspecs/features/moc.prf \
/usr/share/qt4/mkspecs/features/resources.prf \
/usr/share/qt4/mkspecs/features/uic.prf \
/usr/share/qt4/mkspecs/features/yacc.prf \
/usr/share/qt4/mkspecs/features/lex.prf \
QMK-Scope.pro
QMAKE_TARGET = QMK-Scope
DESTDIR = ../Binary/
TARGET = ../Binary/QMK-Scope
 
first: all
####### Implicit rules
 
.SUFFIXES: .o .c .cpp .cc .cxx .C
 
.cpp.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.cc.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.cxx.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.C.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.c.o:
$(CC) -c $(CFLAGS) $(INCPATH) -o "$@" "$<"
 
####### Build rules
 
all: Makefile.Debug $(TARGET)
 
$(TARGET): ../Binary/.build/QMK-Scope/ui_wgt_Connection.h ../Binary/.build/QMK-Scope/ui_dlg_Main.h $(OBJECTS)
@$(CHK_DIR_EXISTS) ../Binary/ || $(MKDIR) ../Binary/
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
 
qmake: FORCE
@$(QMAKE) -spec /usr/share/qt4/mkspecs/linux-g++-64 -unix CONFIG+=debug_and_release -o Makefile.Debug QMK-Scope.pro
 
dist:
@$(CHK_DIR_EXISTS) ../Binary/.build/QMK-Scope/QMK-Scope1.0.0 || $(MKDIR) ../Binary/.build/QMK-Scope/QMK-Scope1.0.0
$(COPY_FILE) --parents $(SOURCES) $(DIST) ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents ../Global/Class_SerialPort/qextserialbase.h ../Global/Class_SerialPort/qextserialport.h ../Global/Class_SerialPort/ManageSerialPort.h ../Global/Class_SerialPort/posix_qextserialport.h ../Global/Widget_Connection/wgt_Connection.h ../Global/Kopter.h ../Global/MK_Datatypes.h ../Global/Class_HandlerMK/HandlerMK.h ../Global/Class_HandlerIP/HandlerIP.h ../Global/Class_Input/Input.h ../Global/Class_Input/Input_TCP.h ../Global/Class_Input/Input_TTY.h Defines.h ../Global/Global.h Dialogs/dlg_Main.h Classes/cSettings.h TypeDefs.h ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents QMK-Scope.qrc ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents ../Global/Class_SerialPort/qextserialbase.cpp ../Global/Class_SerialPort/qextserialport.cpp ../Global/Class_SerialPort/ManageSerialPort.cpp ../Global/Class_SerialPort/posix_qextserialport.cpp ../Global/Widget_Connection/wgt_Connection.cpp ../Global/Class_HandlerMK/HandlerMK.cpp ../Global/Class_HandlerIP/HandlerIP.cpp ../Global/Class_Input/Input.cpp ../Global/Class_Input/Input_TCP.cpp ../Global/Class_Input/Input_TTY.cpp main.cpp Dialogs/dlg_Main.cpp Classes/cSettings.cpp ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents ../Global/Widget_Connection/wgt_Connection.ui Dialogs/dlg_Main.ui ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && (cd `dirname ../Binary/.build/QMK-Scope/QMK-Scope1.0.0` && $(TAR) QMK-Scope1.0.0.tar QMK-Scope1.0.0 && $(COMPRESS) QMK-Scope1.0.0.tar) && $(MOVE) `dirname ../Binary/.build/QMK-Scope/QMK-Scope1.0.0`/QMK-Scope1.0.0.tar.gz . && $(DEL_FILE) -r ../Binary/.build/QMK-Scope/QMK-Scope1.0.0
 
 
clean:compiler_clean
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) *~ core *.core
 
 
####### Sub-libraries
 
distclean: clean
-$(DEL_FILE) $(TARGET)
-$(DEL_FILE) Makefile.Debug
 
 
mocclean: compiler_moc_header_clean compiler_moc_source_clean
 
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
 
compiler_moc_header_make_all: ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp ../Binary/.build/QMK-Scope/moc_Input.cpp ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
compiler_moc_header_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp ../Binary/.build/QMK-Scope/moc_Input.cpp ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp: ../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
../Global/Class_SerialPort/ManageSerialPort.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_SerialPort/ManageSerialPort.h -o ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp
 
../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp: ../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
../Global/Widget_Connection/wgt_Connection.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Widget_Connection/wgt_Connection.h -o ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp
 
../Binary/.build/QMK-Scope/moc_Input.cpp: ../Global/Class_Input/Input.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_Input/Input.h -o ../Binary/.build/QMK-Scope/moc_Input.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TCP.cpp: ../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_Input/Input_TCP.h -o ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TTY.cpp: ../Global/Class_Input/Input.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
../Global/Class_Input/Input_TTY.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_Input/Input_TTY.h -o ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp
 
../Binary/.build/QMK-Scope/moc_dlg_Main.cpp: ../Binary/.build/QMK-Scope/ui_dlg_Main.h \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
Defines.h \
../Global/Global.h \
TypeDefs.h \
Classes/cSettings.h \
Dialogs/dlg_Main.h
/usr/bin/moc $(DEFINES) $(INCPATH) Dialogs/dlg_Main.h -o ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
 
compiler_rcc_make_all: ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
compiler_rcc_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp: QMK-Scope.qrc \
../Global/Images/Icons/QMK-Scope.png \
../Global/Images/Actions/Plotter-NO.png \
../Global/Images/Actions/Connection-OK.png \
../Global/Images/Actions/Debug.png \
../Global/Images/Actions/Plotter-OK.png \
../Global/Images/Actions/Preferences-Data.png \
../Global/Images/Actions/Exit.png \
../Global/Images/Actions/Connection-NO.png
/usr/bin/rcc -name QMK-Scope QMK-Scope.qrc -o ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
 
compiler_image_collection_make_all: qmake_image_collection.cpp
compiler_image_collection_clean:
-$(DEL_FILE) qmake_image_collection.cpp
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all: ../Binary/.build/QMK-Scope/ui_wgt_Connection.h ../Binary/.build/QMK-Scope/ui_dlg_Main.h
compiler_uic_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/ui_wgt_Connection.h ../Binary/.build/QMK-Scope/ui_dlg_Main.h
../Binary/.build/QMK-Scope/ui_wgt_Connection.h: ../Global/Widget_Connection/wgt_Connection.ui
/usr/bin/uic ../Global/Widget_Connection/wgt_Connection.ui -o ../Binary/.build/QMK-Scope/ui_wgt_Connection.h
 
../Binary/.build/QMK-Scope/ui_dlg_Main.h: Dialogs/dlg_Main.ui \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
/usr/bin/uic Dialogs/dlg_Main.ui -o ../Binary/.build/QMK-Scope/ui_dlg_Main.h
 
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
compiler_yacc_impl_make_all:
compiler_yacc_impl_clean:
compiler_lex_make_all:
compiler_lex_clean:
compiler_clean: compiler_moc_header_clean compiler_rcc_clean compiler_uic_clean
 
####### Compile
 
../Binary/.build/QMK-Scope/qextserialbase.o: ../Global/Class_SerialPort/qextserialbase.cpp ../Global/Class_SerialPort/qextserialbase.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/qextserialbase.o ../Global/Class_SerialPort/qextserialbase.cpp
 
../Binary/.build/QMK-Scope/qextserialport.o: ../Global/Class_SerialPort/qextserialport.cpp ../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/qextserialport.o ../Global/Class_SerialPort/qextserialport.cpp
 
../Binary/.build/QMK-Scope/ManageSerialPort.o: ../Global/Class_SerialPort/ManageSerialPort.cpp ../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/ManageSerialPort.o ../Global/Class_SerialPort/ManageSerialPort.cpp
 
../Binary/.build/QMK-Scope/posix_qextserialport.o: ../Global/Class_SerialPort/posix_qextserialport.cpp ../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/posix_qextserialport.o ../Global/Class_SerialPort/posix_qextserialport.cpp
 
../Binary/.build/QMK-Scope/wgt_Connection.o: ../Global/Widget_Connection/wgt_Connection.cpp ../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/wgt_Connection.o ../Global/Widget_Connection/wgt_Connection.cpp
 
../Binary/.build/QMK-Scope/HandlerMK.o: ../Global/Class_HandlerMK/HandlerMK.cpp ../Global/Class_HandlerMK/HandlerMK.h \
../Global/Kopter.h \
../Global/MK_Datatypes.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/HandlerMK.o ../Global/Class_HandlerMK/HandlerMK.cpp
 
../Binary/.build/QMK-Scope/HandlerIP.o: ../Global/Class_HandlerIP/HandlerIP.cpp ../Global/Class_HandlerIP/HandlerIP.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/HandlerIP.o ../Global/Class_HandlerIP/HandlerIP.cpp
 
../Binary/.build/QMK-Scope/Input.o: ../Global/Class_Input/Input.cpp ../Global/Class_Input/Input.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/Input.o ../Global/Class_Input/Input.cpp
 
../Binary/.build/QMK-Scope/Input_TCP.o: ../Global/Class_Input/Input_TCP.cpp ../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/Input_TCP.o ../Global/Class_Input/Input_TCP.cpp
 
../Binary/.build/QMK-Scope/Input_TTY.o: ../Global/Class_Input/Input_TTY.cpp ../Global/Class_Input/Input_TTY.h \
../Global/Class_Input/Input.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/Input_TTY.o ../Global/Class_Input/Input_TTY.cpp
 
../Binary/.build/QMK-Scope/main.o: main.cpp Dialogs/dlg_Main.h \
../Binary/.build/QMK-Scope/ui_dlg_Main.h \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
Defines.h \
../Global/Global.h \
TypeDefs.h \
Classes/cSettings.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/main.o main.cpp
 
../Binary/.build/QMK-Scope/dlg_Main.o: Dialogs/dlg_Main.cpp Dialogs/dlg_Main.h \
../Binary/.build/QMK-Scope/ui_dlg_Main.h \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
Defines.h \
../Global/Global.h \
TypeDefs.h \
Classes/cSettings.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/dlg_Main.o Dialogs/dlg_Main.cpp
 
../Binary/.build/QMK-Scope/cSettings.o: Classes/cSettings.cpp Classes/cSettings.h \
../Global/Kopter.h \
Defines.h \
../Global/Global.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/cSettings.o Classes/cSettings.cpp
 
../Binary/.build/QMK-Scope/moc_ManageSerialPort.o: ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_ManageSerialPort.o ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp
 
../Binary/.build/QMK-Scope/moc_wgt_Connection.o: ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_wgt_Connection.o ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp
 
../Binary/.build/QMK-Scope/moc_Input.o: ../Binary/.build/QMK-Scope/moc_Input.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_Input.o ../Binary/.build/QMK-Scope/moc_Input.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TCP.o: ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_Input_TCP.o ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TTY.o: ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_Input_TTY.o ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp
 
../Binary/.build/QMK-Scope/moc_dlg_Main.o: ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_dlg_Main.o ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
 
../Binary/.build/QMK-Scope/qrc_QMK-Scope.o: ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/qrc_QMK-Scope.o ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
 
####### Install
 
install: FORCE
 
uninstall: FORCE
 
FORCE:
 
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/Makefile.Release
0,0 → 1,416
#############################################################################
# Makefile for building: ../Binary/QMK-Scope
# Generated by qmake (2.01a) (Qt 4.5.3) on: Fr. Jan 22 11:48:57 2010
# Project: QMK-Scope.pro
# Template: app
#############################################################################
 
####### Compiler, tools and options
 
CC = gcc
CXX = g++
DEFINES = -D_TTY_POSIX_ -D_BETA_ -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED
CFLAGS = -m64 -pipe -O2 -fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -g -Wall -W -D_REENTRANT $(DEFINES)
CXXFLAGS = -m64 -pipe -O2 -fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -g -Wall -W -D_REENTRANT $(DEFINES)
INCPATH = -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/QtCore -I/usr/include/QtNetwork -I/usr/include/QtGui -I/usr/include -I../Global/Widget_Connection -I../Global/Class_SerialPort -I$(HOME)/include -I/usr/include/qwt -I../Binary/.build/QMK-Scope -I../Binary/.build/QMK-Scope
LINK = g++
LFLAGS = -m64 -Wl,-O1
LIBS = $(SUBLIBS) -L/usr/lib64 -lqwt -lQtGui -L/usr/lib64 -L/usr/X11R6/lib64 -pthread -lpng -lfreetype -lSM -lICE -pthread -pthread -lXrender -lXrandr -lXfixes -lXcursor -lXinerama -lfontconfig -lXext -lX11 -lQtNetwork -pthread -pthread -lQtCore -lz -lm -pthread -lgthread-2.0 -lrt -lglib-2.0 -ldl -lpthread
AR = ar cqs
RANLIB =
QMAKE = /usr/bin/qmake
TAR = tar -cf
COMPRESS = gzip -9f
COPY = cp -f
SED = sed
COPY_FILE = $(COPY)
COPY_DIR = $(COPY) -r
INSTALL_FILE = install -m 644 -p
INSTALL_DIR = $(COPY_DIR)
INSTALL_PROGRAM = install -m 755 -p
DEL_FILE = rm -f
SYMLINK = ln -sf
DEL_DIR = rmdir
MOVE = mv -f
CHK_DIR_EXISTS= test -d
MKDIR = mkdir -p
 
####### Output directory
 
OBJECTS_DIR = ../Binary/.build/QMK-Scope/
 
####### Files
 
SOURCES = ../Global/Class_SerialPort/qextserialbase.cpp \
../Global/Class_SerialPort/qextserialport.cpp \
../Global/Class_SerialPort/ManageSerialPort.cpp \
../Global/Class_SerialPort/posix_qextserialport.cpp \
../Global/Widget_Connection/wgt_Connection.cpp \
../Global/Class_HandlerMK/HandlerMK.cpp \
../Global/Class_HandlerIP/HandlerIP.cpp \
../Global/Class_Input/Input.cpp \
../Global/Class_Input/Input_TCP.cpp \
../Global/Class_Input/Input_TTY.cpp \
main.cpp \
Dialogs/dlg_Main.cpp \
Classes/cSettings.cpp ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp \
../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp \
../Binary/.build/QMK-Scope/moc_Input.cpp \
../Binary/.build/QMK-Scope/moc_Input_TCP.cpp \
../Binary/.build/QMK-Scope/moc_Input_TTY.cpp \
../Binary/.build/QMK-Scope/moc_dlg_Main.cpp \
../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
OBJECTS = ../Binary/.build/QMK-Scope/qextserialbase.o \
../Binary/.build/QMK-Scope/qextserialport.o \
../Binary/.build/QMK-Scope/ManageSerialPort.o \
../Binary/.build/QMK-Scope/posix_qextserialport.o \
../Binary/.build/QMK-Scope/wgt_Connection.o \
../Binary/.build/QMK-Scope/HandlerMK.o \
../Binary/.build/QMK-Scope/HandlerIP.o \
../Binary/.build/QMK-Scope/Input.o \
../Binary/.build/QMK-Scope/Input_TCP.o \
../Binary/.build/QMK-Scope/Input_TTY.o \
../Binary/.build/QMK-Scope/main.o \
../Binary/.build/QMK-Scope/dlg_Main.o \
../Binary/.build/QMK-Scope/cSettings.o \
../Binary/.build/QMK-Scope/moc_ManageSerialPort.o \
../Binary/.build/QMK-Scope/moc_wgt_Connection.o \
../Binary/.build/QMK-Scope/moc_Input.o \
../Binary/.build/QMK-Scope/moc_Input_TCP.o \
../Binary/.build/QMK-Scope/moc_Input_TTY.o \
../Binary/.build/QMK-Scope/moc_dlg_Main.o \
../Binary/.build/QMK-Scope/qrc_QMK-Scope.o
DIST = /usr/share/qt4/mkspecs/common/g++.conf \
/usr/share/qt4/mkspecs/common/unix.conf \
/usr/share/qt4/mkspecs/common/linux.conf \
/usr/share/qt4/mkspecs/qconfig.pri \
/usr/share/qt4/mkspecs/features/qt_functions.prf \
/usr/share/qt4/mkspecs/features/qt_config.prf \
/usr/share/qt4/mkspecs/features/exclusive_builds.prf \
/usr/share/qt4/mkspecs/features/default_pre.prf \
../Global/Class_SerialPort.pri \
../Global/Widget_Connection.pri \
/usr/share/qt4/mkspecs/features/release.prf \
/usr/share/qt4/mkspecs/features/debug_and_release.prf \
/usr/share/qt4/mkspecs/features/default_post.prf \
/usr/share/qt4/mkspecs/features/build_pass.prf \
/usr/share/qt4/mkspecs/features/warn_on.prf \
/usr/share/qt4/mkspecs/features/qt.prf \
/usr/share/qt4/mkspecs/features/unix/thread.prf \
/usr/share/qt4/mkspecs/features/moc.prf \
/usr/share/qt4/mkspecs/features/resources.prf \
/usr/share/qt4/mkspecs/features/uic.prf \
/usr/share/qt4/mkspecs/features/yacc.prf \
/usr/share/qt4/mkspecs/features/lex.prf \
QMK-Scope.pro
QMAKE_TARGET = QMK-Scope
DESTDIR = ../Binary/
TARGET = ../Binary/QMK-Scope
 
first: all
####### Implicit rules
 
.SUFFIXES: .o .c .cpp .cc .cxx .C
 
.cpp.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.cc.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.cxx.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.C.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
 
.c.o:
$(CC) -c $(CFLAGS) $(INCPATH) -o "$@" "$<"
 
####### Build rules
 
all: Makefile.Release $(TARGET)
 
$(TARGET): ../Binary/.build/QMK-Scope/ui_wgt_Connection.h ../Binary/.build/QMK-Scope/ui_dlg_Main.h $(OBJECTS)
@$(CHK_DIR_EXISTS) ../Binary/ || $(MKDIR) ../Binary/
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
 
qmake: FORCE
@$(QMAKE) -spec /usr/share/qt4/mkspecs/linux-g++-64 -unix CONFIG+=debug_and_release -o Makefile.Release QMK-Scope.pro
 
dist:
@$(CHK_DIR_EXISTS) ../Binary/.build/QMK-Scope/QMK-Scope1.0.0 || $(MKDIR) ../Binary/.build/QMK-Scope/QMK-Scope1.0.0
$(COPY_FILE) --parents $(SOURCES) $(DIST) ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents ../Global/Class_SerialPort/qextserialbase.h ../Global/Class_SerialPort/qextserialport.h ../Global/Class_SerialPort/ManageSerialPort.h ../Global/Class_SerialPort/posix_qextserialport.h ../Global/Widget_Connection/wgt_Connection.h ../Global/Kopter.h ../Global/MK_Datatypes.h ../Global/Class_HandlerMK/HandlerMK.h ../Global/Class_HandlerIP/HandlerIP.h ../Global/Class_Input/Input.h ../Global/Class_Input/Input_TCP.h ../Global/Class_Input/Input_TTY.h Defines.h ../Global/Global.h Dialogs/dlg_Main.h Classes/cSettings.h TypeDefs.h ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents QMK-Scope.qrc ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents ../Global/Class_SerialPort/qextserialbase.cpp ../Global/Class_SerialPort/qextserialport.cpp ../Global/Class_SerialPort/ManageSerialPort.cpp ../Global/Class_SerialPort/posix_qextserialport.cpp ../Global/Widget_Connection/wgt_Connection.cpp ../Global/Class_HandlerMK/HandlerMK.cpp ../Global/Class_HandlerIP/HandlerIP.cpp ../Global/Class_Input/Input.cpp ../Global/Class_Input/Input_TCP.cpp ../Global/Class_Input/Input_TTY.cpp main.cpp Dialogs/dlg_Main.cpp Classes/cSettings.cpp ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && $(COPY_FILE) --parents ../Global/Widget_Connection/wgt_Connection.ui Dialogs/dlg_Main.ui ../Binary/.build/QMK-Scope/QMK-Scope1.0.0/ && (cd `dirname ../Binary/.build/QMK-Scope/QMK-Scope1.0.0` && $(TAR) QMK-Scope1.0.0.tar QMK-Scope1.0.0 && $(COMPRESS) QMK-Scope1.0.0.tar) && $(MOVE) `dirname ../Binary/.build/QMK-Scope/QMK-Scope1.0.0`/QMK-Scope1.0.0.tar.gz . && $(DEL_FILE) -r ../Binary/.build/QMK-Scope/QMK-Scope1.0.0
 
 
clean:compiler_clean
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) *~ core *.core
 
 
####### Sub-libraries
 
distclean: clean
-$(DEL_FILE) $(TARGET)
-$(DEL_FILE) Makefile.Release
 
 
mocclean: compiler_moc_header_clean compiler_moc_source_clean
 
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
 
compiler_moc_header_make_all: ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp ../Binary/.build/QMK-Scope/moc_Input.cpp ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
compiler_moc_header_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp ../Binary/.build/QMK-Scope/moc_Input.cpp ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp: ../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
../Global/Class_SerialPort/ManageSerialPort.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_SerialPort/ManageSerialPort.h -o ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp
 
../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp: ../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
../Global/Widget_Connection/wgt_Connection.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Widget_Connection/wgt_Connection.h -o ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp
 
../Binary/.build/QMK-Scope/moc_Input.cpp: ../Global/Class_Input/Input.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_Input/Input.h -o ../Binary/.build/QMK-Scope/moc_Input.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TCP.cpp: ../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_Input/Input_TCP.h -o ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TTY.cpp: ../Global/Class_Input/Input.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
../Global/Class_Input/Input_TTY.h
/usr/bin/moc $(DEFINES) $(INCPATH) ../Global/Class_Input/Input_TTY.h -o ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp
 
../Binary/.build/QMK-Scope/moc_dlg_Main.cpp: ../Binary/.build/QMK-Scope/ui_dlg_Main.h \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
Defines.h \
../Global/Global.h \
TypeDefs.h \
Classes/cSettings.h \
Dialogs/dlg_Main.h
/usr/bin/moc $(DEFINES) $(INCPATH) Dialogs/dlg_Main.h -o ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
 
compiler_rcc_make_all: ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
compiler_rcc_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp: QMK-Scope.qrc \
../Global/Images/Icons/QMK-Scope.png \
../Global/Images/Actions/Plotter-NO.png \
../Global/Images/Actions/Connection-OK.png \
../Global/Images/Actions/Debug.png \
../Global/Images/Actions/Plotter-OK.png \
../Global/Images/Actions/Preferences-Data.png \
../Global/Images/Actions/Exit.png \
../Global/Images/Actions/Connection-NO.png
/usr/bin/rcc -name QMK-Scope QMK-Scope.qrc -o ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
 
compiler_image_collection_make_all: qmake_image_collection.cpp
compiler_image_collection_clean:
-$(DEL_FILE) qmake_image_collection.cpp
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all: ../Binary/.build/QMK-Scope/ui_wgt_Connection.h ../Binary/.build/QMK-Scope/ui_dlg_Main.h
compiler_uic_clean:
-$(DEL_FILE) ../Binary/.build/QMK-Scope/ui_wgt_Connection.h ../Binary/.build/QMK-Scope/ui_dlg_Main.h
../Binary/.build/QMK-Scope/ui_wgt_Connection.h: ../Global/Widget_Connection/wgt_Connection.ui
/usr/bin/uic ../Global/Widget_Connection/wgt_Connection.ui -o ../Binary/.build/QMK-Scope/ui_wgt_Connection.h
 
../Binary/.build/QMK-Scope/ui_dlg_Main.h: Dialogs/dlg_Main.ui \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
/usr/bin/uic Dialogs/dlg_Main.ui -o ../Binary/.build/QMK-Scope/ui_dlg_Main.h
 
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
compiler_yacc_impl_make_all:
compiler_yacc_impl_clean:
compiler_lex_make_all:
compiler_lex_clean:
compiler_clean: compiler_moc_header_clean compiler_rcc_clean compiler_uic_clean
 
####### Compile
 
../Binary/.build/QMK-Scope/qextserialbase.o: ../Global/Class_SerialPort/qextserialbase.cpp ../Global/Class_SerialPort/qextserialbase.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/qextserialbase.o ../Global/Class_SerialPort/qextserialbase.cpp
 
../Binary/.build/QMK-Scope/qextserialport.o: ../Global/Class_SerialPort/qextserialport.cpp ../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/qextserialport.o ../Global/Class_SerialPort/qextserialport.cpp
 
../Binary/.build/QMK-Scope/ManageSerialPort.o: ../Global/Class_SerialPort/ManageSerialPort.cpp ../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/ManageSerialPort.o ../Global/Class_SerialPort/ManageSerialPort.cpp
 
../Binary/.build/QMK-Scope/posix_qextserialport.o: ../Global/Class_SerialPort/posix_qextserialport.cpp ../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/posix_qextserialport.o ../Global/Class_SerialPort/posix_qextserialport.cpp
 
../Binary/.build/QMK-Scope/wgt_Connection.o: ../Global/Widget_Connection/wgt_Connection.cpp ../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/wgt_Connection.o ../Global/Widget_Connection/wgt_Connection.cpp
 
../Binary/.build/QMK-Scope/HandlerMK.o: ../Global/Class_HandlerMK/HandlerMK.cpp ../Global/Class_HandlerMK/HandlerMK.h \
../Global/Kopter.h \
../Global/MK_Datatypes.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/HandlerMK.o ../Global/Class_HandlerMK/HandlerMK.cpp
 
../Binary/.build/QMK-Scope/HandlerIP.o: ../Global/Class_HandlerIP/HandlerIP.cpp ../Global/Class_HandlerIP/HandlerIP.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/HandlerIP.o ../Global/Class_HandlerIP/HandlerIP.cpp
 
../Binary/.build/QMK-Scope/Input.o: ../Global/Class_Input/Input.cpp ../Global/Class_Input/Input.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/Input.o ../Global/Class_Input/Input.cpp
 
../Binary/.build/QMK-Scope/Input_TCP.o: ../Global/Class_Input/Input_TCP.cpp ../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/Input_TCP.o ../Global/Class_Input/Input_TCP.cpp
 
../Binary/.build/QMK-Scope/Input_TTY.o: ../Global/Class_Input/Input_TTY.cpp ../Global/Class_Input/Input_TTY.h \
../Global/Class_Input/Input.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/Input_TTY.o ../Global/Class_Input/Input_TTY.cpp
 
../Binary/.build/QMK-Scope/main.o: main.cpp Dialogs/dlg_Main.h \
../Binary/.build/QMK-Scope/ui_dlg_Main.h \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
Defines.h \
../Global/Global.h \
TypeDefs.h \
Classes/cSettings.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/main.o main.cpp
 
../Binary/.build/QMK-Scope/dlg_Main.o: Dialogs/dlg_Main.cpp Dialogs/dlg_Main.h \
../Binary/.build/QMK-Scope/ui_dlg_Main.h \
../Global/Widget_Connection/wgt_Connection.h \
../Binary/.build/QMK-Scope/ui_wgt_Connection.h \
../Global/Kopter.h \
../Global/Class_HandlerIP/HandlerIP.h \
../Global/Class_HandlerMK/HandlerMK.h \
../Global/MK_Datatypes.h \
../Global/Class_Input/Input.h \
../Global/Class_Input/Input_TCP.h \
../Global/Class_Input/Input_TTY.h \
../Global/Class_SerialPort/ManageSerialPort.h \
../Global/Class_SerialPort/qextserialport.h \
../Global/Class_SerialPort/posix_qextserialport.h \
../Global/Class_SerialPort/qextserialbase.h \
../Global/Class_SerialPort/win_qextserialport.h \
Defines.h \
../Global/Global.h \
TypeDefs.h \
Classes/cSettings.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/dlg_Main.o Dialogs/dlg_Main.cpp
 
../Binary/.build/QMK-Scope/cSettings.o: Classes/cSettings.cpp Classes/cSettings.h \
../Global/Kopter.h \
Defines.h \
../Global/Global.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/cSettings.o Classes/cSettings.cpp
 
../Binary/.build/QMK-Scope/moc_ManageSerialPort.o: ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_ManageSerialPort.o ../Binary/.build/QMK-Scope/moc_ManageSerialPort.cpp
 
../Binary/.build/QMK-Scope/moc_wgt_Connection.o: ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_wgt_Connection.o ../Binary/.build/QMK-Scope/moc_wgt_Connection.cpp
 
../Binary/.build/QMK-Scope/moc_Input.o: ../Binary/.build/QMK-Scope/moc_Input.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_Input.o ../Binary/.build/QMK-Scope/moc_Input.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TCP.o: ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_Input_TCP.o ../Binary/.build/QMK-Scope/moc_Input_TCP.cpp
 
../Binary/.build/QMK-Scope/moc_Input_TTY.o: ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_Input_TTY.o ../Binary/.build/QMK-Scope/moc_Input_TTY.cpp
 
../Binary/.build/QMK-Scope/moc_dlg_Main.o: ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/moc_dlg_Main.o ../Binary/.build/QMK-Scope/moc_dlg_Main.cpp
 
../Binary/.build/QMK-Scope/qrc_QMK-Scope.o: ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../Binary/.build/QMK-Scope/qrc_QMK-Scope.o ../Binary/.build/QMK-Scope/qrc_QMK-Scope.cpp
 
####### Install
 
install: FORCE
 
uninstall: FORCE
 
FORCE:
 
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/QMK-Scope.pro
0,0 → 1,71
# -------------------------------------------------
# Project created by QtCreator 2009-07-20T20:04:00
# -------------------------------------------------
include(../Global/Widget_Connection.pri)
QT += network
TARGET = QMK-Scope
TEMPLATE = app
win32 {
include( C:\Qt\qwt-5.2.0\examples\examples.pri )
QWT_ROOT = c:\qt\qwt-5.2.0
include( $${QWT_ROOT}\qwtconfig.pri )
SUFFIX_STR = $${RELEASE_SUFFIX}
INCLUDEPATH += $${QWT_ROOT}/src
DEPENDPATH += $${QWT_ROOT}/src
QWTLIB = qwt$${SUFFIX_STR}
contains(CONFIG, QwtDll)
{
DEFINES += QT_DLL \
QWT_DLL
QWTLIB = $${QWTLIB}$${VER_MAJ}
}
win32-msvc:LIBS += $${QWT_ROOT}/lib/$${QWTLIB}.lib
win32-msvc.net:LIBS += $${QWT_ROOT}/lib/$${QWTLIB}.lib
win32-msvc2005:LIBS += $${QWT_ROOT}/lib/$${QWTLIB}.lib
win32-g++:LIBS += -L$${QWT_ROOT}/lib \
-l$${QWTLIB}
}
DESTDIR = ../Binary
OBJECTS_DIR = ../Binary/.build/QMK-Scope
UI_DIR = ../Binary/.build/QMK-Scope
MOC_DIR = ../Binary/.build/QMK-Scope
RCC_DIR = ../Binary/.build/QMK-Scope
debug {
DEFINES += _BETA_
LIBS += -lqwt
INCLUDEPATH += $(HOME)/include \
/usr/include/qwt
}
Suse {
LIBS += -lqwt
INCLUDEPATH += $(HOME)/include \
/usr/include/qwt
}
Debian {
LIBS += -lqwt-qt4
INCLUDEPATH += $(HOME)/include \
/usr/include/qwt-qt4
}
Gentoo {
LIBS += -lqwt
INCLUDEPATH += $(HOME)/include \
/usr/include/qwt5
}
OSX {
LIBS += -L/opt/local/lib \
-lqwt
INCLUDEPATH += /opt/local/include
}
RESOURCES += QMK-Scope.qrc
SOURCES += main.cpp \
Dialogs/dlg_Main.cpp \
Classes/cSettings.cpp \
Dialogs/wgt_Index.cpp
HEADERS += Defines.h \
../Global/Global.h \
Dialogs/dlg_Main.h \
Classes/cSettings.h \
TypeDefs.h \
Dialogs/wgt_Index.h
FORMS += Dialogs/dlg_Main.ui \
Dialogs/wgt_Index.ui
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/QMK-Scope.pro.user
0,0 → 1,453
<!DOCTYPE QtCreatorProject>
<qtcreator>
<data>
<variable>RunConfiguration0-BaseEnvironmentBase</variable>
<value type="int">2</value>
</data>
<data>
<variable>RunConfiguration0-CommandLineArguments</variable>
<valuelist type="QVariantList"/>
</data>
<data>
<variable>RunConfiguration0-ProFile</variable>
<value type="QString">QMK-Scope.pro</value>
</data>
<data>
<variable>RunConfiguration0-RunConfiguration.name</variable>
<value type="QString">QMK-Scope</value>
</data>
<data>
<variable>RunConfiguration0-UseDyldImageSuffix</variable>
<value type="bool">false</value>
</data>
<data>
<variable>RunConfiguration0-UseTerminal</variable>
<value type="bool">false</value>
</data>
<data>
<variable>RunConfiguration0-UserEnvironmentChanges</variable>
<valuelist type="QVariantList"/>
</data>
<data>
<variable>RunConfiguration0-UserSetName</variable>
<value type="bool">false</value>
</data>
<data>
<variable>RunConfiguration0-UserSetWorkingDirectory</variable>
<value type="bool">false</value>
</data>
<data>
<variable>RunConfiguration0-UserWorkingDirectory</variable>
<value type="QString"></value>
</data>
<data>
<variable>RunConfiguration0-type</variable>
<value type="QString">Qt4ProjectManager.Qt4RunConfiguration</value>
</data>
<data>
<variable>activeRunConfiguration</variable>
<value type="int">0</value>
</data>
<data>
<variable>activebuildconfiguration</variable>
<value type="QString">Debug</value>
</data>
<data>
<variable>buildConfiguration-Debug</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString">Debug</value>
<value key="QtVersionId" type="int">0</value>
<value key="ToolChain" type="int">0</value>
<value key="addQDumper" type=""></value>
<value key="buildConfiguration" type="int">0</value>
<value key="buildDirectory" type="QString">/home/Manuel/Documents/Entwicklung/QMK/QMK-Scope</value>
</valuemap>
</data>
<data>
<variable>buildConfiguration-Release</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString">Release</value>
<value key="QtVersionId" type="int">0</value>
<value key="addQDumper" type=""></value>
<value key="buildConfiguration" type="int">0</value>
</valuemap>
</data>
<data>
<variable>buildconfiguration-Debug-buildstep0</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString">Debug</value>
<valuelist key="abstractProcess.Environment" type="QVariantList">
<value type="QString">COLORTERM=1</value>
<value type="QString">CPU=x86_64</value>
<value type="QString">CSHEDIT=emacs</value>
<value type="QString">CVS_RSH=ssh</value>
<value type="QString">DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-CbwcjmFGyJ,guid=35c96d707c26a931cc18390700000080</value>
<value type="QString">DESKTOP_SESSION=default</value>
<value type="QString">DISPLAY=:0.0</value>
<value type="QString">DM_CONTROL=/var/run/xdmctl</value>
<value type="QString">ENV=/etc/bash.bashrc</value>
<value type="QString">FROM_HEADER=</value>
<value type="QString">GPG_AGENT_INFO=/tmp/gpg-8mOS0o/S.gpg-agent:3343:1</value>
<value type="QString">GS_LIB=/home/manuel/.fonts</value>
<value type="QString">GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/home/manuel/.gtkrc-2.0-kde4:/home/manuel/.gtkrc-2.0-qtengine:/home/manuel/.gtkrc-2.0:/home/manuel/.kde4/share/config/gtkrc-2.0</value>
<value type="QString">GTK_IM_MODULE=cedilla</value>
<value type="QString">GTK_RC_FILES=/etc/gtk/gtkrc:/home/manuel/.gtkrc::/home/manuel/.kde4/share/config/gtkrc</value>
<value type="QString">G_BROKEN_FILENAMES=1</value>
<value type="QString">G_FILENAME_ENCODING=@locale,UTF-8,ISO-8859-15,CP1252</value>
<value type="QString">HISTSIZE=1000</value>
<value type="QString">HOME=/home/manuel</value>
<value type="QString">HOST=Workstation</value>
<value type="QString">HOSTNAME=Workstation</value>
<value type="QString">HOSTTYPE=x86_64</value>
<value type="QString">INPUTRC=/etc/inputrc</value>
<value type="QString">JAVA_BINDIR=/usr/lib64/jvm/jre/bin</value>
<value type="QString">JAVA_HOME=/usr/lib64/jvm/jre</value>
<value type="QString">JAVA_ROOT=/usr/lib64/jvm/jre</value>
<value type="QString">JRE_HOME=/usr/lib64/jvm/jre</value>
<value type="QString">KDE_FULL_SESSION=true</value>
<value type="QString">KDE_MULTIHEAD=false</value>
<value type="QString">KDE_SESSION_UID=1000</value>
<value type="QString">KDE_SESSION_VERSION=4</value>
<value type="QString">LANG=de_DE.UTF-8</value>
<value type="QString">LANGUAGE=</value>
<value type="QString">LD_LIBRARY_PATH=/usr/lib/qtcreator:/usr/lib64/mpi/gcc/openmpi/lib64</value>
<value type="QString">LESS=-M -I -R</value>
<value type="QString">LESSCLOSE=lessclose.sh %s %s</value>
<value type="QString">LESSKEY=/etc/lesskey.bin</value>
<value type="QString">LESSOPEN=lessopen.sh %s</value>
<value type="QString">LESS_ADVANCED_PREPROCESSOR=no</value>
<value type="QString">LOGNAME=manuel</value>
<value type="QString">LS_COLORS=no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:</value>
<value type="QString">LS_OPTIONS=-N --color=tty -T 0</value>
<value type="QString">MACHTYPE=x86_64-suse-linux</value>
<value type="QString">MAIL=/var/spool/mail/manuel</value>
<value type="QString">MANPATH=/usr/lib64/mpi/gcc/openmpi/share/man:/usr/local/man:/usr/share/man</value>
<value type="QString">MINICOM=-c on</value>
<value type="QString">MORE=-sl</value>
<value type="QString">NNTPSERVER=news</value>
<value type="QString">OSTYPE=linux</value>
<value type="QString">PAGER=less</value>
<value type="QString">PATH=/usr/bin:/usr/lib64/mpi/gcc/openmpi/bin:/home/manuel/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/cross/bin:/usr/lib64/jvm/jre/bin</value>
<value type="QString">PROFILEREAD=true</value>
<value type="QString">PWD=/home/manuel/Dokumente</value>
<value type="QString">PYTHONSTARTUP=/etc/pythonstart</value>
<value type="QString">QTDIR=/usr/share/qt4/</value>
<value type="QString">QT_IM_MODULE=xim</value>
<value type="QString">QT_IM_SWITCHER=imsw-multi</value>
<value type="QString">QT_PLUGIN_PATH=/home/manuel/.kde4/lib64/kde4/plugins/:/usr/lib64/kde4/plugins/</value>
<value type="QString">QT_SYSTEM_DIR=/usr/share/desktop-data</value>
<value type="QString">SESSION_MANAGER=local/Workstation:@/tmp/.ICE-unix/3769,unix/Workstation:/tmp/.ICE-unix/3769</value>
<value type="QString">SHELL=/bin/bash</value>
<value type="QString">SHLVL=1</value>
<value type="QString">SSH_AGENT_PID=3348</value>
<value type="QString">SSH_ASKPASS=/usr/lib64/ssh/x11-ssh-askpass</value>
<value type="QString">SSH_AUTH_SOCK=/tmp/ssh-TeWhb3227/agent.3227</value>
<value type="QString">TERM=xterm</value>
<value type="QString">TMPDIR=/tmp</value>
<value type="QString">USER=manuel</value>
<value type="QString">USE_FAM=</value>
<value type="QString">WINDOWMANAGER=/usr/bin/startkde</value>
<value type="QString">WINDOWPATH=7</value>
<value type="QString">XAUTHLOCALHOSTNAME=Workstation</value>
<value type="QString">XCURSOR_THEME=Oxygen_White</value>
<value type="QString">XDG_CONFIG_DIRS=/etc/xdg</value>
<value type="QString">XDG_DATA_DIRS=/usr/share</value>
<value type="QString">XDG_SESSION_COOKIE=bce8d279423663d4735b9a3c000003e1-1282718219.976701-1026610324</value>
<value type="QString">XDM_MANAGED=method=classic</value>
<value type="QString">XKEYSYMDB=/usr/share/X11/XKeysymDB</value>
<value type="QString">XMODIFIERS=@im=local</value>
<value type="QString">XNLSPATH=/usr/share/X11/nls</value>
<value type="QString">XSESSION_IS_UP=yes</value>
<value type="QString">mc=() { . /usr/share/mc/bin/mc-wrapper.sh
}</value>
</valuelist>
<valuelist key="abstractProcess.arguments" type="QVariantList">
<value type="QString">/home/manuel/Dokumente/Entwicklung/QMK/QMK-Scope/QMK-Scope.pro</value>
<value type="QString">-spec</value>
<value type="QString">linux-g++-64</value>
<value type="QString">-r</value>
</valuelist>
<value key="abstractProcess.command" type="QString">/usr/bin/qmake</value>
<value key="abstractProcess.enabled" type="bool">false</value>
<value key="abstractProcess.workingDirectory" type="QString">/home/manuel/Dokumente/Entwicklung/QMK/QMK-Scope</value>
<value key="buildConfiguration" type=""></value>
</valuemap>
</data>
<data>
<variable>buildconfiguration-Debug-buildstep1</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString">Debug</value>
<valuelist key="abstractProcess.Environment" type="QVariantList">
<value type="QString">COLORTERM=1</value>
<value type="QString">CPU=x86_64</value>
<value type="QString">CSHEDIT=emacs</value>
<value type="QString">CVS_RSH=ssh</value>
<value type="QString">DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-CbwcjmFGyJ,guid=35c96d707c26a931cc18390700000080</value>
<value type="QString">DESKTOP_SESSION=default</value>
<value type="QString">DISPLAY=:0.0</value>
<value type="QString">DM_CONTROL=/var/run/xdmctl</value>
<value type="QString">ENV=/etc/bash.bashrc</value>
<value type="QString">FROM_HEADER=</value>
<value type="QString">GPG_AGENT_INFO=/tmp/gpg-8mOS0o/S.gpg-agent:3343:1</value>
<value type="QString">GS_LIB=/home/manuel/.fonts</value>
<value type="QString">GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/home/manuel/.gtkrc-2.0-kde4:/home/manuel/.gtkrc-2.0-qtengine:/home/manuel/.gtkrc-2.0:/home/manuel/.kde4/share/config/gtkrc-2.0</value>
<value type="QString">GTK_IM_MODULE=cedilla</value>
<value type="QString">GTK_RC_FILES=/etc/gtk/gtkrc:/home/manuel/.gtkrc::/home/manuel/.kde4/share/config/gtkrc</value>
<value type="QString">G_BROKEN_FILENAMES=1</value>
<value type="QString">G_FILENAME_ENCODING=@locale,UTF-8,ISO-8859-15,CP1252</value>
<value type="QString">HISTSIZE=1000</value>
<value type="QString">HOME=/home/manuel</value>
<value type="QString">HOST=Workstation</value>
<value type="QString">HOSTNAME=Workstation</value>
<value type="QString">HOSTTYPE=x86_64</value>
<value type="QString">INPUTRC=/etc/inputrc</value>
<value type="QString">JAVA_BINDIR=/usr/lib64/jvm/jre/bin</value>
<value type="QString">JAVA_HOME=/usr/lib64/jvm/jre</value>
<value type="QString">JAVA_ROOT=/usr/lib64/jvm/jre</value>
<value type="QString">JRE_HOME=/usr/lib64/jvm/jre</value>
<value type="QString">KDE_FULL_SESSION=true</value>
<value type="QString">KDE_MULTIHEAD=false</value>
<value type="QString">KDE_SESSION_UID=1000</value>
<value type="QString">KDE_SESSION_VERSION=4</value>
<value type="QString">LANG=de_DE.UTF-8</value>
<value type="QString">LANGUAGE=</value>
<value type="QString">LD_LIBRARY_PATH=/usr/lib/qtcreator:/usr/lib64/mpi/gcc/openmpi/lib64</value>
<value type="QString">LESS=-M -I -R</value>
<value type="QString">LESSCLOSE=lessclose.sh %s %s</value>
<value type="QString">LESSKEY=/etc/lesskey.bin</value>
<value type="QString">LESSOPEN=lessopen.sh %s</value>
<value type="QString">LESS_ADVANCED_PREPROCESSOR=no</value>
<value type="QString">LOGNAME=manuel</value>
<value type="QString">LS_COLORS=no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:</value>
<value type="QString">LS_OPTIONS=-N --color=tty -T 0</value>
<value type="QString">MACHTYPE=x86_64-suse-linux</value>
<value type="QString">MAIL=/var/spool/mail/manuel</value>
<value type="QString">MANPATH=/usr/lib64/mpi/gcc/openmpi/share/man:/usr/local/man:/usr/share/man</value>
<value type="QString">MINICOM=-c on</value>
<value type="QString">MORE=-sl</value>
<value type="QString">NNTPSERVER=news</value>
<value type="QString">OSTYPE=linux</value>
<value type="QString">PAGER=less</value>
<value type="QString">PATH=/usr/bin:/usr/lib64/mpi/gcc/openmpi/bin:/home/manuel/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/cross/bin:/usr/lib64/jvm/jre/bin</value>
<value type="QString">PROFILEREAD=true</value>
<value type="QString">PWD=/home/manuel/Dokumente</value>
<value type="QString">PYTHONSTARTUP=/etc/pythonstart</value>
<value type="QString">QTDIR=/usr/share/qt4/</value>
<value type="QString">QT_IM_MODULE=xim</value>
<value type="QString">QT_IM_SWITCHER=imsw-multi</value>
<value type="QString">QT_PLUGIN_PATH=/home/manuel/.kde4/lib64/kde4/plugins/:/usr/lib64/kde4/plugins/</value>
<value type="QString">QT_SYSTEM_DIR=/usr/share/desktop-data</value>
<value type="QString">SESSION_MANAGER=local/Workstation:@/tmp/.ICE-unix/3769,unix/Workstation:/tmp/.ICE-unix/3769</value>
<value type="QString">SHELL=/bin/bash</value>
<value type="QString">SHLVL=1</value>
<value type="QString">SSH_AGENT_PID=3348</value>
<value type="QString">SSH_ASKPASS=/usr/lib64/ssh/x11-ssh-askpass</value>
<value type="QString">SSH_AUTH_SOCK=/tmp/ssh-TeWhb3227/agent.3227</value>
<value type="QString">TERM=xterm</value>
<value type="QString">TMPDIR=/tmp</value>
<value type="QString">USER=manuel</value>
<value type="QString">USE_FAM=</value>
<value type="QString">WINDOWMANAGER=/usr/bin/startkde</value>
<value type="QString">WINDOWPATH=7</value>
<value type="QString">XAUTHLOCALHOSTNAME=Workstation</value>
<value type="QString">XCURSOR_THEME=Oxygen_White</value>
<value type="QString">XDG_CONFIG_DIRS=/etc/xdg</value>
<value type="QString">XDG_DATA_DIRS=/usr/share</value>
<value type="QString">XDG_SESSION_COOKIE=bce8d279423663d4735b9a3c000003e1-1282718219.976701-1026610324</value>
<value type="QString">XDM_MANAGED=method=classic</value>
<value type="QString">XKEYSYMDB=/usr/share/X11/XKeysymDB</value>
<value type="QString">XMODIFIERS=@im=local</value>
<value type="QString">XNLSPATH=/usr/share/X11/nls</value>
<value type="QString">XSESSION_IS_UP=yes</value>
<value type="QString">mc=() { . /usr/share/mc/bin/mc-wrapper.sh
}</value>
</valuelist>
<value key="abstractProcess.IgnoreReturnValue" type="bool">false</value>
<valuelist key="abstractProcess.arguments" type="QVariantList">
<value type="QString">-j2</value>
<value type="QString">-w</value>
</valuelist>
<value key="abstractProcess.command" type="QString">/usr/bin/make</value>
<value key="abstractProcess.enabled" type="bool">true</value>
<value key="abstractProcess.workingDirectory" type="QString">/home/manuel/Dokumente/Entwicklung/QMK/QMK-Scope</value>
<valuelist key="makeargs" type="QVariantList">
<value type="QString">-j2</value>
</valuelist>
</valuemap>
</data>
<data>
<variable>buildconfiguration-Debug-cleanstep0</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString">Debug</value>
<valuelist key="abstractProcess.Environment" type="QVariantList">
<value type="QString">COLORTERM=1</value>
<value type="QString">CPU=x86_64</value>
<value type="QString">CSHEDIT=emacs</value>
<value type="QString">CVS_RSH=ssh</value>
<value type="QString">DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-cPlUO1gXzY,guid=4f793e28b07bc3f4f2152b9f4aba164f</value>
<value type="QString">DESKTOP_SESSION=kde4</value>
<value type="QString">DESKTOP_STARTUP_ID=</value>
<value type="QString">DISPLAY=:0.0</value>
<value type="QString">DM_CONTROL=/var/run/xdmctl</value>
<value type="QString">ENV=/etc/bash.bashrc</value>
<value type="QString">FROM_HEADER=</value>
<value type="QString">GPG_AGENT_INFO=/tmp/gpg-gTct3X/S.gpg-agent:4112:1</value>
<value type="QString">GS_LIB=/home/Manuel/.fonts</value>
<value type="QString">GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/usr/share/themes//QtCurve/gtk-2.0/gtkrc:/home/Manuel/.gtkrc-2.0-qtengine:/home/Manuel/.gtkrc-2.0:/home/Manuel/.kde4/share/config/gtkrc-2.0</value>
<value type="QString">GTK_IM_MODULE=cedilla</value>
<value type="QString">GTK_RC_FILES=/etc/gtk/gtkrc:/home/Manuel/.gtkrc::/home/Manuel/.kde4/share/config/gtkrc</value>
<value type="QString">G_BROKEN_FILENAMES=1</value>
<value type="QString">G_FILENAME_ENCODING=@locale,UTF-8,ISO-8859-15,CP1252</value>
<value type="QString">HISTSIZE=1000</value>
<value type="QString">HOME=/home/Manuel</value>
<value type="QString">HOST=KeyOz-WSL</value>
<value type="QString">HOSTNAME=KeyOz-WSL</value>
<value type="QString">HOSTTYPE=x86_64</value>
<value type="QString">INFODIR=/usr/local/info:/usr/share/info:/usr/info</value>
<value type="QString">INFOPATH=/usr/local/info:/usr/share/info:/usr/info</value>
<value type="QString">INPUTRC=/etc/inputrc</value>
<value type="QString">JAVA_BINDIR=/usr/lib64/jvm/java/bin</value>
<value type="QString">JAVA_HOME=/usr/lib64/jvm/java</value>
<value type="QString">JAVA_ROOT=/usr/lib64/jvm/java</value>
<value type="QString">JDK_HOME=/usr/lib64/jvm/java</value>
<value type="QString">JRE_HOME=/usr/lib64/jvm/java</value>
<value type="QString">KDE_FULL_SESSION=true</value>
<value type="QString">KDE_MULTIHEAD=false</value>
<value type="QString">KDE_SESSION_UID=1002</value>
<value type="QString">KDE_SESSION_VERSION=4</value>
<value type="QString">LADSPA_PATH=/usr/lib64/ladspa</value>
<value type="QString">LANG=de_DE.UTF-8</value>
<value type="QString">LD_LIBRARY_PATH=/usr/lib/qtcreator-git:</value>
<value type="QString">LESS=-M -I</value>
<value type="QString">LESSCLOSE=lessclose.sh %s %s</value>
<value type="QString">LESSKEY=/etc/lesskey.bin</value>
<value type="QString">LESSOPEN=lessopen.sh %s</value>
<value type="QString">LESS_ADVANCED_PREPROCESSOR=no</value>
<value type="QString">LOGNAME=Manuel</value>
<value type="QString">LS_COLORS=no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:</value>
<value type="QString">LS_OPTIONS=-N --color=tty -T 0</value>
<value type="QString">MACHTYPE=x86_64-suse-linux</value>
<value type="QString">MAIL=/var/spool/mail/Manuel</value>
<value type="QString">MANPATH=/usr/local/man:/usr/share/man:/opt/cross/share/man</value>
<value type="QString">MINICOM=-c on</value>
<value type="QString">MORE=-sl</value>
<value type="QString">NNTPSERVER=news</value>
<value type="QString">OSTYPE=linux</value>
<value type="QString">PAGER=less</value>
<value type="QString">PATH=/usr/bin:/home/Manuel/CodeSourcery/Sourcery_G++_Lite/bin:/home/Manuel/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/kde3/bin:/opt/cross/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin</value>
<value type="QString">PROFILEREAD=true</value>
<value type="QString">PWD=/home/Manuel/Documents</value>
<value type="QString">PYTHONSTARTUP=/etc/pythonstart</value>
<value type="QString">QTDIR=/usr</value>
<value type="QString">QT_IM_MODULE=xim</value>
<value type="QString">QT_IM_SWITCHER=imsw-multi</value>
<value type="QString">QT_PLUGIN_PATH=/home/Manuel/.kde4/lib64/kde4/plugins/:/usr/lib64/kde4/plugins/</value>
<value type="QString">QT_SYSTEM_DIR=/usr/share/desktop-data</value>
<value type="QString">SDK_HOME=/usr/lib64/jvm/java</value>
<value type="QString">SESSION_MANAGER=local/KeyOz-WSL:@/tmp/.ICE-unix/4647,unix/KeyOz-WSL:/tmp/.ICE-unix/4647</value>
<value type="QString">SHELL=/bin/bash</value>
<value type="QString">SHLVL=1</value>
<value type="QString">SSH_AGENT_PID=4113</value>
<value type="QString">SSH_ASKPASS=/usr/lib64/ssh/x11-ssh-askpass</value>
<value type="QString">SSH_AUTH_SOCK=/tmp/ssh-bMBMs3941/agent.3941</value>
<value type="QString">TERM=xterm</value>
<value type="QString">TMPDIR=/tmp</value>
<value type="QString">USER=Manuel</value>
<value type="QString">USE_FAM=</value>
<value type="QString">WINDOWMANAGER=/usr/bin/startkde</value>
<value type="QString">WINDOWPATH=7</value>
<value type="QString">XAUTHLOCALHOSTNAME=KeyOz-WSL</value>
<value type="QString">XCURSOR_THEME=Oxygen_White</value>
<value type="QString">XDG_CONFIG_DIRS=/etc/xdg</value>
<value type="QString">XDG_DATA_DIRS=/usr/share:/etc/opt/kde3/share:/opt/kde3/share</value>
<value type="QString">XDG_SESSION_COOKIE=d2f223773c984c89331a62fa493ee8fd-1253709386.933592-1670885275</value>
<value type="QString">XDM_MANAGED=method=classic</value>
<value type="QString">XKEYSYMDB=/usr/share/X11/XKeysymDB</value>
<value type="QString">XMODIFIERS=@im=local</value>
<value type="QString">XNLSPATH=/usr/share/X11/nls</value>
<value type="QString">XSESSION_IS_UP=yes</value>
<value type="QString">mc=() { . /usr/share/mc/bin/mc-wrapper.sh
}</value>
</valuelist>
<value key="abstractProcess.IgnoreReturnValue" type="bool">true</value>
<valuelist key="abstractProcess.arguments" type="QVariantList">
<value type="QString">clean</value>
<value type="QString">-w</value>
</valuelist>
<value key="abstractProcess.command" type="QString">/usr/bin/make</value>
<value key="abstractProcess.enabled" type="bool">true</value>
<value key="abstractProcess.workingDirectory" type="QString">/home/Manuel/Documents/Entwicklung/QMK/QMK-Scope</value>
<value key="cleanConfig" type="bool">true</value>
<valuelist key="makeargs" type="QVariantList">
<value type="QString">clean</value>
</valuelist>
</valuemap>
</data>
<data>
<variable>buildconfiguration-Release-buildstep0</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString">Release</value>
<value key="buildConfiguration" type=""></value>
</valuemap>
</data>
<data>
<variable>buildconfiguration-Release-buildstep1</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString">Release</value>
</valuemap>
</data>
<data>
<variable>buildconfiguration-Release-cleanstep0</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString">Release</value>
</valuemap>
</data>
<data>
<variable>buildconfigurations</variable>
<valuelist type="QVariantList">
<value type="QString">Debug</value>
<value type="QString">Release</value>
</valuelist>
</data>
<data>
<variable>buildstep0</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString"></value>
<value key="mkspec" type="QString"></value>
</valuemap>
</data>
<data>
<variable>buildstep1</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString"></value>
</valuemap>
</data>
<data>
<variable>buildsteps</variable>
<valuelist type="QVariantList">
<value type="QString">trolltech.qt4projectmanager.qmake</value>
<value type="QString">trolltech.qt4projectmanager.make</value>
</valuelist>
</data>
<data>
<variable>cleanstep0</variable>
<valuemap type="QVariantMap">
<value key="ProjectExplorer.BuildConfiguration.DisplayName" type="QString"></value>
<value key="clean" type="bool">true</value>
</valuemap>
</data>
<data>
<variable>cleansteps</variable>
<valuelist type="QVariantList">
<value type="QString">trolltech.qt4projectmanager.make</value>
</valuelist>
</data>
<data>
<variable>defaultFileEncoding</variable>
<value type="QByteArray">UTF-8</value>
</data>
<data>
<variable>project</variable>
<valuemap type="QVariantMap"/>
</data>
</qtcreator>
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/QMK-Scope.qrc
0,0 → 1,14
<RCC>
<qresource prefix="Icon" >
<file>../Global/Images/Icons/QMK-Scope.png</file>
</qresource>
<qresource prefix="Actions" >
<file>../Global/Images/Actions/Exit.png</file>
<file>../Global/Images/Actions/Plotter-NO.png</file>
<file>../Global/Images/Actions/Plotter-OK.png</file>
<file>../Global/Images/Actions/Preferences-Data.png</file>
<file>../Global/Images/Actions/Connection-NO.png</file>
<file>../Global/Images/Actions/Debug.png</file>
<file>../Global/Images/Actions/Connection-OK.png</file>
</qresource>
</RCC>
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/TypeDefs.h
0,0 → 1,27
/***************************************************************************
* Copyright (C) 2009 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef TYPEDEFS_H
#define TYPEDEFS_H
 
#include <QString>
#include <QRgb>
 
static const QRgb DEF_DebugColors[] = {0x00FF0000, 0x0000FF00, 0x00FFFF00, 0x000000FF, 0x00FF00FF, 0x0000FFFF, 0x00FFFFFF, 0x00AA0000, 0x0000AA00, 0x00AAAA00, 0x000000AA, 0x00AA00AA, 0x0000AA, 0x00AAAAAA, 0x00990000, 0x00009900, 0x00999900, 0x00000099, 0x00990099, 0x00009999, 0x00999999, 0x00CC0000, 0x0000CC00, 0x00CCCC00, 0x000000CC, 0x00CC00CC, 0x0000CCCC, 0x00CCCCCC, 0x0066FF99, 0x009966FF, 0x00FF9966, 0x0099FF66};
 
#endif // TYPEDEFS_H
/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Scope/main.cpp
0,0 → 1,36
/***************************************************************************
* Copyright (C) 2009 by Manuel Schrape *
* manuel.schrape@gmx.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
 
#include <QtGui/QApplication>
#include "Dialogs/dlg_Main.h"
 
int main(int argc, char *argv[])
{
QApplication App(argc, argv);
 
dlg_Main *MainApp = new dlg_Main();
 
MainApp->show();
 
int iReturn = App.exec();
 
delete MainApp;
 
return iReturn;
}