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

#include <QApplication>


int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

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

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

    MainWindow *w = new MainWindow();
    w->show();

    return a.exec();
}