Working on the connection manager.
Made a list model for displaying them in a list. Also added controles to edit the most important properties.
This commit is contained in:
parent
be1892ac52
commit
f5eab84c24
14 changed files with 1100 additions and 9 deletions
14
main.cpp
14
main.cpp
|
|
@ -1,10 +1,9 @@
|
|||
#include "mainwindow.h"
|
||||
//#include "mainwindow.h"
|
||||
//#include "databasewindow.h"
|
||||
#include "connectionmanagerwindow.h"
|
||||
#include <QApplication>
|
||||
#include <winsock2.h>
|
||||
|
||||
// Need to link with Ws2_32.lib
|
||||
#pragma comment(lib, "ws2_32.lib")
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
|
||||
|
|
@ -20,7 +19,12 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
|
||||
QApplication a(argc, argv);
|
||||
MainWindow w;
|
||||
|
||||
QCoreApplication::setOrganizationName("MySoft");
|
||||
QCoreApplication::setOrganizationDomain("eelkeklein.nl");
|
||||
QCoreApplication::setApplicationName("Ivory");
|
||||
|
||||
ConnectionManagerWindow w;
|
||||
w.show();
|
||||
|
||||
int result = a.exec();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue