summaryrefslogtreecommitdiff
path: root/tikzit/src/main.cpp
blob: 0de5fd8107afa8d04f16f5914c9fbaa6662bc7b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "mainwindow.h"
#include "toolpalette.h"
#include "propertypalette.h"
#include "graph.h"

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow *w = new MainWindow();
    w->show();

    ToolPalette *tp = new ToolPalette(new QMainWindow());
    tp->show();
    //w->addToolBar(Qt::LeftToolBarArea, tp);

    PropertyPalette *pp = new PropertyPalette;
    pp->show();

    return a.exec();
}