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
SOURCES += main.cpp \
mainwindow.cpp \
graphwidget.cpp \
node.cpp \
edge.cpp \
systemtray.cpp \
argumentparser.cpp
HEADERS += mainwindow.h \
graphwidget.h \
node.h \
edge.h \
systemtray.h \
argumentparser.h
FORMS += mainwindow.ui
RESOURCES = qtmindmap.qrc
TRANSLATIONS += qtmindmap_hu.ts \
qtmindmap_nb_NO.ts
SOURCES += src/main.cpp \
src/mainwindow.cpp \
src/graphwidget.cpp \
src/node.cpp \
src/edge.cpp \
src/systemtray.cpp \
src/argumentparser.cpp
HEADERS += include/mainwindow.h \
include/graphwidget.h \
include/node.h \
include/edge.h \
include/systemtray.h \
include/argumentparser.h
FORMS += ui/mainwindow.ui
RESOURCES = images/qtmindmap.qrc
TRANSLATIONS += lang/qtmindmap_hu.ts \
lang/qtmindmap_nb_NO.ts
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 <QStringList>

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

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

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

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

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

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