Skip to content

Commit

Permalink
This time we update the GUI of PAGANI toolkit and provide the corresp…
Browse files Browse the repository at this point in the history
…onding source code.

Believe that the user experience will be better.
  • Loading branch information
BNAadministrator3 committed Dec 30, 2015
1 parent 786f5ee commit 204d589
Show file tree
Hide file tree
Showing 43 changed files with 6,401 additions and 0 deletions.
Binary file removed software_package/PAGANI-VBN-1.0.exe
Binary file not shown.
Binary file added software_package/PAGANI-VBN-1.1.exe
Binary file not shown.
Binary file added software_package/exefiles/BC_CPU.exe
Binary file not shown.
Binary file added software_package/exefiles/BFS_MulCPU.exe
Binary file not shown.
Binary file modified software_package/exefiles/CUBC.exe
Binary file not shown.
Binary file modified software_package/exefiles/CUBFW_Lp.exe
Binary file not shown.
Binary file modified software_package/exefiles/CUCorMat.exe
Binary file not shown.
Binary file modified software_package/exefiles/CUEC.exe
Binary file not shown.
Binary file modified software_package/exefiles/CUmodularity.exe
Binary file not shown.
Binary file modified software_package/exefiles/ConvertNII.exe
Binary file not shown.
Binary file modified software_package/exefiles/Cp.exe
Binary file not shown.
Binary file modified software_package/exefiles/Degree.exe
Binary file not shown.
Binary file modified software_package/exefiles/Louvain_Modularity.exe
Binary file not shown.
Binary file modified software_package/exefiles/Maslov.exe
Binary file not shown.
Binary file modified software_package/exefiles/Newman_Modularity_CPU.exe
Binary file not shown.
Binary file modified software_package/exefiles/PC_CPU.exe
Binary file not shown.
Binary file modified software_package/exefiles/SmallWorldProperty.exe
Binary file not shown.
Binary file modified software_package/exefiles_weighted/CUBFW_Lp.exe
Binary file not shown.
Binary file modified software_package/exefiles_weighted/CUCorMat.exe
Binary file not shown.
Binary file modified software_package/exefiles_weighted/CUEC.exe
Binary file not shown.
Binary file modified software_package/exefiles_weighted/ConvertNII.exe
Binary file not shown.
Binary file modified software_package/exefiles_weighted/Cp.exe
Binary file not shown.
Binary file modified software_package/exefiles_weighted/Degree.exe
Binary file not shown.
Binary file modified software_package/exefiles_weighted/Louvain_Modularity.exe
Binary file not shown.
Binary file modified software_package/exefiles_weighted/PC_CPU.exe
Binary file not shown.
Binary file modified software_package/exefiles_weighted/SmallWorldProperty.exe
Binary file not shown.
29 changes: 29 additions & 0 deletions src/GUI/BNAtest10.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#-------------------------------------------------
#
# Project created by QtCreator 2014-02-25T21:40:26
#
#-------------------------------------------------

QT += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = BNAtest10
TEMPLATE = app


SOURCES += main.cpp\
mainwindow.cpp \
smainwindow.cpp


HEADERS += mainwindow.h \
smainwindow.h


FORMS += mainwindow.ui \
smainwindow.ui

RESOURCES += \
z-transformation.qrc \
smallworldproperty.qrc
259 changes: 259 additions & 0 deletions src/GUI/BNAtest10.pro.user

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions src/GUI/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#include "mainwindow.h"
#include <QApplication>



//注意主函数没有改变!
OperatingSystem operating_system;

int main(int argc, char *argv[])
{
#ifdef Q_OS_WIN32
operating_system = os_win32;
#endif
#ifdef Q_OS_LINUX
operating_system = linux;
#endif

QApplication a(argc, argv);

// QFont font;
// font.setFamily(("Sans Serif")); //注意这里不完全是TTF文件名字
// font.setBold(false);
// a.setFont(font);

MainWindow w;
w.show();

return a.exec();
}
Loading

0 comments on commit 204d589

Please sign in to comment.