proper directory structure

master
Denes Matetelki 14 years ago
parent f91ce440d9
commit c55079ddbc

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Before

Width:  |  Height:  |  Size: 127 KiB

After

Width:  |  Height:  |  Size: 127 KiB

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 43 KiB

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

@ -13,26 +13,26 @@ TARGET = qtmindmap
TEMPLATE = app TEMPLATE = app
SOURCES += main.cpp \ SOURCES += src/main.cpp \
mainwindow.cpp \ src/mainwindow.cpp \
graphwidget.cpp \ src/graphwidget.cpp \
node.cpp \ src/node.cpp \
edge.cpp \ src/edge.cpp \
systemtray.cpp \ src/systemtray.cpp \
argumentparser.cpp src/argumentparser.cpp
HEADERS += mainwindow.h \ HEADERS += include/mainwindow.h \
graphwidget.h \ include/graphwidget.h \
node.h \ include/node.h \
edge.h \ include/edge.h \
systemtray.h \ include/systemtray.h \
argumentparser.h include/argumentparser.h
FORMS += mainwindow.ui FORMS += ui/mainwindow.ui
RESOURCES = qtmindmap.qrc RESOURCES = images/qtmindmap.qrc
TRANSLATIONS += qtmindmap_hu.ts \ TRANSLATIONS += lang/qtmindmap_hu.ts \
qtmindmap_nb_NO.ts lang/qtmindmap_nb_NO.ts
CODECFORTR = UTF-8 CODECFORTR = UTF-8

@ -1,21 +0,0 @@
<?xml version="1.0"?>
<ui version="4.0">
<class>ScrollArea</class>
<widget class="QScrollArea" name="ScrollArea">
<property name="widgetResizable">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>ScrollArea</string>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents"/>
</widget>
</ui>

@ -1,4 +1,4 @@
#include "argumentparser.h" #include "include/argumentparser.h"
#include <QApplication> #include <QApplication>
#include <QStringList> #include <QStringList>

@ -2,8 +2,8 @@
#include <QDebug> #include <QDebug>
#include "edge.h" #include "include/edge.h"
#include "node.h" #include "include/node.h"
#include <math.h> #include <math.h>

@ -1,4 +1,4 @@
#include "graphwidget.h" #include "include/graphwidget.h"
#include <QDebug> #include <QDebug>
#include <QStatusBar> #include <QStatusBar>
@ -8,10 +8,11 @@
#include <QColorDialog> #include <QColorDialog>
#include <QApplication> #include <QApplication>
#include "node.h" #include "include/node.h"
#include "edge.h" #include "include/edge.h"
#include "math.h" #include "include/mainwindow.h"
#include "mainwindow.h"
#include <math.h>
const QColor GraphWidget::m_paper(255,255,153); const QColor GraphWidget::m_paper(255,255,153);

@ -5,9 +5,9 @@
#include <QRegExp> #include <QRegExp>
#include <QTranslator> #include <QTranslator>
#include "mainwindow.h" #include "include/mainwindow.h"
#include "systemtray.h" #include "include/systemtray.h"
#include "argumentparser.h" #include "include/argumentparser.h"
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {

@ -1,4 +1,4 @@
#include "mainwindow.h" #include "include/mainwindow.h"
#include "ui_mainwindow.h" #include "ui_mainwindow.h"
#include <QDebug> #include <QDebug>

@ -1,4 +1,4 @@
#include "node.h" #include "include/node.h"
#include <QPainter> #include <QPainter>
#include <QStyleOption> #include <QStyleOption>

@ -1,4 +1,4 @@
#include "systemtray.h" #include "include/systemtray.h"
#include <QApplication> #include <QApplication>
Loading…
Cancel
Save